Awesome-omni-skill create-issues
Systematic GitHub issue creation from requirements. Analyzes codebase, breaks down requirements into multiple issues with dependencies, proposes detailed issues for review, and creates them after user approval. Triggers: /create-issues, create issues, batch issue creation, requirement breakdown.
git clone https://github.com/diegosouzapw/awesome-omni-skill
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/tools/create-issues" ~/.claude/skills/diegosouzapw-awesome-omni-skill-create-issues && rm -rf "$T"
skills/tools/create-issues/SKILL.mdCreate Issues Skill
Systematic workflow for creating well-structured GitHub issues from high-level requirements.
Overview
This skill transforms user requirements into a set of well-structured, dependency-aware GitHub issues. It follows a 5-phase workflow with a mandatory user approval gate before creating any issues.
When to Use
Use this skill when:
- User invokes
/create-issues - User describes a feature or requirement that needs multiple issues
- User wants to plan work breakdown systematically
- User needs help decomposing a complex requirement
Workflow
Phase 1: Codebase Analysis
Read
phases/analyze.md
Scan the project to understand:
- Repository structure and languages
- Module organization and patterns
- Existing test coverage
- Configuration from workflow.yaml
Phase 2: Requirement Breakdown
Read
phases/breakdown.md
Systematically decompose the requirement:
- Identify discrete tasks
- Detect dependencies between tasks
- Assign complexity scores (1-5)
- Assign priorities (P0/P1/P2)
- Group by execution phase
Phase 3: Issue Proposal Generation
Read
phases/propose.md
Generate detailed proposals:
- Full issue content with all fields
- Scope with specific file paths
- Acceptance criteria
- Verification commands
- Dependency graph visualization
Phase 4: User Approval Gate
Read
phases/approval.md
Present proposals and wait for confirmation:
- Display formatted proposals
- User responds: yes/no/edit
- Only proceed if user explicitly approves
Phase 5: Issue Creation
Read
phases/create.md
Create issues via GitHub CLI:
- Execute
for each issuegh issue create - Capture returned issue numbers
- Update dependency references
- Generate final report with links
Critical Rules
- NEVER create issues without user approval
- ALWAYS show full proposal details before asking for approval
- Respect dependency order - issues with dependencies must reference actual issue numbers
- Follow commit format -
(no colon)[type] subject - Include verification commands - Go projects use
andgo test ./...go build ./...
Integration with AWK Workflow
Issues created by this skill will have the
ai-task label and can be processed by:
- AWK principal workflow (spec-driven)awkit kickoff
- Batch issue processing skill/run-issues
⚠️ WARNING: Do NOT run
/run-issues and awkit kickoff simultaneously on the same issues.
Recommended workflow:
/create-issues → (user approves) → issues created ↓ Choose ONE: ├─ awkit kickoff (structured, spec-driven) └─ /run-issues (autonomous, batch processing)
Self-Check
On each phase entry, output:
[CREATE-ISSUES] <timestamp> | <phase> | loaded: <filename>
Quick Reference
| Phase | Action | File |
|---|---|---|
| 1. Analyze | Scan codebase structure | |
| 2. Breakdown | Decompose requirement | |
| 3. Propose | Generate detailed proposals | |
| 4. Approval | Wait for user confirmation | |
| 5. Create | Execute gh issue create | |