mixedbread-search-agent
Pass
Audited by Gen Agent Trust Hub on Sep 6, 2026
Risk Level: SAFEINDIRECT_PROMPT_INJECTIONDYNAMIC_EXECUTIONEXTERNAL_DOWNLOADSCOMMAND_EXECUTION
Full Analysis
- [INDIRECT_PROMPT_INJECTION]: The skill is designed to ingest and process data from external corpora, including vector databases, Elasticsearch, SQL databases, and filesystems via search tools like
semantic_searchandgrep_search. This creates a surface for indirect prompt injection if the retrieved content contains malicious instructions. - Ingestion points: Data enters the context through tool result messages appended to the
messagesarray inSKILL.mdandreferences/tool-contracts.md. - Boundary markers: The documentation instructs developers to serialize results as JSON rather than prose to maintain data separation.
- Capability inventory: The skill utilizes a Chat Completions loop capable of multi-step tool execution as shown in the implementation examples in
SKILL.md. - Sanitization: The 'Limits' section in
SKILL.mdrecommends clipping tool results before appending them to the context to prevent overflow and mitigate large-payload injections. - [DYNAMIC_EXECUTION]: The skill provides example code for a tool execution loop that dynamically resolves and calls functions based on model output.
- Evidence:
SKILL.mdcontains a loop usingIMPLEMENTATIONS[call.function.name](**json.loads(call.function.arguments))to execute tools. This is a standard pattern for agents but involves runtime resolution of executable paths. - [EXTERNAL_DOWNLOADS]: The documentation references the installation of official SDKs for the search model.
- Evidence:
references/mixedbread-tools.mdincludes instructions to install themixedbreadPython package and@mixedbread/sdkNode.js package, which are verified vendor resources. - [COMMAND_EXECUTION]: The skill includes documentation for setting up the environment and installing dependencies.
- Evidence:
SKILL.mdandreferences/mixedbread-tools.mdcontain shell commands forexport MXBAI_API_KEY,pip install, andnpm install. These are standard configuration and installation steps.
Audit Metadata