audit-code-quality
Pass
Audited by Gen Agent Trust Hub on Sep 4, 2026
Risk Level: SAFEINDIRECT_PROMPT_INJECTIONCOMMAND_EXECUTION
Full Analysis
- [INDIRECT_PROMPT_INJECTION]: The skill processes untrusted content from the local repository (source code, git history, and documentation) which could contain adversarial instructions.
- Ingestion points: The skill specifies commands like
cat,git log, andrg(ripgrep) to read local file content into the agent's context for observation and interpretation. - Boundary markers: No boundary markers or "ignore instructions" warnings are implemented for the ingested data to prevent the agent from following instructions found within the code.
- Capability inventory: The skill utilizes subprocess calls for
git,rg, andnpx(specifically executingtsc,eslint, andvitest). - Sanitization: No sanitization or validation of the ingested content is performed before the agent processes it.
- [COMMAND_EXECUTION]: The skill executes multiple shell commands to perform repository analysis and validation.
- Uses
rg(ripgrep) to search for specific patterns, such as lowercase component exports or server actions, in TypeScript and TSX files. - Uses
git logandgit blameto inspect commit history and verify if patterns are intentional based on authorship. - Uses
npxto run validation tools including the TypeScript compiler (tsc),eslint, andvitest. While these are standard developer tools,npxcan be used to execute packages from the local environment.
Audit Metadata