oss-hunter
Pass
Audited by Gen Agent Trust Hub on Jul 28, 2026
Risk Level: SAFECOMMAND_EXECUTIONEXTERNAL_DOWNLOADSPROMPT_INJECTION
Full Analysis
- [COMMAND_EXECUTION]: The script
bin/hunter.pyuses theghcommand-line tool to interact with GitHub. It correctly uses list-based arguments forsubprocess.run, avoiding the risks associated with shell interpolation. - [EXTERNAL_DOWNLOADS]: The skill performs network requests to GitHub's public API through the
ghtool. This connectivity is necessary for the skill's functionality and is restricted to a well-known, trusted service. - [PROMPT_INJECTION]: The skill processes untrusted metadata and issue content from external GitHub repositories. While this creates a surface for indirect prompt injection, the script handles the data as structured JSON and does not execute the data content. Ingestion points: Repository information and issue lists fetched via
gh apiandgh issue listinbin/hunter.py. Boundary markers: The skill treats input as data to be parsed (JSON) and printed, not instructions to be followed. Capability inventory: The script is limited to read-only GitHub CLI operations and console output. Sanitization: External data is parsed usingjson.loadsand passed safely to the user via standard output.
Audit Metadata