Constraint-Driven Development
Overview
Other skills in this pack describe what good looks like.
gives you five axes.
gives you a cycle.
gives you a threat list. All of that lives in prose the agent reads and may or may not follow, and none of it survives the end of the session.
This skill produces something different: a written record of this project's bar, with numbers, that outlives the conversation and can be checked mechanically.
The reason matters. When you wrote the code, reading it told you whether it was any good. An agent writes more in an afternoon than you will read that week, so the judgement moves out of your head and into checks that run around the loop. Those checks need to exist, they need numbers you actually chose, and they need to fire close enough to the work that the agent fixes its own output.
Spec-driven development says what to build. Test-driven development proves it works. Constraint-driven development defines what "good enough to ship" means, before anyone argues about it in a pull request.
When to Use
Apply this skill when:
- Starting a project or a significant feature and no quality bar is written down
- The user asks to "set up constraints", "add quality gates", "define our standards", or "stop the agent shipping junk"
- An agent is producing volume nobody is reading line by line
- CI has checks but nobody can say which ones block a merge and which ones are decoration
- Coverage, performance, or accessibility numbers get argued about per-PR instead of decided once
- You're about to run or any autonomous loop, and the only thing standing between it and main is a test suite the agent also wrote
When NOT to use:
- The project already has a and the user isn't changing it — read it and follow it instead
- One-off scripts, spikes, throwaway prototypes
- The user wants a code review right now () or a CI pipeline built ()
- Pre-product-market-fit code with a two-week expected lifetime — the floor below is still worth it, the rest isn't
Loading Constraints
The interview needs a live user.
Don't run it in non-interactive contexts (CI,
, autonomous runs). If constraints are missing and you're in one of those, apply the Floor below, note that you did, and flag the rest for a human.
The Process
Step 1: Detect before you ask
Never ask what you can read. Before the first question, gather:
| What | Where to look |
|---|
| Language and stack | , , , |
| Test runner | dev dependencies, script, existing test files |
| Existing linters | , , |
| Coverage today | output, or run the suite once |
| CI | , |
| Agent harness | , , |
Report what you found in two lines, then ask only what's left.
Step 2: Four questions, each with a default
Follow the one-question-at-a-time discipline from
, with one change: every question here has a default, so "I don't know" is a complete answer that still produces a working config.
Q1: Beyond the floor, which of these do you want enforced?
(a) Test coverage on new code
(b) Security scanning
(c) Performance budgets
(d) Accessibility
(e) Architecture boundaries
GUESS: (a) and (b) — you have a test runner already and you're handling user input.
DEFAULT if unsure: (a) and (b).
Say what each pick costs: (c) and (d) need a running URL, (e) needs a rules file written.
Q2: When a check fails while the agent is mid-task, should it block or warn?
GUESS: Block. You're running agents unattended and a warning nobody reads is a warning.
DEFAULT if unsure: Block on the floor, warn on everything else for the first two weeks.
Q3: Do you have target numbers in mind, or should I measure where you are today and hold that line?
GUESS: Measure. Most teams don't have a number, and an invented one gets ignored.
DEFAULT if unsure: Measure and hold. See "Ratchets" below.
Q4: What's the slowest check you'll tolerate before the agent hands work back?
GUESS: About 90 seconds. Longer and you'll stop running it.
DEFAULT if unsure: 90 seconds at task end, unlimited in CI.
Stop at four. A twelve-question intake produces a config nobody understands and a user who regrets starting.
Step 3: Write CONSTRAINTS.md
One file at the repo root. Any agent on any harness can read it, and a change to it shows up in review where it belongs.
markdown
# Constraints
Last reviewed: 2026-08-08 by @addy
## Floor (always enforced, no setup required)
- No new suppression comments: `@ts-ignore`, `eslint-disable`, `# noqa`, `# type: ignore`
- No unimplemented stubs: `throw new Error("Not implemented")`, empty `catch {}`
- No skipped or deleted tests without a reason in the commit message
- No secrets in source
- This file does not get weakened to make a change pass
## Enforced with numbers
|-----------|------|-----------|---------|
| Types | Zero type errors | `tsc --noEmit` | every edit |
| Lint | Zero errors from our config | `biome check` | every edit |
| Secrets | No secrets in source | `gitleaks detect --redact` | every edit |
| Coverage | Changed lines ≥ 80% covered | `vitest run --coverage` + git diff | task end, CI |
| Security: code | No high findings | `semgrep scan --config p/default` | CI |
| Security: deps | Nothing at high or above | `osv-scanner scan source -r .` | CI |
| Accessibility | Zero critical or serious | `axe $PREVIEW_URL --tags wcag2a,wcag2aa,wcag21aa` | preview deploy |
| Performance | LCP ≤ 2500ms, CLS ≤ 0.1 | `lighthouse $PREVIEW_URL --output=json` | preview deploy |
Every row names the command that produces the verdict. A dimension with a
number and no command in this column is an aspiration, not a constraint.
## Measured, not yet enforced
|--------|-------|-----------|
| Project coverage | 62.4% | must not fall |
| Bundle size (main) | 184 kB | must not grow |
## Exceptions
|----|------|------|--------|-------|---------|
| W1 | `no-explicit-any` | `src/legacy/**` | Rewrite tracked in ENG-441 | @addy | 2026-11-01 |
Then add one line to
and
:
Read CONSTRAINTS.md before writing code. Do not weaken it to make a change pass.
Step 4: Install what each dimension needs
Picking a dimension means installing something. Don't leave the user with a number and no mechanism, and don't invent your own checker when a de facto one exists — these tools are listed because their rule formats and thresholds are what everything else in the ecosystem targets, so the team's existing config keeps working.
| Dimension | Tool | Install | Run | Gate on |
|---|
| Types (TS) | tsc | already there | | any error |
| Types (Python) | mypy | | | any error |
| Lint | your existing config | already there | / / | any error |
| Coverage (JS) | your test runner | already there | (or ) | coverage of changed lines |
| Coverage (Python) | pytest-cov | | pytest --cov --cov-report=lcov
| same |
| Security: code | Semgrep | | semgrep scan --config p/default --config p/owasp-top-ten
| any high finding |
| Security: secrets | gitleaks | | gitleaks detect --redact --no-banner
| any finding |
| Security: dependencies | osv-scanner | | osv-scanner scan source -r .
| high or above |
| Performance: page | Lighthouse | | lighthouse $URL --output=json --quiet
| LCP, CLS, performance score |
| Performance: bundle | size-limit | | | per-entry byte budget |
| Accessibility | axe-core | | axe $URL --tags wcag2a,wcag2aa,wcag21aa
| zero critical or serious |
| Architecture | dependency-cruiser | npm i -D dependency-cruiser
| | any violation |
| Assertion quality | Stryker | npm i -D @stryker-mutator/core
| stryker run --mutate <changed files>
| mutation score |
Five things that will bite you if you skip them:
- on gitleaks is not optional. Without it the matched secret lands in the agent's transcript, which is how a leaked key ends up in a log, a summary, or a commit message. Report the rule and the location, never the value.
- Lighthouse and axe need a URL. They only work against a running app, so they belong in the runtime stage against a preview deploy or a local server you start first. If the project has no URL to hit — a CLI, a library, a desktop app — say so and drop the dimension rather than inventing a check that can't run.
- Scope the expensive ones to the diff. on the whole repo takes hours and gets turned off; on the files a change touched it takes under a minute. Same for Semgrep, which takes a path list.
- Coverage needs no second test run. Read the lcov your suite already writes and intersect it with . Running the suite twice to get a number is the fastest way to make people hate this.
- Semgrep's registry rules are free to run; check the licence before redistributing them. is a drop-in fork with the same rule format and JSON output if that matters to your legal team.
Add each one to the project's own script so it's reproducible without an agent:
json
{
"scripts": {
"check:fast": "tsc --noEmit && eslint . && gitleaks detect --redact --no-banner",
"check:task": "npm run check:fast && vitest run --coverage",
"check:full": "npm run check:task && semgrep scan --config p/default && osv-scanner scan source -r ."
}
}
That mapping matters more than the tools.
is what runs after an edit,
when the agent thinks it's done,
in CI.
The commands now live in two places — the
column in
and these scripts.
is the canonical source: it carries the reason alongside each command and it shows up in review. The scripts are convenience wrappers that must mirror it, not a second source of truth; if they drift, the file wins.
Step 5: Wire it to the lifecycle
The single biggest mistake is running everything everywhere. A check that stalls the agent gets switched off, and a gate people switched off is worse than no gate, because the bar still looks like it exists.
| Phase | Command | What runs | Budget |
|---|
| BUILD | | Types, lint, secrets, the floor | under 5s, changed file only |
| VERIFY | | Related tests, coverage on changed lines | under 90s |
| REVIEW | | Everything, plus the guards below | minutes |
| SHIP | | Direction checks, no regressions | CI |
Two rules that keep this tolerable:
- Scope to the diff. Check the lines this change touched, not the whole repo. Coverage of changed lines is a number the agent can move; project coverage is one it inherited.
- Cost decides placement. Anything over a few seconds moves out of the edit loop. Mutation testing on a whole repo takes hours; on the files a change touched it takes under a minute, which is the difference between a check people run and one they don't.
Step 6: Guard the bar itself
Someone will point out that if the agent writes the code and the checks, the checks prove nothing. Half right, and worth engineering around.
Agents don't craft clever loopholes. They hit a red check and take the cheapest road to green. Watch for these five moves in the diff, at review time:
- The threshold moved. A budget lowered, a severity dropped, a check removed from the fast stage. Compare against its state at the branch point.
- A test got easier. added, a test file deleted, assertions pulled out of tests that stayed.
- A checker got silenced. New or . Four suppressions deserve special attention because they switch off a check you're relying on: drops code from coverage instead of testing it, hides a surviving mutant, and do it for security findings.
- Work is unfinished. A stub that throws, an empty turning a failure into silence, a standing where the implementation should be.
- An exception appeared. A new row in the Exceptions table nobody discussed.
None of this needs tooling beyond
. Tightening the bar should be silent; loosening it should be loud.
Unlike the numbered dimensions, the floor has no de facto tool of its own, so an agent asked to enforce it tends to write a checker from scratch, and two agents write two different ones. A reference implementation of these five checks ships with this skill in
references/floor-guard.md (diff-scoped, exit
/
/
, patterns adaptable per ecosystem). Adapt that rather than reinventing it, for the same reason every dimension names a de facto tool: so the mechanism is the same across runs and stacks.
Not all checks are equally circular. Rank them by one question: can the agent make this pass by writing code that doesn't work?
- External — axe-core encodes WCAG, reads a vulnerability database, Lighthouse measures a real browser. The agent can't argue with these.
- Project — your lint rules, your layer boundaries. A human owns the file.
- Suite — your own tests. Most useful, and the only genuinely circular one.
A bar made entirely of the third kind is worth less than one with an outside opinion in it. Check that at least one external constraint is present.
Step 7: Ratchets, when you don't have a number
Set 80% coverage on a codebase at 62% and you get a red build forever, then a team that learns to ignore red builds.
The alternative asks for no decision: record where you are, then refuse to get worse. Put it in the "Measured, not yet enforced" table with today's number and a direction. Every check compares against the recorded value, not an aspiration. When a number improves, update it; when it drops, that's the finding.
This also answers a fair objection to training. Models are rewarded for passing tests, which you can evaluate in seconds. Architectural rot shows up over months and never reaches the weights. A ratchet is the missing penalty, written down where the build can see it.
Sane Defaults
When the user has no opinion, use these. They're chosen to be met by most codebases on day one.
| Constraint | Default | Why this number |
|---|
| Coverage of changed lines | ≥ 80% | High enough to force a test, low enough to allow a config line |
| Project coverage | today's value, must not fall | No argument needed to adopt |
| Mutation score (if used) | ≥ 60% to start | Typical for a suite never mutated before; 80% is mature |
| Dependency vulnerabilities | nothing at high or above | Below that is mostly noise |
| LCP | ≤ 2500 ms | Core Web Vitals "good" threshold |
| CLS | ≤ 0.1 | Same |
| Accessibility | zero critical or serious axe violations | Moderate and minor are often debatable |
| Exception lifetime | 90 days | Long enough to plan the fix, short enough to remember |
| Ratchet tolerance | 0.5% | Absorbs drift when an unrelated file moves the number |
State the number and the reason together. A threshold without a rationale gets deleted by the next person who hits it.
Escalation Path
Constraints work at three levels of teeth. Start at the first.
- Written only. exists and agents read it. Costs nothing, catches the honest mistakes, relies on the agent complying.
- Scripted. An (or ) that runs the fast checks, wired into your agent's post-edit hook and your CI. Deterministic, no new dependency.
- Tool-backed. A dedicated runner that handles diff scoping, budgets, ratchets, and the guard checks. Use when the config outgrows a shell script. The floor-guard reference in references/floor-guard.md is the starting point for the guard-checks half of this.
Most projects should stop at 2. Move to 3 when you're maintaining more than about thirty lines of check-running shell.
A first run can be floor-only. The floor guard is diff-only and needs no installs, so you can enforce the floor on day one and add numbered dimensions as you install each tool, rather than standing up every checker before the first commit is protected. Security tools that install machine-wide (gitleaks, osv-scanner) can also run CI-only if you'd rather keep laptops clean; declare where each dimension runs in the
column.
Common Rationalizations
| Excuse | Reality |
|---|
| "We'll add constraints once the code settles" | Code settles around whatever was allowed while it was moving |
| "The tests are the constraints" | Tests you wrote prove you agree with yourself; they say nothing about coverage of new code, dependency risk, or bundle growth |
| "We can't hit 80% coverage" | Then don't set 80%. Set today's number and hold it |
| "This will slow the agent down" | Only if you put slow checks in the fast loop. That's a placement error, not an argument against constraints |
| "I'll remember what our standards are" | The agent won't, and it's writing most of the code |
| "Constraints will block us shipping" | An exception with an owner and a date unblocks you. Deleting the constraint unblocks everyone forever |
Red Flags
Stop and reconsider if you notice:
- The interview ran past four questions, or produced a config the user can't explain
- A budget was set that the codebase fails today, with no plan to reach it
- A dimension was written into CONSTRAINTS.md with a number but no tool behind it
- A checker was hand-rolled when a de facto one exists, so the team's existing config is ignored
- Every constraint is checked by the project's own test suite, with no external opinion
- changed in the same commit as the feature that was failing
- An exception has no owner, or an expiry more than a year out
- The agent proposed relaxing a threshold instead of fixing the code
- Slow checks landed in the edit loop and someone has started passing
- Nobody has opened since it was written
Verification
The skill was applied correctly when:
See Also
- — the one-question-at-a-time discipline this skill's intake borrows
- — how to review; this skill decides what the review enforces
- — building the pipeline these constraints run in
- — the suite that coverage and mutation constraints measure
- — what the security dimension should contain
- — where the performance numbers come from