Install
$ agentstack add skill-claude-world-claude-agent-github-ops ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
GitHub Ops
Manage GitHub repositories using the gh CLI. Handles issues, PRs, CI runs, releases, and API queries.
Prerequisites
brew install gh
gh auth login
Choose GitHub.com, HTTPS, and authenticate via browser. Confirm with:
gh auth status
Commands
Issues
| Command | Description | |---------|-------------| | gh issue list | List open issues in current repo | | gh issue list --repo | List issues in a specific repo | | gh issue view | View issue details | | gh issue create --title "..." --body "..." | Create an issue | | gh issue close | Close an issue | | gh issue comment --body "..." | Comment on an issue | | gh issue edit --assignee "@me" | Assign to yourself |
Pull Requests
| Command | Description | |---------|-------------| | gh pr list | List open PRs | | gh pr view | View PR details and diff | | gh pr create --title "..." --body "..." | Create a PR | | gh pr merge --squash | Merge a PR (squash) | | gh pr review --approve | Approve a PR | | gh pr review --request-changes --body "..." | Request changes | | gh pr comment --body "..." | Comment on a PR | | gh pr checks | Show CI check status for a PR |
CI / Actions
| Command | Description | |---------|-------------| | gh run list | List recent workflow runs | | gh run view | View run details and logs | | gh run rerun | Re-trigger a failed run | | gh workflow run | Manually trigger a workflow |
Releases
| Command | Description | |---------|-------------| | gh release list | List releases | | gh release create v1.0.0 --notes "..." | Create a release | | gh release view v1.0.0 | View release details |
Raw API
gh api repos///issues # List issues via API
gh api graphql -f query='...' # GraphQL queries
Usage Examples
Create a bug report issue:
gh issue create \
--title "Fix: null pointer in auth flow" \
--body "Steps to reproduce: ..." \
--label "bug" \
--assignee "@me"
Check CI status for latest PR:
gh pr list --limit 1
gh pr checks
Review a PR and request changes:
gh pr view 42
gh pr review 42 --request-changes --body "Please add tests for the edge case on line 87."
Trigger a manual workflow dispatch:
gh workflow run deploy.yml --field environment=staging
Rules
- Always check if CLI is installed and authenticated:
gh auth status - If not installed, show
brew install gh && gh auth loginand stop - If not authenticated, show
gh auth loginand stop - Default to the current repo (detected from git remote) unless user specifies ``
- When listing issues/PRs, show number, title, author, and date — limit to 10 by default
- When viewing PR diffs, truncate at 100 lines and save full diff to
workspace/pr-.diff - NEVER approve or merge a PR without the user explicitly confirming
- For code review, summarize the diff first, then provide specific line-level feedback
- Keep responses concise: action confirmation in 1-2 lines, details in collapsible sections when possible
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: claude-world
- Source: claude-world/claude-agent
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.