issuelisted
Install: claude install-skill 0merUfuk/the-matrix
**Version**: 1.0
**Created**: 2026-03-17
**Last Updated**: 2026-03-17
**Authors:** Ömer Ufuk
---
# /issue — Create GitHub Issues with Enforced Conventions
**Usage**: `/issue` or `/issue $ARGUMENTS`
## Current State
- Open issues: !`gh issue list --repo 0merUfuk/the-matrix --state open --limit 5 2>/dev/null || echo "unable to fetch"`
- Labels: !`gh label list --repo 0merUfuk/the-matrix 2>/dev/null | wc -l | tr -d ' '` labels configured
- Current branch: !`git branch --show-current`
**Examples**:
```
/issue # interactive — guided prompts
/issue fix(morpheus): doctor.go silently skips checks # quick — title provided, prompts for details
/issue setup-labels # one-time — creates label taxonomy on GitHub
```
---
## What This Command Does
Creates consistently-formatted GitHub Issues for the-matrix repository. Enforces a title convention (conventional commit style), a 3-dimensional label taxonomy (priority + type + tool), and a structured body template. Every issue gets the same shape, making triage, filtering, and backlog grooming predictable.
---
## Title Convention
Format: `type(scope): concise description`
Same pattern as commits and PR titles. Imperative mood, lowercase, no period, under 72 chars.
### Types
| Type | Use when |
|------|----------|
| `feat` | New command, flag, feature, template, agent, skill |
| `fix` | Bug fix or incorrect behavior |
| `refactor` | Code r