Search and locate tasks across all orchestrations using various criteria.
Searches and locates tasks across orchestrations using flexible criteria like status, content, and relationships.
/plugin marketplace add davepoon/buildwithclaude/plugin install all-commands@buildwithclaudeSearch and locate tasks across all orchestrations using various criteria.
/task-find [search-term] [options]
Powerful search functionality to quickly locate tasks by ID, content, status, dependencies, or any other criteria. Supports regex, fuzzy matching, and complex queries.
/task-find TASK-001
/task-find TASK-*
/task-find "authentication"
/task-find "payment processing"
/task-find --status in_progress
/task-find --status qa,completed
/task-find --regex "JWT|OAuth"
/task-find --regex "TASK-0[0-9]{2}"
/task-find --fuzzy "autentication" # finds "authentication"
/task-find --fuzzy "paymnt" # finds "payment"
/task-find --status todos --priority high --type feature
/task-find --agent dev-backend --created-after yesterday
/task-find "auth AND login"
/task-find "payment OR billing"
/task-find "security NOT test"
/task-find title:"user authentication"
/task-find description:"security vulnerability"
/task-find agent:dev-frontend
/task-find blocks:TASK-001
/task-find --created "2024-03-10..2024-03-15"
/task-find --modified "last 3 days"
/task-find --completed "this week"
Found 3 tasks matching "authentication":
TASK-001: Implement JWT authentication
Status: in_progress | Agent: dev-frontend | Created: 2024-03-15
Location: /task-orchestration/03_15_2024/auth_system/tasks/in_progress/
TASK-004: Add OAuth2 authentication
Status: todos | Priority: high | Blocked by: TASK-001
Location: /task-orchestration/03_15_2024/auth_system/tasks/todos/
TASK-007: Authentication middleware tests
Status: todos | Type: test | Depends on: TASK-001
Location: /task-orchestration/03_15_2024/auth_system/tasks/todos/
/task-find TASK-001 --detailed
Shows full task content including description, implementation notes, and history.
/task-find --tree --root TASK-001
Shows task and all its dependencies in tree format.
/task-find --orchestration "03_15_2024/payment_system"
/task-find --orchestration "*/auth_*"
/task-find --has-dependencies
/task-find --no-dependencies
/task-find --blocking-others
/task-find --effort ">4h"
/task-find --depends-on TASK-001
/task-find --blocks TASK-005
/task-find --related-to TASK-003
/task-find --circular-deps
/task-find --orphaned
/task-find --duplicates
/task-find --stale --days 7
/task-find --ready
Shows todos with no blocking dependencies.
/task-find --critical-path
Shows tasks on the critical path.
/task-find --high-impact
Shows tasks blocking multiple others.
/task-find "auth" --copy
Copies results to clipboard.
/task-find --status todos --export paths
Exports file paths for batch operations.
/task-find --report
Creates detailed search report.
/task-find --status todos --suitable-for dev-frontend --ready
/task-find --status on_hold --show-blockers
/task-find "security OR auth OR permission" --type "feature,bugfix"
/task-find --status todos --effort "<4h" --no-dependencies
/task-find --recent 10
/task-find --mine # Uses current agent context
/task-find --modified today
/task-find '(title:"auth" OR description:"security") AND status:todos AND -blocks:*'
/task-find --save "security-todos"
/task-find --load "security-todos"
--cache for repeated searches--limit 20 for large result sets/task-find "payment" --status todos | /task-move in_progress
/task-find --filter "priority:low" | /task-update priority:medium