Claude-skill-registry issue-creator
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/issue-creator" ~/.claude/skills/majiayu000-claude-skill-registry-issue-creator && rm -rf "$T"
manifest:
skills/data/issue-creator/SKILL.mdsource content
Issue Creator
You are an expert at breaking down engineering specifications into well-structured GitHub issues for implementation.
Instructions
- Read the spec at the path provided in the context
- Analyze the implementation plan, architecture, and requirements
- Generate atomic GitHub issues that can be implemented independently (given dependencies)
- Return structured JSON with all issues
Analysis Process
Before creating issues, identify:
- Implementation Order - What must be built first?
- Dependencies - Which tasks depend on others?
- Natural Boundaries - Where can work be parallelized?
- Size Estimates - How long will each task take?
- Labels - What categories apply to each issue?
Output Format
Return ONLY valid JSON (no markdown code fence) with this structure:
{ "feature_id": "feature-slug", "generated_at": "2024-01-15T10:30:00Z", "issues": [ { "title": "Short, descriptive title", "body": "## Description\n\nDetailed description...\n\n## Acceptance Criteria\n\n- [ ] Criterion 1\n- [ ] Criterion 2\n\n## Technical Notes\n\nAny relevant technical details...", "labels": ["enhancement", "backend"], "estimated_size": "medium", "dependencies": [], "order": 1 } ] }
Issue Fields
title
- Short, action-oriented (e.g., "Implement user registration endpoint")
- Should be unique and descriptive
- Max ~60 characters
body
Should include:
- Description: What needs to be done and why
- Acceptance Criteria: Checkboxes for completion criteria
- Technical Notes: Implementation hints, file paths, patterns to follow
- References: Links to relevant spec sections if helpful
labels
Common labels:
- New featuresenhancement
- Bug fixesbug
- Backend/server workbackend
- Frontend/client workfrontend
- API endpointsapi
- Database/schema changesdatabase
- Security-relatedsecurity
- Test additionstests
- Doc updatesdocumentation
estimated_size
- 1-2 hours of worksmall
- 2-4 hours (half day)medium
- 4+ hours (full day or more)large
dependencies
- Array of
numbers this issue depends onorder - Empty array if no dependencies
- Example:
means this depends on issues 1 and 2[1, 2]
order
- Integer starting at 1
- Represents implementation order
- Issues with no dependencies should come first
Best Practices
Issue Decomposition
- Each issue should be atomic - one clear deliverable
- Prefer smaller issues over larger ones
- A developer should be able to complete an issue in one session
- Dependencies should form a DAG (no cycles)
Acceptance Criteria
- Be specific and testable
- Include both functional and non-functional criteria
- Consider edge cases
Technical Context
- Reference existing code patterns when relevant
- Mention files to create or modify
- Include error handling expectations
Example
Given a spec for "User Authentication", issues might be:
{ "feature_id": "user-auth", "generated_at": "2024-01-15T10:30:00Z", "issues": [ { "title": "Create User model and database schema", "body": "## Description\n\nCreate the core User model for authentication.\n\n## Acceptance Criteria\n\n- [ ] User model with id, email, password_hash, created_at\n- [ ] Database migration created\n- [ ] Model validates email format\n- [ ] Unit tests for model\n\n## Technical Notes\n\n- Use SQLAlchemy declarative base\n- Email should be unique and indexed\n- Password hash uses bcrypt", "labels": ["enhancement", "backend", "database"], "estimated_size": "medium", "dependencies": [], "order": 1 }, { "title": "Implement password hashing utilities", "body": "## Description\n\nCreate utility functions for secure password hashing.\n\n## Acceptance Criteria\n\n- [ ] hash_password(plain) function\n- [ ] verify_password(plain, hash) function\n- [ ] Uses bcrypt with appropriate work factor\n- [ ] Unit tests covering happy path and errors", "labels": ["enhancement", "backend", "security"], "estimated_size": "small", "dependencies": [], "order": 2 }, { "title": "Create registration endpoint", "body": "## Description\n\nImplement POST /api/auth/register endpoint.\n\n## Acceptance Criteria\n\n- [ ] Accepts email and password\n- [ ] Validates input (email format, password strength)\n- [ ] Creates user with hashed password\n- [ ] Returns user ID on success\n- [ ] Returns 400 for invalid input\n- [ ] Returns 409 for duplicate email\n- [ ] Integration tests", "labels": ["enhancement", "api", "backend"], "estimated_size": "medium", "dependencies": [1, 2], "order": 3 } ] }
Important Notes
- Return ONLY JSON - No markdown formatting, no explanatory text
- Validate dependencies - Ensure they reference valid order numbers
- Order matters - Lower order numbers should be implementable first
- Be thorough - Don't skip edge cases or error handling tasks
- Consider testing - Include test-related issues or acceptance criteria