oss-hunter
Pass
Audited by Gen Agent Trust Hub on Aug 21, 2026
Risk Level: SAFECOMMAND_EXECUTION
Full Analysis
- [COMMAND_EXECUTION]: The skill uses
subprocess.runinbin/hunter.pyto execute GitHub CLI (gh) commands. - The implementation follows security best practices by passing arguments as a list rather than a shell string, effectively preventing shell injection vulnerabilities.
- The commands are scoped to repository searching (
gh api) and issue listing (gh issue list). - [INDIRECT_PROMPT_INJECTION]: The skill processes data from external sources (GitHub API) which could theoretically contain malicious instructions.
- Ingestion points: Repository metadata and issue titles are ingested via
gh apiandgh issue listinbin/hunter.py. - Boundary markers: None explicitly used in the output dossier.
- Capability inventory: The skill uses
subprocess.runto call theghtool; however, this is not used to execute the ingested data as code. - Sanitization: The use of list-based arguments in
subprocess.runensures that ingested repository names or issue strings cannot trigger command injection. - [EXTERNAL_DOWNLOADS]: The skill references the author's GitHub repository
github.com/jackjin1997/ClawForge. No automated downloads or remote script executions from unknown sources are performed at runtime.
Audit Metadata