Cure Wounds
Apply a targeted fix to stop the bleeding on an active problem.
Overview
Cure Wounds is interpreted here as a metaphorical spell with a shipping-now execution model.
Canonical source: Cure Wounds (spell)
Provider target: OpenClaw
When To Use
- Active breakage: crashes, errors, failures, outages, data loss, blocked users
- Urgency markers: "right now", "immediately", "production down", "losing money", "users can't", "team blocked"
- Time-sensitive impact: revenue loss, customer complaints, SLA breach, on-call pages
- Recent-change correlation: "after the deploy", "since the update", "broke 10 minutes ago"
- Minimum-intervention request: "stop the bleeding", "quick fix", "get it working", "restore function"
Workflow
- Identify the symptom: What exactly is failing? What error, crash, or outage is happening?
- Diagnose the proximate cause: What changed or failed to produce this breakage? Check recent deploys, config changes, or environmental shifts.
- Apply the minimum fix: The smallest change that restores function. Rollback, patch, restart, or reconfigure — whatever stops the bleeding with least risk.
- Verify and document: Confirm the fix works. Note what caused the breakage and whether root-cause analysis is still needed.
Deliverables
- The fix: the specific change that stops the bleeding.
- A brief note on what caused the breakage and whether deeper investigation is needed.
Guardrails
- Cure Wounds is triage, not treatment. Always flag whether deeper investigation is needed after the fix.
- Preserve evidence: the minimum fix must not make the underlying problem harder to diagnose.
- If the fix requires significant redesign or architectural change, this is the wrong spell.
- Do not use for: Planned work: migrations, refactors, feature development, schema redesigns
- Do not use for: Long-term degradation: "slowly getting worse", "needs comprehensive plan", "technical debt"
- Do not use for: Presentation/formatting: reformatting logs, cleaning output, improving readability
- Do not use for: Trivial typos: single-character corrections in config (use basic editing, not triage)
- Do not use for: Communication only: "send a message", "notify the team", "update status"
- Do not use for: Feature flag state issues: configuration toggles without active breakage
- Do not use for: Root-cause analysis requests: "why did this happen", "investigate the underlying issue"
Default Invocation
Use $cure-wounds to diagnose and fix this [broken build/failing service/production issue] with the minimum change needed to restore function.
1---2name: cure-wounds3description: Cure Wounds is the hotfix spell: immediate triage to stop bleeding and restore function. It is NOT root-cause analysis, refactoring, redesign, or long-term remediation. The goal is the minimum viable fix that stops the damage NOW. Deeper investigation comes after.4---56# Cure Wounds78Apply a targeted fix to stop the bleeding on an active problem.910## Overview1112Cure Wounds is interpreted here as a metaphorical spell with a shipping-now execution model.1314Canonical source: Cure Wounds (spell)1516Provider target: OpenClaw1718## When To Use1920- Active breakage: crashes, errors, failures, outages, data loss, blocked users21- Urgency markers: "right now", "immediately", "production down", "losing money", "users can't", "team blocked"22- Time-sensitive impact: revenue loss, customer complaints, SLA breach, on-call pages23- Recent-change correlation: "after the deploy", "since the update", "broke 10 minutes ago"24- Minimum-intervention request: "stop the bleeding", "quick fix", "get it working", "restore function"2526## Workflow27281. Identify the symptom: What exactly is failing? What error, crash, or outage is happening?292. Diagnose the proximate cause: What changed or failed to produce this breakage? Check recent deploys, config changes, or environmental shifts.303. Apply the minimum fix: The smallest change that restores function. Rollback, patch, restart, or reconfigure — whatever stops the bleeding with least risk.314. Verify and document: Confirm the fix works. Note what caused the breakage and whether root-cause analysis is still needed.3233## Deliverables3435- The fix: the specific change that stops the bleeding.36- A brief note on what caused the breakage and whether deeper investigation is needed.3738## Guardrails3940- Cure Wounds is triage, not treatment. Always flag whether deeper investigation is needed after the fix.41- Preserve evidence: the minimum fix must not make the underlying problem harder to diagnose.42- If the fix requires significant redesign or architectural change, this is the wrong spell.43- Do not use for: Planned work: migrations, refactors, feature development, schema redesigns44- Do not use for: Long-term degradation: "slowly getting worse", "needs comprehensive plan", "technical debt"45- Do not use for: Presentation/formatting: reformatting logs, cleaning output, improving readability46- Do not use for: Trivial typos: single-character corrections in config (use basic editing, not triage)47- Do not use for: Communication only: "send a message", "notify the team", "update status"48- Do not use for: Feature flag state issues: configuration toggles without active breakage49- Do not use for: Root-cause analysis requests: "why did this happen", "investigate the underlying issue"5051## Default Invocation5253Use $cure-wounds to diagnose and fix this [broken build/failing service/production issue] with the minimum change needed to restore function.54