* 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>
46 lines
870 B
Markdown
46 lines
870 B
Markdown
Quick initialization with auto-confirmation.
|
|
|
|
Arguments: $ARGUMENTS
|
|
|
|
Initialize a Task Master project without prompts, accepting all defaults.
|
|
|
|
## Quick Setup
|
|
|
|
```bash
|
|
task-master init -y
|
|
```
|
|
|
|
## What It Does
|
|
|
|
1. Creates `.taskmaster/` directory structure
|
|
2. Initializes empty `tasks.json`
|
|
3. Sets up default configuration
|
|
4. Uses directory name as project name
|
|
5. 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:
|
|
1. Configure AI models if needed:
|
|
```
|
|
/project:tm/models/setup
|
|
```
|
|
|
|
2. Parse PRD if available:
|
|
```
|
|
/project:tm/parse-prd <file>
|
|
```
|
|
|
|
3. Or create first task:
|
|
```
|
|
/project:tm/add-task create initial setup
|
|
```
|
|
|
|
Perfect for rapid project setup! |