Spec 1.0: This page reflects the current stable portable core release.Spec Led Development is language-agnostic. The tooling is not. That is an important distinction. The method should stay portable across languages. The commands and package names will vary by stack.
The method comes first
The core ideas do not depend on one runtime:- current truth in the repo
- a small authored model
- derived verification state
- a repeatable drift check
Elixir package
specled_ex is the current most complete implementation of the 1.0 portable core.
Its command story is intentionally simple:
mix spec.primefor session-start contextmix spec.init,mix spec.next, andmix spec.checkfor the default local loopmix spec.statusandmix spec.decision.newwhen you need coverage or durable ADR supportmix spec.indexandmix spec.validateas lower-level plumbing
specled_ex has the simplest beginner loop:
- run
mix spec.prime --base HEADwhen you enter the repo or hand work to an agent - make the change and tighten the smallest proof
- run
mix spec.next - update the subject or ADR if needed
- run
mix spec.check --base HEAD
TypeScript package
specled is the JavaScript and TypeScript implementation track.
The goal is the same portable workspace and verification model for JS and TS repos.
It is earlier in maturity than the Elixir package.
That means the method is already language-agnostic, while the tooling maturity is still catching up across implementations.
CI support
The project also includes shared GitHub Actions support so repositories can run the same verification loop in CI that they run locally. That matters because Spec Led Development is not just a local authoring habit. It is supposed to create lasting back pressure when code changes without the matching intent and verification changes.Project repos
If you want the actual project repos, start here:If your stack is not fully supported yet
You can still adopt the method. The portable core is small enough that a repo can start with:.spec/specs/*.spec.md.spec/state.json- one local verification command
Choosing a path
If you are evaluating the project today:- use the Elixir package if you want the most complete current workflow
- treat the TypeScript package as the matching implementation direction
- keep the site-level method docs language-agnostic so the model stays portable