with one click
github-issue-list
List and search GitHub issues in claude-power-pack
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
List and search GitHub issues in claude-power-pack
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Analyze a GitHub-backed repository's open issues, pull requests, branches, and worktrees to recommend the next unclaimed issue or cleanup action. Use when Codex is asked what to work on next, to triage project backlog, or to choose between open GitHub issues.
Analyze a GitHub-backed repository's open issues, pull requests, branches, and worktrees to recommend the next unclaimed issue or cleanup action. Use when Codex is asked what to work on next, to triage project backlog, or to choose between open GitHub issues.
Launch a bounded, read-only Claude Code session through the Claude Agent SDK to review the current issue-branch diff and advise Codex. Use when the user requests a Claude or cross-model code review, or when flow-auto remains stuck after two materially distinct attempts and needs implementation support.
Launch a bounded, read-only Claude Code session through the Claude Agent SDK to review the current issue-branch diff and advise Codex. Use when the user requests a Claude or cross-model code review, or when flow-auto remains stuck after two materially distinct attempts and needs implementation support.
Bootstrap Codex Power Pack host wiring with explicit consent for every global change
Report installed Codex Power Pack plugins, host pointers, health, and drift without changing the machine
| name | github-issue-list |
| description | List and search GitHub issues in claude-power-pack |
Resolve REPO from an explicit owner/repo argument when supplied; otherwise
run gh repo view --json nameWithOwner --jq .nameWithOwner in the current
checkout. Pass --repo "$REPO" to every issue command. If neither source can
resolve a repository, ask the user before performing a write.
Generated from a Claude Code command. Where the procedure references these Claude-only surfaces, adapt as follows:
~/.codex/config.toml, or fall back to the referenced repo scripts and CLI entry points.List and search issues in the claude-power-pack repository.
If the user just runs /github-issue-list without specifying filters, show open issues:
gh issue list --repo "$REPO" --state open --limit 20
Ask the user if they want to apply any filters:
open (default) - Open issues onlyclosed - Closed issues onlyall - All issuesCommon labels:
best-practice - Best practice suggestionscorrection - Documentation correctionsfeature-request - Feature requestsbug - Bug reportsenhancement - Enhancementsdocumentation - Documentation relatedSearch issue titles and bodies:
gh issue list --repo "$REPO" --search "QUERY"
--author USERNAME - Issues created by specific user--assignee USERNAME - Issues assigned to specific user--assignee @me - Issues assigned to current user# Open issues (default)
gh issue list --repo "$REPO" --state open --limit 20
# Filter by label
gh issue list --repo "$REPO" --label "best-practice"
# Search issues
gh issue list --repo "$REPO" --search "MCP token"
# Closed issues
gh issue list --repo "$REPO" --state closed --limit 10
# My issues
gh issue list --repo "$REPO" --author @me
# Combine filters
gh issue list --repo "$REPO" --state open --label "bug" --limit 10
Present results in a clean table format:
# TITLE LABELS UPDATED
42 Use Plan Mode for complex refactors best-practice 2h ago
38 MCP server fails on Python 3.12 bug 1d ago
35 Add /test:setup command feature-request 3d ago
After listing issues, offer:
/github-issue-view NUMBER/github-issue-create