* 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>
32 lines
726 B
Markdown
32 lines
726 B
Markdown
Set a task's status to pending.
|
|
|
|
Arguments: $ARGUMENTS (task ID)
|
|
|
|
## Setting Task to Pending
|
|
|
|
This moves a task back to the pending state, useful for:
|
|
- Resetting erroneously started tasks
|
|
- Deferring work that was prematurely begun
|
|
- Reorganizing sprint priorities
|
|
|
|
## Execution
|
|
|
|
```bash
|
|
task-master set-status --id=$ARGUMENTS --status=pending
|
|
```
|
|
|
|
## Validation
|
|
|
|
Before setting to pending:
|
|
- Warn if task is currently in-progress
|
|
- Check if this will block other tasks
|
|
- Suggest documenting why it's being reset
|
|
- Preserve any work already done
|
|
|
|
## Smart Actions
|
|
|
|
After setting to pending:
|
|
- Update sprint planning if needed
|
|
- Notify about freed resources
|
|
- Suggest priority reassessment
|
|
- Log the status change with context |