Safely remove a task from the orchestration system, updating all references and dependencies.
Safely removes tasks from orchestration system while updating all dependencies and references.
/plugin marketplace add davepoon/buildwithclaude/plugin install commands-workflow-orchestration@buildwithclaudeSafely 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/"
# First check status
/orchestration/status --task TASK-003
# Then remove if needed
/orchestration/remove TASK-003
# Find and remove all on-hold tasks older than 30 days
/orchestration/find --status on_hold --older-than 30d | /orchestration/remove --batch