boundary-bbcr-fallback
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Search and locate tasks across all orchestrations using various criteria.
$ npx -y skills add qdhenry/Claude-Command-Suite --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/findContext preview
What this command does when you run it.
Search and locate tasks across all orchestrations using various criteria.
Search 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"
1. **Use Indexes**: Status and ID searches are fastest 2. **Narrow Scope**: Specify orchestration when possible 3. **Cache Results**: Use `--cache` for repeated searches 4. **Limit Results**: Use `--limit 20` for large result sets
/task-find "payment" --status todos | /task-move in_progress
/task-find --filter "priority:low" | /task-update priority:medium
A comprehensive development toolkit designed following Anthropic's Claude Code Best Practices for AI-assisted software development.
Repo: qdhenry/Claude-Command-Suite
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Analyze semantic position relative to knowledge boundaries to prevent hallucination and identify uncertainty zones.
Generate a visual heatmap of knowledge boundaries showing safe zones, risk areas, and semantic coverage.
Evaluate the current risk level and provide detailed analysis of potential hallucination or reasoning failure.
Find and construct semantic bridges to safely navigate from current position to target concept without crossing dangerous boundaries.
Takes an input prompt and returns ONLY a token-optimized version that preserves meaning while minimizing token count. Based on LLM tokenization principles:…