From github
Follows decision tree to create GitHub issues or PR comments based on branch and scope, auto-creates priority labels, analyzes context, and links related items.
How this command is triggered — by the user, by Claude, or both
Slash command
/github:decision-logiccreate-issues/references/The summary Claude sees in its command listing — used to decide when to auto-load this command
# Decision Logic ## Branch-Based Decision Tree - **On main/develop**: Create issue directly. - **On PR branch**: Ask "Must this be fixed before merge?" - **Yes**: Comment in PR with detailed context and reasoning, don't create issue. - **No**: Create new issue for later with clear justification for scope separation. ## Issue Types 1. **Epic issues**: Multi-PR initiatives (no auto-close keywords). 2. **PR-scoped issues**: Single PR resolution (use auto-close keywords). 3. **Review issues**: Non-blocking feedback from PR reviews. ## Issue Creation Process 1. **Analyze context** from...
gh label create "priority:high" --description "High priority - this sprint" --color "d73a4a" || true
gh label create "priority:medium" --description "Medium priority - next sprint" --color "fbca04" || true
gh label create "priority:low" --description "Low priority - backlog" --color "0075ca" || true
npx claudepluginhub fradser/dotclaude --plugin github/quick-issueCreates GitHub issue with auto-labels and switches to feature branch (fix/feat/chore) from description for quick tasks. Supports --type, --label, --no-branch flags and GHPM_PROJECT env var.
/do-issueTriages and resolves a GitHub issue autonomously: analyzes, implements fixes via /autotask, tests, creates merge-ready PR, or closes with explanation.
/create-issueCreates GitHub issue with validated labels via content analysis for type and principles, fetches repo labels, applies templates, and previews before submission.
/issue-creationCreates GitHub issues for suggestion and deferred PR review items using gh CLI templates with titles, bodies, labels, acceptance criteria, and references. Includes duplicate detection and PR comment tracking.
/issue-createCreates a structured GitHub issue from current context or description, with optional template selection and meta-directive handling.
/create-issueCreates a formatted GitHub or GitLab issue for the current git repository from provided topic/description, lists available labels, and requires user approval before using gh or glab CLI.