.claude/skills/github-issue-reader/SKILL.md
Load comprehensive GitHub issue information including title, description, comments, labels, assignees, milestones, and related items (linked PRs and cross-references). This skill should be used when planning to fix an issue, when detailed issue context is needed for implementation work, or when a plan command needs to understand the full scope of an issue.
npx skillsauth add jumppad-labs/jumppad github-issue-readerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Fetch complete GitHub issue information to provide context for planning and implementation. This skill retrieves all relevant data from a GitHub issue including the description, all comments and discussion, metadata (labels, assignees, milestones), and related items (linked pull requests and cross-referenced issues).
Use this skill when:
Fetch issue information using the fetch_issue.py script with any of these formats:
# Current repository issue by number
scripts/fetch_issue.py 123
# Specific repository issue
scripts/fetch_issue.py owner/repo#456
# Issue by full URL
scripts/fetch_issue.py https://github.com/owner/repo/issues/789
The script outputs formatted markdown containing all issue information.
Ensure the GitHub CLI (gh) is installed and authenticated:
gh auth status
If not authenticated, run:
gh auth login
Execute the fetch_issue.py script with an issue reference. The script accepts three formats:
123owner/repo#123https://github.com/owner/repo/issues/123The script will fetch and output:
# Issue #123: Add new feature for X
**URL**: https://github.com/owner/repo/issues/123
**State**: open
**Author**: username
**Created**: 2024-10-15T10:30:00Z
**Labels**: enhancement, priority-high
**Assignees**: developer1, developer2
## Description
[Full issue description]
## Comments (3)
### Comment 1 by user1 (2024-10-16T09:00:00Z)
[Comment body]
## Linked Pull Requests
- PR #124 - Fix for issue #123
## Cross-Referenced Issues
- #120 - Related issue
When using this skill as part of a planning workflow:
The script handles common errors:
gh auth loginPython script that uses the GitHub CLI to fetch comprehensive issue data. Can be executed directly without loading into context.
Usage: scripts/fetch_issue.py <issue-reference>
Returns: Formatted markdown with complete issue information
Requirements:
gh) installed and authenticatedtools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
development
Create detailed implementation plans through an interactive process with research, code snippets, and structured deliverables. Use this skill when planning significant features, refactoring tasks, or complex implementations that require thorough analysis and structured documentation. The skill guides through context gathering, research, design decisions, and generates comprehensive plans with test strategies and success criteria.
development
This skill should be used when writing, refactoring, or testing Go code. It provides idiomatic Go development patterns, TDD-based workflows, project structure conventions, and testing best practices using testify/require and mockery. Activate this skill when creating new Go features, services, packages, tests, or when setting up new Go projects.
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.