deep-agents-memory
Pass
Audited by Gen Agent Trust Hub on Sep 14, 2026
Risk Level: SAFECOMMAND_EXECUTIONINDIRECT_PROMPT_INJECTION
Full Analysis
- Filesystem Tool Capability: The skill documentation describes how to enable and use filesystem tools including
ls,read_file,write_file,edit_file,glob, andgrep. These tools allow the agent to interact directly with the storage backends, which can include the local disk viaFilesystemBackend. The skill appropriately highlights the use ofvirtual_modeto restrict access to specific directories and recommends human-in-the-loop checkpoints (interrupt_on) for write operations. - Indirect Prompt Injection Surface: By facilitating the reading of external data through filesystem tools, the skill creates a surface where an agent might process and potentially follow instructions embedded within the files it reads.
- Ingestion points: File reading tools such as
read_file,glob, andgrepdescribed inSKILL.mdintroduce data into the agent's context. - Boundary markers: While the skill recommends
virtual_modefor path safety, it does not explicitly define prompt-level delimiters or instructions to prevent the agent from executing commands found within processed file content. - Capability inventory: The skill provides a full suite of file manipulation capabilities:
ls,read_file,write_file,edit_file,glob, andgrepacross Python and TypeScript implementations. - Sanitization: The skill documents path-level sanitization using the
virtual_mode=Trueparameter to prevent path traversal attempts.
Audit Metadata