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 properly numbered tickets with consistent structure.
claude/tickets/ for existing TICKET-XXX-*.md filesclaude/tickets/TICKET-XXX-description.mdclaude/tickets/ticket-list.md with new entryls 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-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]
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 | ⚫ |
Convert title to kebab-case for filename:
TICKET-001-user-authentication.mdTICKET-002-fix-api-bug.mdUser: "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
Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.
Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli.
Use when you need to control Slack from OpenClaw via the slack tool, including reacting to messages or pinning/unpinning items in Slack channels or DMs.
Manage Apple Reminders via remindctl CLI (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output.
Manage Trello boards, lists, and cards via the Trello REST API.
Category:productivity