tester_skill

# GitHub Issue Manager

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "tester_skill" with this command: npx skills add tsiontesfayechromaway/tester

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:

  • List and filter issues by labels, milestones, assignees
  • Spawn sub-agents to work on fixes
  • Create PRs with automated descriptions
  • Track PR review status and respond to comments

Prerequisites

  • gh CLI must be authenticated (gh auth status)
  • Repository must be accessible via HTTPS or SSH

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 list

# With 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

  • Requires gh CLI installed
  • Authentication handled via gh auth
  • Rate limits apply (5000 requests/hour for authenticated users)

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

clawhub-install

Download and install skills from ClawHub directly via curl, bypassing official CLI rate limits. Use when the user wants to install one or more ClawHub skills...

Registry SourceRecently Updated
0199
upupc
Coding

Homebrew Bridge

Expose Mac Homebrew tools like brew, gh, and other /opt/homebrew/bin CLIs on a Linux OpenClaw gateway by installing explicit same-LAN SSH wrappers with optio...

Registry SourceRecently Updated
Coding

Dev Tools Pack

Collection of developer tools including Chrome extension templates, AI code reviews, GitHub README generators, SaaS landing pages, tech blogs, and tweet thre...

Registry SourceRecently Updated