gh-cli

Fail

Audited by Runlayer on Feb 26, 2026

Risk Level: HIGH
Scan Summary
Max Score
91%
Files
1
Flagged
1
Chunks
7
Flagged Files (1)
gh-cli/SKILL.mdHIGH
90.8%

Malicious tool definition detected

**Version:** 2.85.0 (current as of January 2026) ## Prerequisites ### Installation ```bash # macOS brew install gh # Linux curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null sudo apt update sudo apt in

git commit -m "Fix issue #123" git push # Create PR linking to issue gh pr create --title "Fix #123" --body "Closes #123" ``` ### Bulk Operations ```bash # Close multiple issues gh issue list --search "label:stale" \ --json number \ --jq '.[].number' | \ xargs -I {} gh issue close {} --comment "Closing as stale" # Add label to multiple PRs gh pr list --search "review:required" \ --json number \ --jq '.[].number' | \ xargs -I {} gh pr edit {} --add-label needs-review ``` ### Repository Setup Work

**JSON Parsing**: Use jq for complex data extraction ```bash gh pr list --json number,title --jq '.[] | select(.title | contains("fix"))' ``` 4.

Audit Metadata
Max File Score
91%
Classification
KNOWN_SERVER_ALL_UNKNOWN
Files Scanned
1
Files Flagged
1
Chunks Analyzed
7
Analyzed
Feb 26, 2026, 04:52 PM
Security Audit — runlayer — gh-cli