kw12121212/slim-spec-driven · Archived

spec-driven-cancel

Cancel and permanently delete an in-progress spec-driven change. Warns before deleting. Use this to abandon a change that will not be implemented.

First seen Mar 23, 2026

Installation

$ npx skills add kw12121212/slim-spec-driven --skill spec-driven-cancel

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from kw12121212/slim-spec-driven · top by installs.

npx skills add kw12121212/slim-spec-driven

Browse all from kw12121212/slim-spec-driven

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch main
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
More metadata
skill_id
spec_driven_cancel
author
auto-spec-driven
type
agent_skill
version
1.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,802 B
  • docs SUMMARY.md 172 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 14 installs

SKILL.md

You are helping the user cancel and remove an in-progress spec-driven change.

This Skill's Commands

If you cannot remember the exact command used by this skill, look it up here before running anything. Do not guess.

modify: node {{SKILL_DIR}}/scripts/spec-driven.js modify
cancel: node {{SKILL_DIR}}/scripts/spec-driven.js cancel <name>

Prerequisites

The .spec-driven/ directory must exist at the project root. Before proceeding, verify:

ls .spec-driven/

If this fails, the project is not initialized. Run /spec-driven-init first.

Steps

  1. Select the change — run node {{SKILL_DIR}}/scripts/spec-driven.js modify to list active changes. Ask which change to cancel. If already specified, use it.
  1. Warn the user — this is permanent and cannot be undone. Show:

> "Cancelling will permanently delete .spec-driven/changes/<name>/ and all its contents (proposal.md, specs/, design.md, tasks.md, questions.md). This cannot be undone. Proceed?" Wait for explicit confirmation before continuing.

  1. Cancel the change — run:

`` node {{SKILL_DIR}}/scripts/spec-driven.js cancel <name> ``

  1. 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 /spec-driven-archive instead — archive preserves history, cancel deletes it