Create GitHub issue with template
Create new issue with appropriate template and labels.
/issue-create "Racer moves through walls"
/issue-create "Add AI opponent difficulty levels"
/issue-create "Refactor collision detection"
Analyze title for keywords:
Scan title for component keywords:
collision-detectionscenekitgame-logicuiaitestingAsk user if priority should be set:
# Bug example
gh issue create \
--title "BUG: Racer moves through walls" \
--template bug_report.md \
--label "bug,collision-detection"
# Feature example
gh issue create \
--title "FEATURE: Add AI opponent" \
--template feature_request.md \
--label "feature,ai,game-logic"
# Task example
gh issue create \
--title "TASK: Refactor collision detection" \
--template task.md \
--label "task,collision-detection"
Parse output to extract issue number and display:
✓ Issue #47 created: "BUG: Racer moves through walls"
Labels: bug, collision-detection
View: gh issue view 47
Keywords for BUG:
- bug, crash, broken, error, fail, fix
- incorrect, wrong, issue, problem
- teleport, glitch
Keywords for FEATURE:
- feature, add, implement, new, create
- support, enable, allow
Keywords for TASK:
- refactor, improve, update, optimize
- clean, reorganize, restructure
- performance, maintainability
collision-detection:
- collision, bresenham, path, wall, crash
scenekit:
- scenekit, render, node, material, camera
- scene, geometry, visual, display
game-logic:
- game, state, player, move, turn
- velocity, position, lap, finish
ui:
- ui, interface, button, menu, hud
- control, input, display, screen
ai:
- ai, opponent, bot, computer, difficulty
testing:
- test, testing, unit, integration, spec
Bug Report:
User: /issue-create "Racer teleports through walls at high velocity"
Claude:
- Detected: BUG (keywords: teleport, walls)
- Component: collision-detection (keywords: walls, velocity)
- Template: bug_report.md
Creates issue #47 with:
- Title: "BUG: Racer teleports through walls at high velocity"
- Labels: bug, collision-detection
- Template: bug_report.md
Feature Request:
User: /issue-create "Add AI opponent with multiple difficulty levels"
Claude:
- Detected: FEATURE (keywords: add)
- Components: ai (keywords: AI, opponent, difficulty)
- Template: feature_request.md
Creates issue #48 with:
- Title: "FEATURE: Add AI opponent with multiple difficulty levels"
- Labels: feature, ai
- Template: feature_request.md
/play-test and /debug create fully-filled issues