Find
Commands orchestration 159
npx claude-code-templates@latest --command orchestration/find Content
Task Find Command
Search and locate tasks across all orchestrations using various criteria.
Usage
/task-find [search-term] [options]Description
Powerful search functionality to quickly locate tasks by ID, content, status, dependencies, or any other criteria. Supports regex, fuzzy matching, and complex queries.
Basic Search
By Task ID
/task-find TASK-001
/task-find TASK-*By Title/Content
/task-find "authentication"
/task-find "payment processing"By Status
/task-find --status in_progress
/task-find --status qa,completedAdvanced Search
Regular Expression
/task-find --regex "JWT|OAuth"
/task-find --regex "TASK-0[0-9]{2}"Fuzzy Search
/task-find --fuzzy "autentication" # finds "authentication"
/task-find --fuzzy "paymnt" # finds "payment"Multiple Criteria
/task-find --status todos --priority high --type feature
/task-find --agent dev-backend --created-after yesterdaySearch Operators
Boolean Operators
/task-find "auth AND login"
/task-find "payment OR billing"
/task-find "security NOT test"Field-Specific Search
/task-find title:"user authentication"
/task-find description:"security vulnerability"
/task-find agent:dev-frontend
/task-find blocks:TASK-001Date Ranges
/task-find --created "2024-03-10..2024-03-15"
/task-find --modified "last 3 days"
/task-find --completed "this week"Output Formats
Default List View
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/Detailed View
/task-find TASK-001 --detailedShows full task content including description, implementation notes, and history.
Tree View
/task-find --tree --root TASK-001Shows task and all its dependencies in tree format.
Filtering Options
By Orchestration
/task-find --orchestration "03_15_2024/payment_system"
/task-find --orchestration "*/auth_*"By Properties
/task-find --has-dependencies
/task-find --no-dependencies
/task-find --blocking-others
/task-find --effort ">4h"By Relationships
/task-find --depends-on TASK-001
/task-find --blocks TASK-005
/task-find --related-to TASK-003Special Searches
Find Circular Dependencies
/task-find --circular-depsFind Orphaned Tasks
/task-find --orphanedFind Duplicate Tasks
/task-find --duplicatesFind Stale Tasks
/task-find --stale --days 7Quick Filters
Ready to Start
/task-find --readyShows todos with no blocking dependencies.
Critical Path
/task-find --critical-pathShows tasks on the critical path.
High Impact
/task-find --high-impactShows tasks blocking multiple others.
Export Options
Copy Results
/task-find "auth" --copyCopies results to clipboard.
Export Paths
/task-find --status todos --export pathsExports file paths for batch operations.
Generate Report
/task-find --reportCreates detailed search report.
Examples
Example 1: Find Work for Agent
/task-find --status todos --suitable-for dev-frontend --readyExample 2: Find Blocking Issues
/task-find --status on_hold --show-blockersExample 3: Security Audit
/task-find "security OR auth OR permission" --type "feature,bugfix"Example 4: Sprint Planning
/task-find --status todos --effort "<4h" --no-dependenciesSearch Shortcuts
Recent Tasks
/task-find --recent 10My Tasks
/task-find --mine # Uses current agent contextModified Today
/task-find --modified todayComplex Queries
Compound Search
/task-find '(title:"auth" OR description:"security") AND status:todos AND -blocks:*'Saved Searches
/task-find --save "security-todos"
/task-find --load "security-todos"Performance Tips
- Use Indexes: Status and ID searches are fastest
- Narrow Scope: Specify orchestration when possible
- Cache Results: Use
--cachefor repeated searches - Limit Results: Use
--limit 20for large result sets
Integration
With Other Commands
/task-find "payment" --status todos | /task-move in_progressBatch Operations
/task-find --filter "priority:low" | /task-update priority:mediumNotes
- Searches across all task files in task-orchestration/
- Case-insensitive by default (use --case for case-sensitive)
- Results sorted by relevance unless specified otherwise
- Supports command chaining with pipe operator
- Search index updated automatically on file changes