spae-fix

Remediates pre-classified task gaps from FIX.md using test-driven minimal changes.

1|Updated May 12, 2026
One-click install
npx skills add https://github.com/mystilleef/spae-framework --skill spae-fix-mystilleef
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: spae-fix
Source: https://github.com/mystilleef/spae-framework/tree/main/skills/spae-fix
Command: npx skills add https://github.com/mystilleef/spae-framework --skill spae-fix-mystilleef

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? When a verification pass flags gaps in an in-progress task, teams need a disciplined way to close exactly those gaps without scope creep, plan edits, or accidental task completion. This Skill remediates only the named gaps in FIX.md and returns the workstream to the check phase. ## Core Features & Use Cases - Gap-scoped remediation: Reads FIX.md and STATE.json, then closes only the listed gaps through test-first changes, never touching PLAN.md, SPEC.md, or forward tasks. - State-safe transitions: On success it deletes FIX.md and sets phase back to check while keeping the active task in_progress; on failure it halts without writing state. - Self-cleanup enforcement: Audits the task's own git diff against a cleanup checklist to remove debug output, dead code, and orphan files before finishing. - Use Case: After /check flags three failing edge cases in task T-002, invoke this Skill to write failing tests, implement minimal fixes, verify all checks pass, and hand the task back to /check. ## Quick Start Run the fix phase to close the gaps listed in FIX.md for the active task and return the workstream to the check phase.

Frequently Asked Questions about spae-fix

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fix gaps found by the SPAE check phase?▼

Invoke the fix phase after /check writes FIX.md and sets phase to fix. The Skill reads the named gaps, writes a failing test for each, applies the minimal change, and returns the workstream to /check once all gaps pass.

What is the SPAE framework workflow?▼

SPAE is a seven-phase agent workflow: spec, plan, inspect, build, check, fix, verify. State persists in STATE.json and artifact files so any agent harness can resume work at any phase without conversational memory.

Can the fix phase modify PLAN.md or SPEC.md?▼

No. The fix phase never reads or edits PLAN.md or SPEC.md. It scopes every change solely to the gaps listed in FIX.md and never expands remediation to forward tasks or observations.

What happens if gap remediation fails in the fix phase?▼

On failure the Skill makes no STATE.json write, leaves FIX.md untouched, and halts with a failure report. It never marks the task done, moves the cursor, or claims gap closure.

Does the fix phase mark tasks as done after closing gaps?▼

No. After successful remediation it deletes FIX.md and sets phase to check while keeping the active task in_progress. Only the check phase can mark a task done.