Install
$ agentstack add skill-claude-world-claude-agent-gh-issues ✓ 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 Issues Auto-Fixer
Fetch GitHub issues, implement fixes, and open PRs — all automated.
Prerequisites
ghCLI installed and authenticated:brew install gh && gh auth login- Or:
GH_TOKENenvironment variable set
Process
1. Fetch Issues
# List open issues (default: bug label, limit 5)
gh issue list --repo --label bug --limit 5 --json number,title,body,labels
2. For Each Issue
- Read the issue body and comments for reproduction steps
- Clone/navigate to the repo
- Create a feature branch:
git checkout -b fix/issue- - Implement the fix (read code, understand context, make changes)
- Run tests if available
- Commit with message:
fix: (closes #) - Push and create PR:
gh pr create --repo \
--title "fix: " \
--body "Closes #\n\n## Changes\n- "
3. Monitor PRs (optional --watch flag)
# Check for review comments
gh pr view --repo --json reviewDecision,reviews,comments
Address review feedback and push updates.
Commands Reference
| Command | Purpose | |---------|---------| | gh issue list --repo R --json number,title,body | List open issues | | gh issue view N --repo R --json body,comments | Read issue details | | gh pr create --repo R --title T --body B | Create PR | | gh pr view N --repo R --json reviews,comments | Check PR reviews | | gh pr merge N --repo R --squash | Merge PR (with user approval) |
Usage Examples
/gh-issues octocat/hello-world --label bug --limit 3/gh-issues my-org/api --label "good first issue" --dry-run/gh-issues owner/repo --watch(monitor and address PR reviews)
Rules
- Always check if
ghis installed first - Never merge PRs without explicit user approval
- Create one PR per issue (not batch)
- Run existing tests before creating PR
- If fix is unclear, comment on the issue asking for clarification instead of guessing
- Dry-run mode: show what would be done without making changes
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.