review-order
Pass
Audited by Gen Agent Trust Hub on Sep 15, 2026
Risk Level: SAFEINDIRECT_PROMPT_INJECTIONCOMMAND_EXECUTION
Full Analysis
- [INDIRECT_PROMPT_INJECTION]: The skill processes untrusted code and diff data which could contain malicious instructions designed to hijack the agent's logic.
- Ingestion points: The skill uses
git diff,Read, andGreptools to ingest content from the repository files as instructed inSKILL.md. - Boundary markers: The skill lacks explicit markers to delimit untrusted code content from its own instructions.
- Capability inventory: The skill has access to
Read,Grep,Glob, andBash(restricted to git commands) as specified inSKILL.md. - Sanitization: No sanitization of the ingested code content is performed.
- Mitigation:
SKILL.mdincludes strong behavioral constraints (e.g., "Do not perform the review", "State facts only") which help prevent the agent from executing instructions found in the data. - [COMMAND_EXECUTION]: The skill instructs the agent to construct and execute shell commands using user-provided input.
- The instructions in
SKILL.mddirect the agent to parse$ARGUMENTSand rungit diff <base>...HEAD. - This allows potential injection of malicious git flags if the user provides crafted input for the base branch.
- Mitigation: The
allowed-toolsconfiguration inSKILL.mdlimits theBashtool to specific git subcommands, preventing the execution of arbitrary non-git commands.
Audit Metadata