* 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>
40 lines
940 B
Markdown
40 lines
940 B
Markdown
Set a task's status to review.
|
|
|
|
Arguments: $ARGUMENTS (task ID)
|
|
|
|
## Marking Task for Review
|
|
|
|
This status indicates work is complete but needs verification before final approval.
|
|
|
|
## When to Use Review Status
|
|
|
|
- Code complete but needs peer review
|
|
- Implementation done but needs testing
|
|
- Documentation written but needs proofreading
|
|
- Design complete but needs stakeholder approval
|
|
|
|
## Execution
|
|
|
|
```bash
|
|
task-master set-status --id=$ARGUMENTS --status=review
|
|
```
|
|
|
|
## Review Preparation
|
|
|
|
When setting to review:
|
|
1. **Generate Review Checklist**
|
|
- Link to PR/MR if applicable
|
|
- Highlight key changes
|
|
- Note areas needing attention
|
|
- Include test results
|
|
|
|
2. **Documentation**
|
|
- Update task with review notes
|
|
- Link relevant artifacts
|
|
- Specify reviewers if known
|
|
|
|
3. **Smart Actions**
|
|
- Create review reminders
|
|
- Track review duration
|
|
- Suggest reviewers based on expertise
|
|
- Prepare rollback plan if needed |