
from clawkeeper553
Orchestrates fetching GitHub issues, spawning parallel sub-agents to implement fixes, open PRs, and handle review comments using the GitHub REST API.
gh-issues automates the workflow of discovering GitHub issues, validating them, and spawning focused sub-agents that implement code fixes and open pull requests. It also monitors PR review comments and can spawn review-fix agents to address requested changes. The orchestrator uses curl + the GitHub REST API (no gh CLI) and handles fork mode, claim tracking, cursors for cron runs, and watch mode.
Use this skill when you want to automate triage and fix work for actionable issues in a repository: bulk-fixing small/clear bugs, keeping up with review feedback, or running in cron/watch mode to continuously process incoming issues. Avoid using it for ambiguous, large-scope issues that require human design decisions.
Designed for OpenClaw agent environments that support sessions_spawn and background sub-agents (agents that can run shell commands and use curl).
Comprehensive GitHub issue auto-fix orchestrator skill with 6 well-defined phases from issue fetching through PR creation to review handling. No bundled scripts — all logic is encoded in detailed SKILL.md instructions for agent orchestration. Extremely thorough error handling, fork mode support, watch mode, and cron mode. Minor security notes: sets credential.helper globally (affects other repos) and embeds GH_TOKEN in git remote URLs visible in process listings.
Well-crafted orchestration skill. The lack of scripts means quality and security are entirely dependent on the agent interpreting the SKILL.md correctly. The skill is very detailed and comprehensive — covers fork mode, watch mode, cron mode, review handling, and edge cases well. The global credential.helper change is a minor concern as it affects the entire git config, not just the skill's operations.