π¦ ClawHub
tester_skill
by @tsiontesfayechromaway
Manage GitHub issues by listing, filtering, spawning fix agents, creating PRs, and tracking review comments using the authenticated gh CLI.
TERMINAL
clawhub install testerπ About This Skill
GitHub Issue Manager
Fetch GitHub issues, spawn sub-agents to implement fixes, open PRs, and monitor review comments.
Overview
This skill enables autonomous issue management on GitHub repositories. It can:
Prerequisites
gh CLI must be authenticated (gh auth status)Configuration
# Optional: Set default repo
export GITHUB_REPO="owner/repo"
export GITHUB_TOKEN="ghp_xxx" # Or use gh auth
Commands
List Issues
# All open issues
gh issue listWith labels
gh issue list --label "bug" --label "priority"Assigned to you
gh issue list --assignee "@me"
Create Issue
gh issue create --title "Fix login bug" --body "Description..." --label bug
View Issue Details
gh issue view 123
Usage in Agents
# Spawn agent to fix issue
spawn_subagent(
task=f"Fix GitHub issue #{issue_number}: {title}. {description}"
)
Notes
gh CLI installedgh authβοΈ Configuration
# Optional: Set default repo
export GITHUB_REPO="owner/repo"
export GITHUB_TOKEN="ghp_xxx" # Or use gh auth
π Tips & Best Practices
gh CLI installedgh auth