* feat: add task master (tm) custom slash commands Add comprehensive task management system integration via custom slash commands. Includes commands for: - Project initialization and setup - Task parsing from PRD documents - Task creation, update, and removal - Subtask management - Dependency tracking and validation - Complexity analysis and task expansion - Project status and reporting - Workflow automation This provides a complete task management workflow directly within Claude Code. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * chore: add changeset --------- Co-authored-by: neno-is-ooo <204701868+neno-is-ooo@users.noreply.github.com> Co-authored-by: Claude <noreply@anthropic.com>
870 B
870 B
Quick initialization with auto-confirmation.
Arguments: $ARGUMENTS
Initialize a Task Master project without prompts, accepting all defaults.
Quick Setup
task-master init -y
What It Does
- Creates
.taskmaster/directory structure - Initializes empty
tasks.json - Sets up default configuration
- Uses directory name as project name
- Skips all confirmation prompts
Smart Defaults
- Project name: Current directory name
- Description: "Task Master Project"
- Model config: Existing environment vars
- Task structure: Standard format
Next Steps
After quick init:
-
Configure AI models if needed:
/project:tm/models/setup -
Parse PRD if available:
/project:tm/parse-prd <file> -
Or create first task:
/project:tm/add-task create initial setup
Perfect for rapid project setup!