Agent skill
github
Manage GitHub repos, PRs, issues, and code review.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/github-andersonsrepo-ai-harness
SKILL.md
GitHub Integration
Current status: !command gh pr list --limit 5 2>/dev/null && echo "---" && gh issue list --limit 5 2>/dev/null
Commands
pr list — List open pull requests
gh pr list --limit 10
pr view <number> — View PR details
gh pr view <number>
pr create — Create a new pull request
Walk the user through creating a PR:
- Show current branch and recent commits with
gh pr create --webor interactive - Ask for title and description
- Run
gh pr create --title "..." --body "..."
pr merge <number> — Merge a pull request
REQUIRES USER CONFIRMATION before executing.
gh pr merge <number> --merge
issue list — List open issues
gh issue list --limit 10
issue create — Create a new issue
Ask user for title and body, then:
gh issue create --title "..." --body "..."
issue close <number> — Close an issue
gh issue close <number>
issue comment <number> — Comment on an issue
gh issue comment <number> --body "..."
repo — View current repo info
gh repo view
Notes
- All operations use the
ghCLI (already authenticated viagh auth) - The GitHub MCP server is also available for programmatic repo access
- Merge and close operations always require explicit user confirmation
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?