boundary-bbcr-fallback
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Safely remove a task from the orchestration system, updating all references and dependencies.
$ npx -y skills add qdhenry/Claude-Command-Suite --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/removeContext preview
What this command does when you run it.
Safely remove a task from the orchestration system, updating all references and dependencies.
Safely remove a task from the orchestration system, updating all references and dependencies.
/orchestration/remove TASK-ID [options]
Removes a task completely from the orchestration system, handling all dependencies, references, and related documentation. Provides impact analysis before removal and ensures system consistency.
/orchestration/remove TASK-003
Shows impact analysis and confirms before removal.
/orchestration/remove TASK-003 --force
Skips confirmation (use with caution).
/orchestration/remove TASK-003 --dry-run
Shows what would be affected without making changes.
Before removal, the system analyzes:
Task Removal Impact Analysis: TASK-003 ====================================== Task Details: - Title: JWT token validation - Status: in_progress - Location: /tasks/in_progress/TASK-003-jwt-validation.md Dependencies: - Blocks: TASK-005 (User profile API) - Blocks: TASK-007 (Session management) - Depends on: None References Found: - MASTER-COORDINATION.md: Line 45 (Wave 1 tasks) - EXECUTION-TRACKER.md: Active task count - TASK-005: Lists TASK-003 as dependency - TASK-007: Lists TASK-003 as dependency Git History: - 2 commits reference this task - Branch: feature/jwt-auth Warning: This task has downstream dependencies! Proceed with removal? [y/N]
Updating dependent tasks: - TASK-005: Removing dependency on TASK-003 New status: Ready to start (no blockers) - TASK-007: Removing dependency on TASK-003 Warning: Still blocked by TASK-009
# TASK-STATUS-TRACKER.yaml updates:
status_history:
TASK-003: [REMOVED - archived to .removed/]
current_status_summary:
in_progress: [TASK-003 removed from list]
removal_log:
- task_id: TASK-003
removed_at: "2024-03-15T16:00:00Z"
removed_by: "user"
reason: "Requirement changed"
final_status: "in_progress"Updates applied: ✓ MASTER-COORDINATION.md - Removed from Wave 1 ✓ EXECUTION-TRACKER.md - Updated task counts ✓ TASK-DEPENDENCIES.yaml - Removed all references ✓ Dependency graph regenerated
/orchestration/remove TASK-003 --archive
Moves to `.removed/` directory instead of deleting.
/orchestration/remove TASK-003,TASK-005,TASK-008
Analyzes and removes multiple tasks in dependency order.
/orchestration/remove --pattern "oauth-*"
Removes all tasks matching pattern.
/orchestration/remove TASK-003 --cascade
Also removes tasks that depend on this task.
Warning: TASK-003 has associated commits: - abc123: "feat(auth): implement JWT validation" - def456: "test(auth): add JWT tests" Options: [1] Keep commits, remove task only [2] Add removal note to commit messages [3] Cancel removal
Warning: TASK-003 is in 'completed' status This usually means work was done. Consider: [1] Archive task instead of removing [2] Document why it's being removed [3] Check if commits should be reverted
ERROR: TASK-003 is on the critical path! Removing this task will impact project timeline: - Current completion: 5 days - After removal: 7 days (due to replanning) Override with --force-critical
/orchestration/remove TASK-003
/orchestration/remove TASK-003 --hard
/orchestration/remove TASK-003 --replace-with TASK-015
/orchestration/remove --undo-last
Restores the most recently removed task.
/orchestration/remove --restore TASK-003
Restores archived task with all references.
/orchestration/remove TASK-008 --reason "Feature descoped" Removing TASK-008: OAuth provider integration - No dependencies - No commits yet - Safe to remove Task removed successfully.
/orchestration/remove TASK-012 --replace-with TASK-005 Removing duplicate: TASK-012 Transferring to: TASK-005 - Dependencies transferred: 2 - References updated: 4 Duplicate removed, TASK-005 updated.
/orchestration/remove TASK-003,TASK-004,TASK-005 --reason "Auth system redesigned" Removing authentication task group: - 3 tasks to remove - 2 have commits (will archive) - 5 dependent tasks need updates Proceed? [y/N]
All removals are logged:
# .orchestration-audit.yaml
removals:
- task_id: TASK-003
removed_at: "2024-03-15T16:00:00Z"
removed_by: "user-id"
reason: "Requirement changed"
status_at_removal: "in_progress"
dependencies_affected: ["TASK-005", "TASK-007"]
commits_preserved: ["abc123", "def456"]
archived_to: ".removed/2024-03-15/TASK-003/"1. **Always Check Dependencies**: Review impact before removing 2. **Document Reason**: Provide clear removal reason 3. **Archive Important Work**: Use --archive for completed work 4. **Update Team**: Notify about critical removals 5. **Review Commits**: Check if code needs reverting
# First check status /orchestration/status --task TASK-003 # Then remove if needed /orchestration/remove TASK-003
# Fi
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:…