* Fix Cursor deeplink installation with copy-paste instructions (#723) * fix: expand-task (#755) * docs: Update o3 model price (#751) * docs: Auto-update and format models.md * docs: Auto-update and format models.md * feat: Add Claude Code task master commands Adds Task Master slash commands for Claude Code under /project:tm/ namespace --------- Co-authored-by: Joe Danziger <joe@ticc.net> Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com> Co-authored-by: Volodymyr Zahorniak <7808206+zahorniak@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: neno-is-ooo <204701868+neno-is-ooo@users.noreply.github.com>
50 lines
1.0 KiB
Markdown
50 lines
1.0 KiB
Markdown
Initialize a new Task Master project.
|
|
|
|
Arguments: $ARGUMENTS
|
|
|
|
Parse arguments to determine initialization preferences.
|
|
|
|
## Initialization Process
|
|
|
|
1. **Parse Arguments**
|
|
- PRD file path (if provided)
|
|
- Project name
|
|
- Auto-confirm flag (-y)
|
|
|
|
2. **Project Setup**
|
|
```bash
|
|
task-master init
|
|
```
|
|
|
|
3. **Smart Initialization**
|
|
- Detect existing project files
|
|
- Suggest project name from directory
|
|
- Check for git repository
|
|
- Verify AI provider configuration
|
|
|
|
## Configuration Options
|
|
|
|
Based on arguments:
|
|
- `quick` / `-y` → Skip confirmations
|
|
- `<file.md>` → Use as PRD after init
|
|
- `--name=<name>` → Set project name
|
|
- `--description=<desc>` → Set description
|
|
|
|
## Post-Initialization
|
|
|
|
After successful init:
|
|
1. Show project structure created
|
|
2. Verify AI models configured
|
|
3. Suggest next steps:
|
|
- Parse PRD if available
|
|
- Configure AI providers
|
|
- Set up git hooks
|
|
- Create first tasks
|
|
|
|
## Integration
|
|
|
|
If PRD file provided:
|
|
```
|
|
/project:tm/init my-prd.md
|
|
→ Automatically runs parse-prd after init
|
|
``` |