← Back to list

create-ticket
by vichannnnn
Quick setup for projects or repositories using Claude Code with built-in agents, ticket system, and planning tools.
⭐ 69🍴 7📅 Jan 22, 2026
SKILL.md
name: create-ticket description: Create task tickets with proper numbering, template structure, and ticket-list.md updates. Use when the user wants to create a ticket, add a task, or says "/create-ticket". Automatically finds the next ticket number, creates the ticket file, and updates the centralized ticket list.
Create Ticket Skill
Create properly numbered tickets with consistent structure.
Workflow
- Scan
claude/tickets/for existingTICKET-XXX-*.mdfiles - Determine next ticket number (highest + 1, or 001 if none)
- Create ticket file at
claude/tickets/TICKET-XXX-description.md - Update
claude/tickets/ticket-list.mdwith new entry
Finding Next Ticket Number
ls claude/tickets/TICKET-*.md 2>/dev/null | grep -oE 'TICKET-[0-9]+' | sort -t'-' -k2 -n | tail -1
If no tickets exist, start with TICKET-001.
Ticket Template
# TICKET-XXX: [Title]
## Description
[Detailed description of the task]
## Acceptance Criteria
- [ ] Criterion 1
- [ ] Criterion 2
- [ ] Criterion 3
## Priority
High/Medium/Low
## Status
Todo
## Notes
[Any additional context or notes]
Updating ticket-list.md
Add entry to appropriate priority section:
### High Priority
- 🔴 [TICKET-XXX](./TICKET-XXX-description.md) - Title here
Status emojis:
| Status | Emoji |
|---|---|
| Todo | 🔴 |
| In Progress | 🟡 |
| Done | 🟢 |
| Blocked | 🔵 |
| Cancelled | ⚫ |
File Naming
Convert title to kebab-case for filename:
- "User Authentication" →
TICKET-001-user-authentication.md - "Fix API Bug" →
TICKET-002-fix-api-bug.md
Example
User: "Create a ticket for adding user authentication"
Creates claude/tickets/TICKET-001-user-authentication.md:
# TICKET-001: User Authentication
## Description
Implement user authentication system for the application.
## Acceptance Criteria
- [ ] Users can register with email/password
- [ ] Users can log in and receive session token
- [ ] Protected routes require authentication
## Priority
High
## Status
Todo
## Notes
Consider using JWT for session management.
Updates claude/tickets/ticket-list.md:
### High Priority
- 🔴 [TICKET-001](./TICKET-001-user-authentication.md) - User Authentication
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon