List git-native-issues with optional filtering and shorthands
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-git-native-issue:issuesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
List issues in the current repository with filtering support and convenience shorthands.
List issues in the current repository with filtering support and convenience shorthands.
Parse $ARGUMENTS for filter flags. If empty, lists all open issues.
These convenience words are translated before execution:
| Shorthand | Translates to |
|---|---|
all | git issue ls --state all |
in-progress | git issue ls -l in-progress |
closed | git issue ls --state closed |
bugs | git issue ls -l bug |
critical | git issue ls --priority critical |
blocked | git issue ls -l blocked |
All git issue ls flags are supported:
--state open|closed|all (default: open)-l <label> — filter by label--priority <level> — filter by priority--assignee <email> — filter by assignee-f short|full|oneline (default: short)--sort created|updated|priority|state--reverse — reverse sort order$ARGUMENTS and translate any shorthands.git issue ls with the constructed flags./claude-git-native-issue:create./claude-git-native-issue:issues → all open issues
/claude-git-native-issue:issues all → all issues (open + closed)
/claude-git-native-issue:issues in-progress → currently active work
/claude-git-native-issue:issues -l feature --sort priority → features by priority
/claude-git-native-issue:issues closed → completed/cancelled issues
npx claudepluginhub remenoscodes/claude-plugin-marketplace --plugin claude-git-native-issueCreates, lists, and views GitHub issues using gh CLI with guided prompts for actions, titles, bodies, and issue types. For repository issue management workflows.
Manages GitHub issues using GitHub CLI: lists open issues, views details by number, creates with title/body/labels, edits labels/assignees, closes/reopens. Triggers on 'show open issues', 'create issue', etc.
Groups open GitHub issues by label into four sections (Blocked, Other, Vanilla, Decomposed) with mechanical sorting and a copy-pasteable command per row. Supports filtering by label, milestone, and section type.