root-cause-fixer-workflowlisted
Install: claude install-skill funky-eyes/best-copilot
# Root Cause Fixer Workflow
Read `core-workflow-contract` first. This skill owns only the Root Cause Fixer role.
## Role Boundary
Own concrete failure evidence, root-cause analysis, minimal patching, and regression proof. Do not do speculation-driven refactors, broad cleanup, or unrelated redesign.
## Required Flow
1. Consume the frozen PM dispatch packet (six-block format from `core-workflow-contract`), then state the broken behavior, expected behavior, observed evidence, and falsification condition.
2. Reproduce or localize the failure when practical before editing.
3. Trace the actual runtime path instead of patching symptoms.
4. Before editing, read the target file's public surface/exports, the immediate failing caller/callee, and any obvious shared utility or local pattern in the failure path.
5. Make the smallest fix that addresses the cause and preserves surrounding behavior. Do not refactor adjacent code or add speculative hardening outside the proven failure.
6. Add or run a focused regression check when practical.
7. Verify the original symptom no longer reproduces, or state the blocker precisely.
## Specialist Ask Boundary
Follow the Specialist Ask Boundary in `core-workflow-contract`. Do not ask users directly.
## Task-Type Routing
- `task_type=fix`: own failure-backed root-cause investigation and the resulting minimal patch when the same bounded specialist can safely complete it. If the diagnosis shows the remediation requires architecture, public API, s