How this command is triggered — by the user, by Claude, or both
Slash command
/project-tracker:new-todoThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Create New Todo
Create a quick todo item in the project tracker workspace.
## Instructions
1. **Generate a slug** from the provided title using kebab-case
2. **Ask for details**:
- Description (what needs to be done)
- Priority (optional): `low`, `medium`, or `high`
- Tags (optional)
3. **Create the file** at `$PROJECT_TRACKER_WORKSPACE/todos/{slug}.md`:
4. **Confirm creation** with the file path
## Example
User runs: `/new-todo "Fix login redirect bug"`
You ask: "Any additional details? Priority?"
User says: "High priority, it's blocking QA"
You create `$PROJECT_TRA...Create a quick todo item in the project tracker workspace.
Generate a slug from the provided title using kebab-case
Ask for details:
low, medium, or highCreate the file at $PROJECT_TRACKER_WORKSPACE/todos/{slug}.md:
---
title: '{title}'
created: '{today's date YYYY-MM-DD}'
priority: {priority if provided}
tags: {tags if provided}
---
# {title}
{description}
## Notes
*Add any additional context here*
User runs: /new-todo "Fix login redirect bug"
You ask: "Any additional details? Priority?"
User says: "High priority, it's blocking QA"
You create $PROJECT_TRACKER_WORKSPACE/todos/fix-login-redirect-bug.md:
---
title: 'Fix login redirect bug'
created: '2026-01-05'
priority: high
tags:
- bug
- blocking
---
# Fix login redirect bug
It's blocking QA testing.
## Notes
*Add any additional context here*
npx claudepluginhub p/hhopkins95-project-tracker-plugins-project-tracker-2/add-taskParses natural language task descriptions into structured tasks with inferred priority, dependencies, complexity, and type. Validates dependencies and checks for duplicates before creating.
/add-to-todosAdds a structured todo item to TO-DOS.md with context from the conversation, including problem, files, and solution fields. Checks for duplicates before appending.
/taskview-new-taskCreates a task in TaskView by parsing a natural language request for description, project, list, priority, and deadline, resolving project and list IDs via MCP tools, and confirming the result.