debug-workflowlisted
Install: claude install-skill synaptiai/agent-capability-standard
## Intent
Run the composed workflow **debug-workflow** using atomic capability skills to systematically debug code changes with full safety and audit capabilities.
**Success criteria:**
- Every step output is grounded with evidence anchors
- Safety gates are respected (checkpoint before any mutation)
- All issues are traced to root cause with supporting evidence
- Final result includes complete audit trail
- Rollback pathway documented and verified
**Compatible schemas:**
- `reference/workflow_catalog.yaml`
## Inputs
| Parameter | Required | Type | Description |
|-----------|----------|------|-------------|
| `goal` | Yes | string | The debugging objective (e.g., "identify why tests fail after refactor") |
| `scope` | Yes | string\|array | Files, directories, or components to investigate |
| `constraints` | No | object | Hard limits (e.g., time budget, files to exclude, severity threshold) |
| `prior_context` | No | object | Previous debugging attempts or known information |
## Procedure
0) **Create checkpoint marker** if mutation might occur:
- Create `.claude/checkpoint.ok` after confirming rollback strategy
1) **Invoke `/inspect`** and store output as `inspect_out`
- Examine the scope for symptoms, error patterns, recent changes
2) **Invoke `/search`** and store output as `search_out`
- Find related code, error messages, similar patterns
3) **Invoke `/map-relationships`** and store output as `map-relationships_out`
- Map dependencies, call graphs, dat