* 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>
22 lines
655 B
Markdown
22 lines
655 B
Markdown
Quick install Task Master globally if not already installed.
|
|
|
|
Execute this streamlined installation:
|
|
|
|
```bash
|
|
# Check and install in one command
|
|
task-master --version 2>/dev/null || npm install -g task-master-ai
|
|
|
|
# Verify installation
|
|
task-master --version
|
|
|
|
# Quick setup check
|
|
task-master models --status || echo "Note: You'll need to set up an AI provider API key"
|
|
```
|
|
|
|
If you see "command not found" after installation, you may need to:
|
|
1. Restart your terminal
|
|
2. Or add npm global bin to PATH: `export PATH=$(npm bin -g):$PATH`
|
|
|
|
Once installed, you can use all the Task Master commands!
|
|
|
|
Quick test: Run `/project:help` to see all available commands. |