gh-review-requests
Pass
Audited by Gen Agent Trust Hub on May 10, 2026
Risk Level: SAFECOMMAND_EXECUTION
Full Analysis
- [COMMAND_EXECUTION]: The skill uses
subprocess.runto call thegh(GitHub CLI) tool. This is a legitimate and expected use case for a GitHub-related utility. - Evidence:
scripts/fetch_review_requests.pycontains theghfunction which executessubprocess.run(["gh", "api", path], ...). - Security Evaluation: The command is constructed using a list (not a raw shell string), which prevents shell injection. The
--organd--teamsarguments are processed viaargparseand sanitized before being interpolated into API paths.
Audit Metadata