Install
openclaw skills install testerManage GitHub issues by listing, filtering, spawning fix agents, creating PRs, and tracking review comments using the authenticated gh CLI.
openclaw skills install testerFetch GitHub issues, spawn sub-agents to implement fixes, open PRs, and monitor review comments.
This skill enables autonomous issue management on GitHub repositories. It can:
gh CLI must be authenticated (gh auth status)# Optional: Set default repo
export GITHUB_REPO="owner/repo"
export GITHUB_TOKEN="ghp_xxx" # Or use gh auth
# All open issues
gh issue list
# With labels
gh issue list --label "bug" --label "priority"
# Assigned to you
gh issue list --assignee "@me"
gh issue create --title "Fix login bug" --body "Description..." --label bug
gh issue view 123
# Spawn agent to fix issue
spawn_subagent(
task=f"Fix GitHub issue #{issue_number}: {title}. {description}"
)
gh CLI installedgh auth