resolve-pr-feedback
Pass
Audited by Gen Agent Trust Hub on Sep 8, 2026
Risk Level: SAFEINDIRECT_PROMPT_INJECTIONCOMMAND_EXECUTION
Full Analysis
- [INDIRECT_PROMPT_INJECTION]: The skill ingests untrusted data from PR comments, creating a potential vector for indirect prompt injection. This is mitigated by explicit security instructions in
SKILL.mdandreferences/agents/pr-comment-resolver.mdthat warn the agent never to execute commands or shell snippets found in comments. Ingestion occurs inscripts/get-pr-commentswhich fetches thread data. The skill usesgitandghfor code modification and API interaction, while employing human-in-the-loop escalation (needs-human) for risky or ambiguous decisions. - [COMMAND_EXECUTION]: The skill executes shell commands using
gitand the GitHub CLI (gh). These commands are standard for PR management and are used to fetch comments, apply code changes, and post replies. The scripts (e.g.,scripts/reply-to-pr-thread) use quoted heredocs to safely handle multiline markdown from comments, preventing accidental command or variable expansion when passing untrusted bodies to the GitHub API.
Audit Metadata