By Lewdwig-V
Spec-driven development harness for Claude Code -- 20 commands, five-phase model, five agents, three-tier domain skills, crystallize, constitutional principles. TypeScript orchestration via prunejuice MCP server.
Merge file specs into a unit spec (spec granularity consolidation)
Run the adversarial quality pipeline on a managed file. Extracts behaviour, generates black-box tests, and validates via mutation.
Record a change request for a managed file
Check cross-spec coherence across related specs, including blocked-by constraint tracking
Grow test coverage on a managed file or unit using mutation-driven discovery
Adversarial Quality framework — three-agent pipeline (Archaeologist → Mason → Saboteur) for mutation-gated test generation
Use when generating, reviewing, or promoting concrete specs — the implementation strategy layer between abstract specs (intent) and generated code. Activates during Stage B.1 of generation, during /unslop:harden --promote, and during takeover raising.
Use when generating or regenerating code from unslop spec files. Activates during /unslop:generate, /unslop:sync, and the generation step of /unslop:takeover.
Use when writing, drafting, reviewing, or editing unslop spec files (*.spec.md). Activates for spec creation, takeover spec drafting, and spec editing guidance.
Use when running the unslop takeover pipeline to bring existing code under spec management. Covers discovery, spec drafting, archiving, generation, and the convergence validation loop.
Modifies files
Hook triggers on file write and edit operations
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
The spec is the source of truth. Generated code is a disposable artifact.
unslop is a Claude Code plugin for intent-first development -- a workflow where you maintain spec files describing what code should do, and the system maintains the code. Edit the spec, regenerate, run tests. The generated code is updated by an agent on every cycle; the only way to change a managed file's behaviour is to change its spec.
The name started as a joke about rescuing vibe-coded prototypes. It stuck because the workflow works just as well for greenfield projects -- and because "unslop your codebase" is a satisfying thing to say.
/plugin marketplace add obra/superpowers-marketplace
/plugin install superpowers@superpowers-marketplace
/plugin marketplace add Lewdwig-V/unslop
/plugin install unslop@unslop
/unslop:init
/unslop:elicit src/retry.py # Socratic dialogue to build the spec
/unslop:generate # tests-then-implementation from spec
/unslop:takeover src/retry.py # single file
/unslop:takeover src/auth/ # entire module
/unslop:takeover src/**/*.py # glob pattern
Reads the code, infers a spec via distill, refines it via elicit, archives the originals, and regenerates fresh code from specs alone. For directories and globs, unslop discovers files, resolves their dependency order, and offers per-file or per-unit spec granularity.
/unslop:change src/retry.py "add circuit breaker with 5-failure threshold"
Records the intent, opens a Socratic dialogue to amend the spec, then regenerates. For quick fixes:
/unslop:change src/retry.py "fix null check on empty response" --tactical
unslop is a Claude Code plugin that ships two coordinated pieces:
The plugin is the user-facing command layer. Prunejuice is the coordination mechanism -- commands invoke prunejuice via MCP tools to avoid reimplementing orchestration logic in markdown prompts.
unslop decomposes development into five independent phases. Each can be run standalone or composed by orchestrators.
| Phase | Command | What it does |
|---|---|---|
| Distill | /unslop:distill | Infer spec from existing code |
| Elicit | /unslop:elicit | Create/amend spec via Socratic dialogue |
| Generate | /unslop:generate | Tests-then-implementation from spec |
| Cover | /unslop:cover | Find and fill gaps in test coverage |
| Weed | /unslop:weed | Detect intent drift between spec and code |
Three orchestrators compose these phases into workflows:
In most projects, code is the ground truth and documentation is the afterthought. unslop inverts this: the spec is the durable artifact, and the code is derived from it.
This is enforced structurally, not by convention. The code generator is physically blocked from seeing your conversation history, your change requests, or the original code (except during takeover). It receives only the spec. If the spec is insufficient, the tests fail -- and the failing test tells you exactly what the spec is missing.
The practical consequence: code review happens at the spec level. Diffs are spec diffs. The generated code is an output of the review process, not an input to it.
src/
retry.py # managed file -- do not edit directly
retry.py.spec.md # per-file spec -- edit this
retry_test.py # human-owned tests -- the acceptance gate
auth/
__init__.py # managed
tokens.py # managed
middleware.py # managed
auth.unit.spec.md # unit spec -- one spec for the whole module
Per-file specs (*.spec.md) manage a single file. Unit specs (*.unit.spec.md) manage a group of tightly coupled files as a single logical unit -- one spec, multiple outputs. Dependencies between specs are declared in frontmatter and resolved transitively.
Specs describe intent, not implementation. If your spec reads like commented-out code, it's over-specified.
npx claudepluginhub lewdwig-v/unslop --plugin unslopSPEC-First development workflow with TDD, Ralph Loop, and autonomous agent coordination for Claude Code
Cavekit — compressed spec-driven dev. Full loop (grill → spec → research → review → build) over one SPEC.md file: three core commands + four reach-for. Caveman encoding. Bug-to-spec backprop.
Spec-driven development plugin for Claude Code. Markdown specs as the source of truth, code downstream.
Specification-Driven Development with Process Discipline for Claude Code
Spec-driven development using GitHub spec-kit methodology. Constitution-first approach with specify, plan, tasks, and implement phases.
Skills-first specification-driven development framework with 7 agent skills for planning, implementation, review, and shipping. Natural language activation with intelligent agent orchestration. Includes /plan, /implement, /research commands plus managing-specifications, implementing-features, and reviewing-and-shipping skills.