testing-patterns
Pass
Audited by Gen Agent Trust Hub on Jun 13, 2026
Risk Level: SAFE
Full Analysis
- [SAFE]: The skill is purely informational and functional. It contains documentation for testing principles (Pyramid, AAA, Mocking) in SKILL.md.
- [COMMAND_EXECUTION]: The
scripts/test_runner.pyscript executes local test runners (pytest, npm, jest, vitest) usingsubprocess.run(). This is standard behavior for a testing utility. The implementation is secure as it uses argument lists rather than shell strings and does not enableshell=True, preventing shell injection vulnerabilities. - [DATA_EXPOSURE]: The script reads
package.json,pyproject.toml, andrequirements.txtto detect the project type. It only accesses standard project metadata and does not touch sensitive files like credentials or SSH keys. - [EXTERNAL_DOWNLOADS]: No external downloads or network operations were detected. While
npxis used in the command list, it is invoked on standard, well-known testing frameworks.
Audit Metadata