create-issue
Standardizes GitHub issue creation to ensure tasks are ready for immediate implementation.
Install
mkdir -p .claude/skills/create-issue-lqdev && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15152" && unzip -o skill.zip -d .claude/skills/create-issue-lqdev && rm skill.zipInstalls to .claude/skills/create-issue-lqdev
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Draft a well-structured GitHub issue for a feature, bug, or chore. Encodes the project's quality bar for shovel-ready issues.Key capabilities
- →Choose a title format for a GitHub issue
- →Write a structured issue body with sections like Summary, Problem, Proposed Solution
- →Calibrate the detail level of an issue based on effort (XS, S, M, L-XL, Epic)
- →Reference real code with approximate line numbers in issue descriptions
- →Link issues to context like parent epics, PRs, or dependencies
- →Create a GitHub issue using PowerShell here-strings
How it works
This skill guides the user through selecting a title format, structuring the issue body with specific sections, and calibrating detail based on estimated effort.
Inputs & outputs
When to use create-issue
- →Report a new bug
- →Propose a feature
- →Split work from an epic
About this skill
Skill: Create a GitHub Issue
When to use
When you need to file a new issue — whether from discovering a bug, scoping a feature, splitting work from an epic, or deferring feedback from a code review.
Issue quality bar
Every issue must be shovel-ready: an agent or developer should be able to pick it up and start implementing without asking clarifying questions.
Steps
1. Choose the title format
| Type | Title format | Example |
|---|---|---|
| Feature | [Feature] Brief description | [Feature] Sync Buffer Phase 2: Core UX |
| Bug | [Bug] Brief description | [Bug] Closing Help buffer prevents reopening |
| Epic | [Epic] Brief description | [Epic] Sync Buffer Overhaul |
| Chore | chore: Brief description | chore: Sync Cargo.toml versions after release |
| Test | test: Brief description | test: Add failure-tracking test for cleanup |
| Docs | docs: Brief description | docs: Update KEYBINDINGS.md for sync buffer |
| Refactor | refactor: Brief description | refactor: Extract constants to centralized module |
2. Write the issue body
Use this structure (omit sections that don't apply):
## Summary
One paragraph: what this issue is about and why it matters.
**Parent**: <Epic name> (if this is a sub-issue)
**Depends on**: #N (if there are blocking dependencies)
**Origin**: <PR link or review comment> (if deferred from a review)
## Problem / Background
What's broken or missing? Be specific:
- Current behavior (with code references: `file.rs:line`)
- Expected behavior
- User impact
## Proposed Solution / Fix
What should be done? Include:
- Code changes with snippets showing the approach
- Which pattern to follow (reference existing code)
- Alternatives considered and why they were rejected
## Files to Modify
| File | Change |
|------|--------|
| `src/ui/app.rs` | Add match arm for new action |
| `src/ui/buffers/help.rs` | Update help text |
## Acceptance Criteria
- [ ] Criterion 1 (specific, testable)
- [ ] Criterion 2
- [ ] All existing tests pass (`cargo test`)
- [ ] `cargo clippy -- -D warnings` passes
- [ ] `cargo fmt --check` passes
## Testing Strategy
### Unit Tests
- What to test and expected behavior
### Integration Tests
- End-to-end workflows to verify
### Manual Tests
- Steps to manually verify (for UI changes)
## Implementation Notes
Non-obvious technical details, gotchas, or constraints.
## Definition of Done
- [ ] Functionality implemented according to requirements
- [ ] Unit tests written and passing
- [ ] Code passes linting (clippy) with no warnings
- [ ] Code formatted with rustfmt
- [ ] Documentation updated (if applicable)
3. Calibrate detail level by effort
| Effort | Detail level | Example |
|---|---|---|
| XS (trivial) | Summary + Files + Acceptance Criteria | Issue #64: 5 show_error → show_message changes |
| S (half-day) | Full body, light on implementation notes | Issue #51: Add F3 keybinding |
| M (full day) | Full body with code snippets and testing strategy | Issue #48: MockStorage + failure test |
| L–XL (multi-day) | Full body with detailed design, phase breakdown | Issue #74: Sync buffer Phase 1 |
| Epic | Summary + problem + phased solution + sub-issue links | Issue #73: Sync buffer overhaul |
4. Reference real code
Always verify before writing:
- Check
src/ui/keybindings.rsfor keybinding claims - Check
src/ui/app.rsfor command dispatch - Check
src/config.rsfor config field names - Check
src/constants.rsfor threshold values - Include approximate line numbers (e.g.,
app.rs:~1212)
5. Link to context
- Sub-issue of an epic? Add
**Parent**: <Epic title>in summary - Deferred from a review? Add
**Origin**: <PR link>with the review comment URL - Depends on another issue? Add
**Depends on**: #N - Related to prior work? Add
**Related**: #N, PR #M
6. Create the issue
Always use a PowerShell here-string for the body — backtick is PowerShell's escape character and any backtick-quoted code in markdown will corrupt or crash if passed as an inline string literal.
# Single-quoted here-string: backticks, $vars, and quotes are all literal.
# The closing '@ MUST be at column 0 (no leading spaces).
$body = @'
## Summary
<paste your drafted body here>
'@
gh issue create --title "[Feature] Your title" --body $body
7. Apply labels
Use the triage-issue skill to apply the correct labels after creation.
Anti-patterns
- ❌ Vague acceptance criteria: "It should work correctly" → be specific
- ❌ Missing code references: "Fix the sync buffer" → say which file, which function, which line
- ❌ No testing guidance: Always include what to test and how
- ❌ Scope creep: One issue = one logical unit of work. If it's multiple things, split into sub-issues
- ❌ Implementation-free: Don't just describe the problem — sketch the solution with code snippets
Examples of well-written issues in this repo
- XS/S: Issue #64 — concise, 5 specific changes, clear before/after
- M: Issue #48 — two options with code, constraints, compatibility notes
- L: Issue #74 — root cause analysis, fix per root cause, line references
- Epic: Issue #73 — phased breakdown, keybinding table, design decisions
When not to use it
- →When the issue description is vague, such as "It should work correctly"
- →When code references are missing, like not specifying a file or function
- →When testing guidance is absent from the issue description
Limitations
- →The skill does not apply labels to issues; a separate skill is needed for that
- →The skill does not prevent scope creep; issues should represent one logical unit of work
- →The skill does not automatically generate code snippets or testing strategies
How it compares
This workflow provides a structured template and guidelines for issue creation, unlike manually drafting an issue without specific formatting or content requirements.
Compared to similar skills
create-issue side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| create-issue (this skill) | 0 | 5mo | No flags | Beginner |
| github-manage | 6 | 9mo | Review | Beginner |
| task-management | 16 | 5mo | No flags | Beginner |
| markdown-task-manager | 1 | 9mo | Review | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
github-manage
matteocervelli
Manage operations concerning GitHub on behalf of user
task-management
anthropics
Simple task management using a shared TASKS.md file. Reference this when the user asks about their tasks, wants to add/complete tasks, or needs help tracking commitments.
markdown-task-manager
ioniks
Use when managing tasks, the system is a Kanban task manager based on local Markdown files (`kanban.md` and `archive.md`). It follows a strict format compatible with the task-manager.html web application.
create-issue
dotCMS
Create GitHub issues using repository templates. Use when the user asks to create an issue, bug report, feature request, task, spike, epic, or UX requirement. Also use when the user describes a problem, bug, enhancement, or work item that should be tracked. Supports both English and Spanish input.
agent-project-board-sync
ruvnet
Agent skill for project-board-sync - invoke with $agent-project-board-sync
linear-core-workflow-b
jeremylongshore
Project and cycle management workflows with Linear. Use when implementing sprint planning, managing projects and roadmaps, or organizing work into cycles. Trigger with phrases like "linear project", "linear cycle", "linear sprint", "linear roadmap", "linear planning", "organize linear work".