heyeddi-ci-respond
Pass
Audited by Gen Agent Trust Hub on Aug 11, 2026
Risk Level: SAFE
Full Analysis
- [INDIRECT_PROMPT_INJECTION]: The skill processes untrusted PR comments and reviews from GitHub (ingestion points in
fetch_pr_comments.py). It includes a dedicated_untrusted_doc.pyscript that wraps this external content in<<<UNTRUSTED_EXTERNAL_CONTENT>>>delimiters (boundary markers) to prevent the agent from following malicious instructions hidden in the data. Capabilities like command execution (discover_and_verify) and API writing (post_thread_replies) are only performed after these safety measures. - [COMMAND_EXECUTION]: The
discover_and_verifytool executes build and test commands (likenpm testorpytest) identified within the local repository. The skill uses a securerun_commandhelper in_skill_cli.pywhich executes these viasubprocess.runwithshell=False, effectively preventing shell injection attacks. - [EXTERNAL_DOWNLOADS]: The skill communicates with GitHub's servers using the
ghCLI to fetch and post PR data. These network operations are standard for the skill's purpose and target a well-known service domain. - [SAFE]: The skill follows security best practices by implementing hard gates for merges (
assert_no_merge) and ensuring local changes are pushed (assert_fixes_pushed) before communication with the remote CI bot. No suspicious obfuscation, persistence mechanisms, or privilege escalation patterns were detected.
Audit Metadata