afk
Pass
Audited by Gen Agent Trust Hub on May 16, 2026
Risk Level: SAFECOMMAND_EXECUTIONEXTERNAL_DOWNLOADSPROMPT_INJECTION
Full Analysis
- [PROMPT_INJECTION]: The skill processes external data from GitHub issues and comments, creating a potential surface for indirect prompt injection.
- Ingestion points: The orchestrator fetches issue titles, bodies, and comments via the
ghCLI in theselect_issuesandwrite_dropfunctions withinscripts/afk.sh. - Boundary markers:
AGENT-PROMPT.mdinstructs the agent to treat the provided agent brief as the authoritative contract, though the original issue body is still provided for context. - Capability inventory: The orchestrator and inner agents can execute shell commands through project-specific
pnpmscripts (test, lint, build) and git operations. Thecodexrunner is specifically granted full access within its isolated worktree. - Sanitization: Content retrieved from GitHub is not explicitly sanitized before being passed to the agent, relying on the internal safety rules and instructions for mitigation.
- [COMMAND_EXECUTION]: The skill executes various shell commands to automate the issue-resolution lifecycle and validate code changes.
- The orchestrator automatically runs
pnpm test,pnpm typecheck,pnpm lint, andpnpm buildwithin isolated worktrees to verify the agent's implementations. scripts/afk.shutilizesgitandghto manage repository state, including creating worktrees, merging branches, and closing issues.- The
codexrunner is invoked with the--dangerously-bypass-approvals-and-sandboxflag to facilitate unattended autonomous operation, as documented inrunner-codex.md. - [EXTERNAL_DOWNLOADS]: The skill interacts with GitHub to synchronize code and manage issue tracking data.
- It performs
git fetchandgit pushoperations over SSH to manage the remotemainbranch state. - It uses the GitHub CLI (
gh) to fetch issue metadata and post status updates. All network operations are conducted with well-known GitHub services and repositories.
Audit Metadata