This guide covers common workflows when using TaskTracker in your development process, with particular focus on integration with Cursor IDE.
# See what tasks are in progress
tt list --current
# Or view all tasks
tt list# Quick task creation
tt quick "Implement user authentication" feature
# Interactive task creation with more details
tt add# Mark a task as in-progress
tt update 2 status in-progress
# Add a comment about what you're doing
tt update 2 comment "Working on JWT implementation"
# Link relevant files to the task
tt update 2 add-file src/auth/jwt.js
tt update 2 add-file src/middleware/auth.js# See which files changed for which tasks
tt changes# Mark the task as complete
tt update 2 status done-
Initialize TaskTracker in your project:
tt init
-
Make sure your
.cursorrulesfile is in the project root (if not already present).
Claude in Cursor can access TaskTracker with natural language:
| What you can say | What it does |
|---|---|
| "Show me all tasks" | Lists all tasks |
| "Create a task to implement login" | Creates a new task |
| "Mark task #3 as in progress" | Updates task status |
| "Link this file to task #3" | Links current file to task |
| "Show me task statistics" | Displays task stats |
-
Tell Claude about your task:
I'm working on task #3 to implement user authentication. -
Ask Claude to generate a component:
Create a login form component for task #3 -
Claude can reference the task in the code:
/** * Task #3: Implement user authentication * Status: in-progress * Category: feature */ function LoginForm() { // Implementation }
-
Ask Claude to track changes:
Check which files have changed for my current tasks -
Claude runs the changes command and shows you the output.
-
Link new files to tasks:
Link the current file to task #4
| Command | Description |
|---|---|
tt list |
List all tasks |
tt quick "Task name" category |
Create a task quickly |
tt update <id> status <status> |
Update task status |
tt view <id> |
View task details |
tt changes |
Show file changes |
tt stats |
Show task statistics |
# See task statistics summary
tt stats
# Generate a more detailed report
tt snapshot# Show only in-progress tasks
tt list in-progress
# Filter by category
tt list --category=feature
# Search by keyword
tt list --keyword=authentication# Generate AI-friendly context
tt ai-context
# Generate context for a specific task
tt ai-context 2This helps Claude understand the broader context of your work and provide more relevant assistance.