Six months from now, on a Tuesday, you will be behind on a deadline. The agent's diff will look fine at a skim, the tests will be green, and every discipline this course taught will present itself as optional ceremony standing between you and shipping. That moment is what this lesson is for. Skills fade when they live in your intentions; they survive when they live in a doctrine you can recite, audit against, and defend to yourself under pressure.
The doctrine
Seven statements. Each one is a compressed lesson, and each one earns its place because you watched the failure it prevents happen in a lab.
1. Spec before dispatch. Ambiguity does not get resolved by the agent; it gets executed by the agent, faithfully and confidently (1.4, 3.1). The five-section dispatch (GOAL, IN SCOPE, OUT OF SCOPE, DON'T TOUCH, VERIFICATION) is not paperwork. It is the difference between delegating a task and delegating a guess. If you cannot write the GOAL as an outcome, you are not ready to dispatch it.
2. Context is a consumable. Every token in the window competes for a finite attention budget, and recall degrades as the window fills: context rot, gradually, then noticeably (1.3). You budget context the way you budget money. Durable rules live on disk, where compaction cannot eat them. Task instructions live in the prompt, where mortality is fine. Bulk reference lives in files, fetched just in time. One task, one session, clear aggressively.
3. Verify or don't ship. The agent's "done" starts your review; it never ends it (0.1). Verification is defined before the work starts and runs independently of the process that did the work. Green tests written by the same run that wrote the code are the agent grading its own homework (3.2). If nothing you defined stands between the output and production, what you are doing has a name, and the name is vibe coding.
4. Deterministic guardrails over instructions. An instruction changes the probability of behavior; a hook changes the possibility of it (2.6). Anything that must never happen (committing failing code, touching test files, reading secrets) gets enforced by machinery that fails closed, not by bolder text in CLAUDE.md. Prompt rules are Layer 2. They sit on top of hard boundaries; they never substitute for them (3.8).
5. Rigor is a dial you set consciously. Stakes, reversibility, verifiability: compute the tier out loud before you start, and set the dial from the highest of the three (3.10). Tier-3 casualness on a billing migration and tier-3 ceremony on a scratch script are the same mistake, misallocated attention. And prototype to production is a rewrite, not a promotion. The prototype was the spec.
6. Review the diff, own the output. Four questions in strict order: does it match the spec, is it lying to you, is it sound, is it consistent (3.4). Test diffs before implementation diffs, always. Depth follows blast radius, not line count. Nobody typed that code; somebody still owns it, and it is you. That was the first thing this course said, and it is still true at 3,000 lines a day.
7. Autonomy is graduated by evals, never granted. A worker earns wider permissions the way an employee does: a body of verified evidence, accumulated over runs, checked by machinery independent of the worker (3.7, 5.8). Confidence is not evidence. Time in service is not evidence. An eval suite green over weeks of production runs plus a human acceptance rate you measured, that is evidence. The autonomy dial only moves on it.
Notice what the seven have in common. None of them is about the model. Models will change under you, several times a year. Every statement above is about the system around the model: what it can see, what it can touch, what checks its work, and who answers for the result. That is why the doctrine transfers.
The self-audit
You have two capstone rubrics and a harness. Together they are an audit surface for your actual practice, not your intended practice, and the audit is worth running quarterly, not once.
Checkpoint 4 asked whether your SaaS could prove its claims live: tenant isolation demonstrated by a cross-tenant query returning zero rows, the billing lifecycle surviving replay and forgery, background jobs surviving retry and stale recovery, CI actually blocking, a runbook a stranger could operate from (4.10). Checkpoint 5 asked whether your Agent OS could survive contact with a hostile input and a curious client: enforced tool scopes, an approval surface, an audit log with at least one denied entry, a scorecard with real numbers, an injection caught and contained (5.8). The 3.9 harness asked whether your own working memory survives a session boundary: goal-tree, STATUS, handoff, verification registry, roles, runbook.
The audit question for each item is not "did I build this once." It is "does this still hold on the current state of the repo, and could I demonstrate it in the next ten minutes." Rubric items rot the same way context does: quietly, then all at once, usually discovered during an incident.
Staying current
This course froze a moving target. Every fact in it was verified against live docs at build time, July 2026, because the tools change monthly and training data is always stale. That discipline now transfers to you, and it is cheap: two URLs and a reading habit.
The docs map at code.claude.com/docs/en/claude_code_docs_map is a single fetchable index of every documentation page. When you need a fact, you fetch the page, or you have the agent fetch it, exactly as 2.2's CLAUDE.md rule taught. You never answer a tooling question from memory, yours or the model's.
The changelog in the anthropics/claude-code repo is the other half. Read it like an operator, not a fan. Three kinds of lines matter, in this order:
- Changed defaults and renames. A release that renames the default permission mode or changes whether a confirmation dialog auto-continues has changed your harness's assumptions while you slept. These lines are one sentence long and worth more than any feature announcement.
- Removals and deprecations. Anything your hooks, skills, or scripts depend on. The course watched a slash command become a skill and an interactive wizard disappear during its own build; your automation is one removal away from silently not running.
- New capabilities, last. Genuinely useful, never urgent. A feature you adopt a month late costs you a month of convenience. A changed default you miss can cost you an incident.
Where it breaks
Doctrine decays in two directions. The first is abandonment under pressure, the Tuesday problem from the cold open. The countermeasure is that most of the doctrine is installed, not remembered: hooks block what must never happen whether or not you are tired, gates run in CI whether or not you are behind, and the dispatch template sits in a skill so the discipline costs one command instead of an act of will. Willpower is a terrible enforcement mechanism, which is exactly why the course kept moving rules out of your head and into the harness.
The second decay is ossification: treating the specific flags, file names, and version numbers this course taught as the doctrine. They are not. The seven statements are the doctrine; everything else is the July 2026 implementation of it. When a release note moves the ground, the operator who updates their harness and keeps the doctrine wins; the operator who defends the stale implementation joins the people still teaching last year's flags.
Lablab-6-1The graduation audit
Goal: Run the full self-audit against both capstone rubrics and your harness, then install the staying-current habit as a recurring artifact.
Prereqs: your Track A and Track B capstone repos (or whichever you completed), your 3.9 harness install, one hour of honest attention.
- Re-open Checkpoint 4's rubric in lesson 4.10. For each item, do not recall whether you passed it; re-demonstrate it against the current state of the repo. Record pass or rot per item in a new
doctrine-audit.mdin your harness repo. - Re-open Checkpoint 5's rubric in lesson 5.8 and do the same. If you built only one capstone, audit that one and write one sentence on which un-built rubric items your work would fail today.
- Audit the harness itself: open your goal-tree, STATUS, handoff, and verification registry from 3.9. Check staleness dates. A handoff that no longer describes reality is context poisoning you will inflict on a future session.
- For each of the seven doctrine statements, write one line in
doctrine-audit.md: the last time your practice violated it, and what caught the violation (a hook, a gate, a review, or nothing). - Install the currency habit: save today's docs map to
docs-map-2026-07.mdin your harness repo, note the changelog version you read up to, and create a monthly calendar entry pointing at a five-line runbook you write now (fetch map, diff, skim changelog, update CLAUDE.md and hooks, commit).
Verify
doctrine-audit.mdexists, committed, with a pass-or-rot verdict for every rubric item you audited and a violation line for all seven doctrine statements.- At least one rubric item came back "rot" (if all pass on a months-old repo, you audited your memory, not your system; go back and actually run the demonstrations).
- The docs-map snapshot and the monthly runbook are committed, and the calendar entry exists.
>Troubleshooting
- A capstone rubric item fails and the fix is large. Do not fix it inside the audit. Log it as a scoped dispatch in your STATUS open questions, exactly as 3.9's rhythm prescribes. The audit's job is an honest map, not a repair.
- You cannot re-demonstrate an item because credentials or deploys lapsed. That is itself a finding: your runbook has a broken dependency a stranger would hit too. Record it as rot.
- The changelog is overwhelming. Read only for the three line-kinds in this lesson, newest release down to your last-read version, and stop. You are scanning for moved ground, not studying.
What you can now be paid to do
Concretely, and stated without motivation: you can take a product from idea to deployed, multi-tenant, billing-enabled SaaS with an agent doing the typing and you owning correctness. You can walk into a business, map its processes, and build the agent layer that runs the repetitive ones, with oversight a client will actually trust and a scorecard that proves the value in hours and error rates. You can operate either one for money, because you can demonstrate the thing most people selling AI services cannot: verification, security posture, and honest measurement. The market is full of people who can make a demo work. It is short on people who can say what their system will not do, prove what it does, and catch it lying. That second group is the one that gets paid on retainer, and you have the artifacts to show you belong in it.
Final knowledge check
Fifteen-plus questions spanning the course, weighted toward Parts 1 and 3, because failure mechanics and discipline are the parts that transfer to every future tool.
Knowledge check
That is the course. You hold a doctrine you can recite, two capstones that prove it, a harness that enforces it, and a fifteen-minute monthly habit that keeps it current. Go get paid.
Sources
- Claude Code documentation map: https://code.claude.com/docs/en/claude_code_docs_map (fetched July 2026)
- Claude Code changelog: https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md (fetched July 2026)