Building the Machine · Graduation
What you'll be able to do: answer the one question every safety system owes you — how do I know it actually works, before I trust it with anything real? You'll take any repo with a CI gate and prove three things in one sitting: the alarm catches bad work, the lock blocks bad work from publishing, and a repair can flow back through the same gate. Begin with the end in mind: you will deliberately break your own project, watch the machine refuse it, and watch it heal.
A commercial kitchen installs a health-inspection station at the pass: no plate reaches the dining room without the expeditor's check. The kill test is the day the head chef deliberately sends out a bad plate — undercooked, on purpose, labeled — to prove three things: the expeditor catches it (the alarm), the plate physically cannot reach the dining room (the lock), and a corrected plate flows back through the same pass without special treatment (the repair).
Where the analogy ends: the expeditor is human and can be sweet-talked,
tired, or bribed. CI cannot. That's the whole point of the chassis: the judge is deterministic
— it doesn't care who cooked the plate, who asks nicely, or whether you own the restaurant
(enforce_admins means even the chef-owner gets refused). Also: a real bad plate is
wasted; a kill-test branch costs nothing — its net change is zero and it merges or closes
cleanly.
-math.pi/2 + deflect to - deflect in a small game of mine, in the ball physics, the exact bug that once shipped. Commit with an honest message: "kill test: deliberately broken." Push, open the PR. You should see: the PR opens normally — nothing stops a proposal.Three separable guarantees, often confused: the alarm (CI turns red on bad
work), the lock (the platform refuses to merge red — server-side branch
protection with the required check being the JOB name from the workflow,
enforce_admins: true), and the repair channel (a fix flows through
the same branch → PR → CI → merge path as any other change; no side door for
emergencies). Why a deliberate break instead of waiting for a real one: you control the
blast radius, you know the correct answer in advance so you can grade the repair, and the
branch's net change is zero. Why the repair must be blind: the future automated mesh
will hand its architect nothing but logs and files — if a human relay with only mechanical
context works, the machine relay will too. The kill test is the PROVING primitive pointed at your
own safety system.
Pass each gate before moving on. These are permission to advance, not hazing. Confirm first:
CI runs on your PRs and you've seen it green at least once; branch protection is ON for the
default branch (check with gh api repos/OWNER/REPO/branches/BRANCH/protection — a
JSON wall, not a 404); your invariant tests exist and pass; you know the one-line merge command
and the one-line revert.
Lesson complete — you can now prove, not assume, that a truth machine catches, blocks, and survives bad work; every automation you build on top of it inherits that proof.
This module IS the graduation build for the Chassis tier. From scratch, in one session, no guidance: take any repo with tests, stand up the gate (Modules 1–5), then run this kill test on it. Completion criteria:
enforce_admins on, and you watched it refuse YOU.