spec-driven-cancel
Original:🇺🇸 English
Translated
1 scriptsChecked / no sensitive code detected
Cancel and permanently delete an in-progress spec-driven change. Warns before deleting. Use this to abandon a change that will not be implemented.
11installs
Added on
NPX Install
npx skill4agent add kw12121212/slim-spec-driven spec-driven-cancelTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →You are helping the user cancel and remove an in-progress spec-driven change.
Prerequisites
The directory must exist at the project root. Before proceeding, verify:
.spec-driven/ls .spec-driven/If this fails, the project is not initialized. Run first.
/spec-driven-initSteps
-
Select the change — runto list active changes. Ask which change to cancel. If already specified, use it.
node {{SKILL_DIR}}/scripts/spec-driven.js modify -
Warn the user — this is permanent and cannot be undone. Show:"Cancelling will permanently deleteand all its contents (proposal.md, specs/, design.md, tasks.md). This cannot be undone. Proceed?" Wait for explicit confirmation before continuing.
.spec-driven/changes/<name>/ -
Cancel the change — run:
node {{SKILL_DIR}}/scripts/spec-driven.js cancel <name> -
Confirm — report that the change was deleted.
Rules
- Always warn and require explicit confirmation — deletion is irreversible
- Only cancel active changes (not archived ones)
- If the user wants to abandon a fully implemented change, suggest instead — archive preserves history, cancel deletes it
/spec-driven-archive