
harness-toolkit
Steers Cursor and Claude Code agents with gates → follow-up → handoff → policy.
Install with your AI
Paste into Claude Code, Cursor, or any agent — it reads the repo and wires the tool into your project.
Install and set up harness-toolkit (npm project) into my current project. Found on https://claudeers.com/harness-toolkit Repo: https://github.com/tech-leads-club/harness-toolkit Homepage/docs: — Detected install method: npm → npm install @tech-leads-club/harness-toolkit Category: devtools. Platforms: cli, api. Read the repo's README for exact setup and env vars, then install it and wire it into my project. Claudeers Health Verdict: unknown; community-verified: false. Confirm the source before running anything.
npm install @tech-leads-club/harness-toolkit
git clone https://github.com/tech-leads-club/harness-toolkit
// compatibility
| Platforms | cli, api |
|---|---|
| Operating systems | — |
| AI compatibility | claude |
| License | NOASSERTION |
| Pricing | open-source |
| Language | TypeScript |
🛡️ Harness Toolkit
Steers Cursor and Claude Code agents with gates → follow-up → handoff → policy
Hooks fire on the editor's own events. The harness answers each one with a decision — allow, ask, deny, or text injected into the turn — and writes a record of what it decided and why. 7 floor rules no configuration can reach, 3 always-on checks, and 23 rails you choose.
- Everything it validates — the whole list, one row per check
- How to see any of it — the command behind each row
- How to explain a decision — from a message on screen back to the rule
Start here
npm i -g @tech-leads-club/harness-toolkit && tlc harness install
Then restart Cursor or Claude Code. That is the whole setup — install finds which of the two you
have and wires only those, and the harness works in every repository right away with a safe baseline.
To give one project its own rules, open it and say "setup harness" to the agent, or run
tlc harness init --minimal. To check anything, run tlc harness doctor.
Everything it validates
Three tiers, and which tier a check is in decides whether you can turn it off.
| Tier | Count | Configurable | Runs |
|---|---|---|---|
| Floor | 7 rules | Never | Before any policy is loaded, on every tool call, shell command and read |
| Always on | 3 checks | Never | After the floor, on every acting event |
| Rails | 23 capabilities | Each one, individually | Where the table says |
Nothing else runs. If a message on your screen is not from one of the thirty-three rows below, it is not the harness.
Tier 1 — the floor, no configuration reaches it
Evaluated before the policy file is read, so no setting and no edit by an agent can clear one. Every denial
prints rule=<name>, and the name is the first column here.
| Rule | Denies | Allowed anyway |
|---|---|---|
outside-project-destruction | a destructive command whose target resolves outside the repository and outside the OS temp directory | the same command inside the repository, or inside the temp directory |
unprovable-destruction | a destructive verb whose target is a variable, a command substitution, or otherwise built at runtime — the harness cannot see what it would delete | a literal path it can resolve and check |
secret-access | a read that would copy a credential into the transcript — .env, ~/.ssh, ~/.aws, *.pem and similar through a shell reader or the editor's own read tool, and the instance metadata service through any verb that speaks to the network | searching local files for the literal address, because grep and its kin make no request |
history-rewrite | git push --force | --force-with-lease, which refuses on its own when the remote moved |
machine-control | shutdown, reboot, halt, poweroff | — |
unprovable-execution | a program fetched over the network and handed to a shell — piped, process-substituted, or inside a shell's -c/eval substitution. The gate cannot read what would run | a fetch with no shell downstream, and a shell fed a local file the gate can read |
policy-surface-write | every route an agent has to harness policy and state — a shell redirect, an interpreter, a heredoc program, or a write tool — in the project and under the runtime home, plus the mutating tlc harness subcommands from inside a session | reading them with a proven reader (cat, head, grep, jq, ls, stat, test), and tlc harness handoff for the handoff state |
Policy changes are the operator's, from a terminal outside the agent session:
tlc harness gate test-command node --test 'src/**/__test__/*.test.ts'
tlc harness gate lint-command npx biome check .
Tier 2 — always on, no switch
Not floor rules, and equally unconfigurable — each one detects a condition that a config field could otherwise switch off.
| Check | Fires on | Verdict | What it checks | How to see it |
|---|---|---|---|---|
policy-baseline-divergence | every acting event | deny | Every policy source is hashed at session start. If one changes mid-session with no tlc harness command behind it, the next acting call is refused and the path named. Reads still pass, so the agent can investigate and report | tlc harness policy lists what changed; tlc harness policy accept <path> clears it |
policy-surface-write (tool half) | tool.before | deny | An agent write to policy or state through Write, Edit, Delete, MultiEdit or NotebookEdit — the same paths the floor's shell half covers | tlc harness obs report — refusals by rule |
edit-collision | tool.before | ask | Another live session in the same working tree touched this file recently | tlc harness status lists the live sessions |
Tier 3 — the rails you choose
All 23 are off unless the default column says on, and each was presented with its benefit and its
trade-off when you ran the init wizard. configPath is the key in .tlc/harness/config.json.
| Rail · key · default | What it checks | Fires on | Verdict | How to see it |
|---|---|---|---|---|
Grind (lint/test on stop)grind.enabled · off | Runs your lint and test commands against the files the turn changed, and sends the agent back until they pass. | stop | follow-up | tlc harness obs report — runs, wall-clock and total; the last verdict is in the project state directory as last-gate.json |
Ship gateshipGate.enabled · off | Checks a declared ship claim against recent PASS evidence for the runtime paths the turn touched. | stop | block-stop | tlc harness obs report; the ship ledger in the project state directory records every claim, challenge and pass |
Empty-diff anti-shipshipGate.emptyDiffAntiShip · off | Checks that a ship claim has a non-empty diff behind it. | stop | block-stop | the ship ledger in the project state directory — the challenge row names the empty diff |
Comment gate (agent-added comments)comments.enabled · off | Checks the comment lines this turn added against the commit the turn started from: by reason, by resolvability, or none. | stop | block-stop | tlc harness obs report — the comments gate appears among the gate outcomes |
Duplication gate (agent-added copies)duplication.enabled · off | Checks whether the runs of code this turn added already exist somewhere else in the project. | stop | block-stop | tlc harness obs report — the duplication gate appears among the gate outcomes |
Supply-chain gate (dependencies this turn added)supplyChain.enabled · off | Checks what this turn added to the dependency graph: a manifest that moved without its lock, or an unpinned version. | stop | block-stop | tlc harness obs report — the supply-chain gate appears among the gate outcomes |
Subagent allowlistsubagents.enforceAllowlist · off | Checks a subagent's model against the list you wrote, and against the blocked *-fast shapes. | tool.beforesubagent.start | deny | tlc harness obs report — refusals attributed by rule; the denial text names subagents.allowedModels and lists what is permitted |
Block parent Fast mode for Task spawnssubagents.blockParentFast · off | Checks whether the parent chat is in Fast mode before letting it spawn a subagent. | tool.beforesubagent.start | deny | tlc harness obs report — refusals by rule; tlc harness status shows the sticky parent model it read |
Shell stall detectionshell.stallDetection · off | Counts identical shell commands in a row and stops the loop at your threshold. | shell.before | deny | tlc harness obs report — interruptions attributed to the shell-stall rule |
Catastrophic shell askshell.catastrophicAsk · on | Checks a shell command for destruction that reaches outside the workspace. | shell.before | ask | tlc harness obs report — interruptions attributed to the shell-catastrophic rule |
Lessonsintelligence.lessons.enabled · off | Records what a repeated gate failure taught, ranks it, and injects it into the next session and retry. | session.startstopsession.end | context | tlc harness lessons list — every tier with staleness and effectiveness; obs report shows the characters each injection cost |
Budget continueintelligence.budgetContinue · off | Checks for unfinished handoff work under context pressure and says keep going rather than wrap up. | stop | follow-up | tlc harness handoff — the follow-up fires only with unfinished work recorded there |
Gap feedbackintelligence.gapFeedback · on | Turns a gate's output into a numbered list of gaps the retry has to close. | stop | follow-up | tlc harness handoff — the gaps it injects are the ones stored as previous_gaps |
Failure classificationintelligence.failureClassification · on | Labels each gate failure with a category and stores it on the handoff. | stop | record | tlc harness handoff — last_failure_category |
Progressive handoffintelligence.progressiveHandoff · on | Reads the gaps the previous session ended with back out at the next session's start. | session.start | context | tlc harness handoff — the gaps it reads back out are previous_gaps |
Progressive contextintelligence.progressiveContext · on | Raises the detail in the follow-up on each stop retry, so a repeat attempt is not given the same prompt. | stop | follow-up | tlc harness obs report — the retry count for a stop is the escalation level it reached |
Autopilotintelligence.autopilot · on | Emits ordered steps after a gate failure, computed by the runtime rather than invented by the model. | stop | follow-up | the AUTOPILOT block is in the follow-up text itself; obs report counts the failing stops that produced one |
Idle-turn gate (asked instead of acting)intelligence.idleTurnGate · off | Checks whether a turn that ended with open work recorded any tool call or file change at all. | stop | block-stop | tlc harness obs report for the block; tlc harness handoff shows the open work that armed it |
Docs staleness gatedocs.command · off | Runs the repository's own documentation staleness tool on stop, like a lint command. | stop | block-stop | tlc harness obs report; the docs gate writes the same last-gate.json artifact the lint and test gates do |
Global observability spoolobs.globalSpool · off | Copies every record into one file under the runtime home, so cost is readable across repositories. | tool.aftertool.failure | record | the spool file under the runtime home; tlc harness obs prune reports how many records it dropped |
Untrusted-content framing and enforcementuntrustedContent.enabled · off | Frames outside content as data, and in enforce mode asks before a command that appears verbatim in it. | tool.after | context | tlc harness obs report — one framing injection per turn, with the characters it cost |
Plan gate (declared scope vs diff)planGate.enabled · off | Checks the files the turn changed against the scope it declared, and against any stated deviation. | response.afterstop | block-stop | tlc harness handoff — plan_paths, plan_at and plan_deviations |
Observation mode (measure a rail with its rule off)observe.enabled · off | Runs a rail's checker while that rail is not enforcing, and records the reading without acting on it. | stopsession.end | record | tlc harness obs report — the observation readings, held apart from the refusal counters so those stay honest |
The two tables above are generated from capabilities/catalog.json and
src/core/floor/floor.catalog.ts. tlc harness test fails when they drift, so a rail that exists and is
not listed here is a build failure rather than a documentation gap.
Each rail's full benefit and trade-off — the long form, as the init wizard reads them out — is in
docs/architecture.md and docs/concepts.md.
One thing is not in any table: operator posture. tlc harness mode paired|solo|focus changes how much
the agent surfaces and what earns an interruption. It switches no gate on and weakens no verification —
the evidence bar is identical at all three (docs/decisions/ad-025.md).
How to see any of it
Every row above names a command in its last column. These are those commands.
| Command | Answers |
|---|---|
tlc harness status | Which posture, which rails are on, which sessions are live, whether policy diverged |
tlc harness doctor | Whether the install is healthy, and every rail that is off or misconfigured — including a rail switched on with nothing to enforce |
tlc harness obs report | Per session: gate outcomes, refusals attributed by rule, interruptions by rule, characters injected, cost |
tlc harness obs live | The same signal as it happens |
tlc harness handoff | What the turn left open: gaps, blockers, next action, plan scope, failure category |
tlc harness lessons list | Every lesson in all three tiers, with staleness, validity and whether it ever helped |
tlc harness why [n] | The last n decisions this tool made, with the rule behind each — and a plain sentence when it made none |
tlc harness attest | One hash-chained record per session: policy in force, rails active, refusals by rule, gate outcomes |
tlc harness policy | Which policy source changed mid-session, changing nothing |
--json on any of them | The same content, machine-readable |
All of these read. None of them changes a decision.
How to explain a decision
Start with tlc harness why — the last ten decisions this tool made, each with the rule behind it. When the
harness did nothing, it says that in words, which is the answer no other command gives. Full guide:
docs/troubleshooting.md.
You saw a message and want to know which rule produced it.
- The message names its rule. A floor denial ends in
rule=<name>— look it up in tier 1. A rail's block names the gate. tlc harness obs reportattributes every refusal and interruption in the session to a rule, so "seven interruptions" becomes "six from the posture, one from the catastrophic rule".tlc harness attestis the same thing for a reviewer: which policy the session ran under, whether it changed mid-session, and every gate outcome, hash-chained so a removed record is detectable.tlc harness doctorexplains the absence of a decision — a rail you expected to fire and did not is usually one that is off, or on with nothing configured to enforce.
Two limits worth stating. The harness records the decisions it made; it never learns your answer to an
ask, so it reports a rate and its attribution, never a precision or an accuracy. And the attestation is
chained, not signed: it detects a rewritten record and proves nothing about authorship.
What it covers, and what it does not
docs/coverage.md assesses the harness against a published agentic-risk taxonomy — four risks covered, five partial, one not applicable — and states what each row leaves open. It is a self-assessment, and the control names in it are generated from the same catalogs this README's tables come from, so a rail that is renamed or removed fails the build rather than leaving a claim standing.
Providers
Both providers share one runtime, one project policy file, and one on-disk state directory. Core steering
logic never imports a provider adapter and never branches on a provider's name — see
docs/architecture.md and docs/providers/index.md.
| Provider | Detected by | User-level wiring | Docs |
|---|---|---|---|
| Cursor | CURSOR_CONFIG_DIR, else ~/.cursor | <resolved>/hooks.json (replaced) | docs/providers/cursor.md |
| Claude Code | CLAUDE_CONFIG_DIR, else ~/.claude | <resolved>/settings.json hooks block (merged) | docs/providers/claude-code.md |
The installer and tlc harness init detect which of these are present and wire only those — neither
assumes Cursor.
A rail fires only where the provider can express it. ask on an event a provider cannot ask about becomes
deny, and injected context on an event a provider ignores is withheld rather than rendered into a field
nothing reads — src/providers/provider.degrade.ts.
Requirements
| Dependency | Notes |
|---|---|
| Bun or Node.js 24+ | Either one is enough. Bun runs every hook directly (~1 ms/hook); Node runs the shipped bundles (~27 ms/hook). With neither, the install stops and names both fixes |
| npm | Delivers the package, and generates the tlc shim for the platform it runs on |
Linux, macOS and Windows, same commands and same code path. CI runs the full suite and the bundle build on all
three on every push; hooks firing inside an editor session on Windows are outside that coverage
(docs/decisions/ad-006.md, docs/decisions/ad-097.md).
Install
One command, the same on every platform.
npm i -g @tech-leads-club/harness-toolkit && tlc harness install
The package is the delivery vehicle and tlc harness install is what puts the runtime in place. They are
separate because a directory npm replaces wholesale cannot hold state — config.json, state/ and flags/
would be deleted by an ordinary update (docs/decisions/ad-056.md).
Install target: ~/.tlc/harness (runtime). The init skill is linked into the skills directory of
each provider it finds, because a provider only reads its own.
tlc harness install:
- Materialises the runtime at
~/.tlc/harnessfrom the installed package - Creates
config.jsonfromconfig.example.jsonwhen missing - Adds
tlcto~/.local/bin - Links the init skill into each detected provider's
skills/harness-init - Wires user-level hooks for every provider it detects installed, in that provider's resolved config directory
Update with tlc harness update, which bumps the package and re-materialises the runtime.
Overrides: TLC_HOME, TLC_REPO_URL, TLC_BIN_DIR.
Provider config directories are resolved, not assumed: CLAUDE_CONFIG_DIR and CURSOR_CONFIG_DIR are
honoured when set, so a relocated config is wired correctly. tlc harness doctor prints the resolved
target for each provider.
Uninstall
tlc harness uninstall # print the plan; change nothing
tlc harness uninstall --yes # apply exactly that plan
tlc harness uninstall --purge --yes # and delete config.json, state/ and flags/ too
The plan is the confirmation — there is no prompt, so it works the same in CI and in a shell that is already broken. What it does, and what it deliberately does not:
settings.json | un-merged, never deleted. Every key and every hook that is not ours stays exactly where it is |
hooks.json | deleted when every entry was ours, rewritten when it holds somebody else's |
the tlc link and the skill links | removed |
the runtime payload at ~/.tlc/harness | removed — unless it is a symlink to a checkout, which is unlinked and never followed |
config.json, state/, flags/ | kept, unless you add --purge |
| the global npm package | reported with the exact command, never run for you |
.tlc/ inside your repositories | reported, never hunted for |
Running it twice is safe: the second run reports nothing to undo and exits 0.
An agent cannot run this for you. ~/.tlc/harness/state is a policy surface and the runtime home is
outside any project, so the floor answers a delegated uninstall with policy-surface-write or
outside-project-destruction. That is deliberate — the supervised does not switch off the supervisor.
Restart or reload the provider session after install.
From a git clone — that is a contributor install, and it is described in
CONTRIBUTING.md. Update never writes into a clone.
Update
tlc harness update
Moves the runtime to upstream, refreshes CLI + init skill + provider wiring, then runs doctor. Reload/restart the provider session afterward if hooks or the init skill should refresh.
The runtime path is an artifact the harness owns, and update never touches anything else (AD-046):
tlc harness doctor says | What update writes |
|---|---|
installed from npm | bumps the package to @latest and re-materialises the runtime. No git command runs |
managed checkout | moves it to upstream with a hard reset. Do not develop there — a local change is discarded |
link to a working clone | nothing in the clone. That is a contributor install; you pull it yourself |
The bundles are rebuilt only when one is missing, and only Bun builds them — a second bundler emits different bytes for the same source.
If update aborts on dist/, install the package again. A stuck install cannot deliver its own fix — the fix
lives in the revision update has to fetch — so npm i -g @tech-leads-club/harness-toolkit@latest followed by
tlc harness install is the recovery route, because the registry serves it independently of what is installed. It
leaves config.json, state/ and any linked clone untouched (AD-048). There is no --force.
After a successful pull, prints a short digest of optional catalog capabilities this project has not
enabled yet (benefit + trade-off + how to enable). Nothing is auto-enabled — use the harness-init skill or
edit .tlc/harness/config.json.
tlc harness doctor emits non-blocking WARN: lines for the same off/missing opt-ins (and for default-on
features you explicitly set to false).
Quick start
tlc harness doctor
tlc harness help
tlc harness status
Healthy install checklist:
- Bun on PATH, or Node 24+ for the
dist/fallback path ~/.tlc/harnesspresent withdist/*.mjs- At least one provider's user-level hooks invoke
tlc-exec tlcon PATH (open a new shell if needed)
How it works
graph LR
EV["provider event<br/><i>Cursor or Claude Code hook</i>"]
HK["user-level hook file"]
LX["bin/tlc-exec.mjs <handler><br/><i>Bun first, Node + dist fallback</i>"]
EP["src/entrypoints/<handler>.ts<br/><i>core + resolved adapter</i>"]
OUT["follow-up · handoff · observability<br/><i>under project policy</i>"]
EV --> HK --> LX --> EP --> OUT
| Layer | Location |
|---|---|
| Runtime | ~/.tlc/harness |
| Cursor user hooks | <cursor config>/hooks.json |
| Claude Code user hooks | <claude config>/settings.json (hooks block) |
| Project policy | <repo>/.tlc/harness/config.json |
| Project shim (per provider) | <repo>/.cursor/hooks.json, <repo>/.claude/settings.json |
Entrypoint: bin/tlc-exec.mjs.
Wrappers: bin/tlc and bin/tlc.cmd, kept for installs made before the package existed. Everything else
spawns bin/tlc-exec.mjs with the interpreter already running.
See tlc harness help architecture or docs/architecture.md.
Commands
| Command | Purpose |
|---|---|
tlc harness status | Mode, grind, gates |
--json on any read command | Machine-readable output: status, doctor, obs, lessons, prices lookup |
tlc harness update | Pull runtime + refresh skill/CLI/wiring + doctor |
tlc harness doctor | Health checklist |
tlc harness help [topic] | Docs |
tlc harness build | Compile dist/ for the Node fallback path |
tlc harness test | Run the full local gate |
tlc harness grind [on|off] | Lint/test follow-ups on stop |
tlc harness pause / resume | Disable / enable stop checks |
tlc harness mode solo|paired|focus | Operator posture |
tlc harness attest | Tamper-evident record of what each session ran under |
tlc harness handoff | Handoff state between turns and sessions — the sanctioned reader |
tlc harness obs live / obs report | Signal / session rollup |
tlc harness prices refresh / lookup | The machine's price catalogue |
tlc harness lessons list | Lessons across the three tiers, with staleness and effectiveness |
tlc harness lessons add "…" [--ref path:symbol] [--global] [--pin] | Write a lesson; --ref retires it when that stops resolving, --pin puts it ahead of ranking |
tlc harness policy / policy accept <path> | List a mid-session policy change; accept exactly those paths |
tlc harness init --minimal | Project stub |
Connect a project
- Open the repository in Cursor and/or Claude Code.
- Run
tlc harness init --minimal, or ask the agent to run the harness-init skill. - Confirm
.tlc/harness/config.jsonand the shim hooks for whichever provider(s) you use. - Run
tlc harness doctorfrom the project root.
Details: tlc harness help init or docs/init.md.
Paths and shared state
Both providers read and write the same project state — there is one .tlc/harness/state/, not one per
provider. Records inside it (signal, debug, audit) carry a provider field per event.
| Path | Contents |
|---|---|
~/.tlc/harness | Runtime |
~/.tlc/harness/state/lessons.json | Global lesson tier — this machine, every product (AD-040) |
<cursor config>/hooks.json | Cursor user hooks (if Cursor installed) |
<claude config>/settings.json | Claude Code user hooks, hooks block (if Claude Code installed) |
<provider config>/skills/harness-init | Init skill, linked per detected provider from runtime skills/harness-init |
<repo>/.tlc/harness/config.json | Project policy (tracked) |
<repo>/.tlc/harness/state/ | Handoff, obs, audit, project-tier lessons.json, ship ledger (gitignored) |
Do not use ~/.tlc/harness for anything other than the installed runtime — see
docs/decisions/ad-002.md for why the layout is namespaced this way.
Ship claims
Protocol line (free-form "done/shipped" is ignored):
HARNESS_SHIP_CLAIM: <one-line summary>
When shipGate is enabled and runtime paths changed, cite recent PASS under evidenceDir.
See tlc harness help concepts or docs/concepts.md.
The plan gate uses the same shape for scope:
HARNESS_PLAN: src/core/plan/**, src/entrypoints/stop.ts
HARNESS_PLAN_DEVIATION: src/x.ts — the call site moved with the type
Both are protocol lines on purpose. A gate that fires on free-English "done" fires on the word, not the claim.
Prices
tlc harness prices refresh
tlc harness prices refresh cursor
tlc harness prices lookup <model-id> [provider]
Catalogue: ~/.tlc/harness/model-prices.json, one plane per billing origin. Overrides:
model-prices.local.json. Neither is versioned. install fetches once, update refreshes past a 7-day TTL,
doctor reports the age.
See tlc harness help prices or docs/measure.md.
Troubleshooting
| Symptom | Action |
|---|---|
tlc: command not found | New shell; ensure ~/.local/bin on PATH; re-run install |
| Hooks never fire | Reload/restart the provider session; check the provider's own hook log; confirm tlc-exec |
Missing dist/ | tlc harness build |
Cost null | tlc harness help prices |
| Project doctor FAILs | Expected until project policy exists |
| A rail you enabled never fires | tlc harness doctor — a rail switched on with nothing configured to enforce is reported as a fault |
| Every tool call is refused after you edited the config | tlc harness policy then tlc harness policy accept <path> |
See tlc harness help diagnose or docs/diagnose.md.
Documentation
Full OKF v0.1 documentation bundle: docs/index.md.
Contributing
License
PolyForm Noncommercial 1.0.0 — LICENSE, NOTICE.
| Allowed | Requires separate license |
|---|---|
| Noncommercial use, change, distribute with attribution | Commercial use |
Keep Required Notice + license terms | Dropping attribution |
// faq
What is harness-toolkit?
Steers Cursor and Claude Code agents with gates → follow-up → handoff → policy.. It is open-source on GitHub.
Is harness-toolkit free to use?
harness-toolkit is open-source under the NOASSERTION license, so it is free to use.
What category does harness-toolkit belong to?
harness-toolkit is listed under devtools in the Claudeers registry of Claude-compatible tools.
// embed badge
[](https://claudeers.com/harness-toolkit)
// retro hit counter
[](https://claudeers.com/harness-toolkit)
// reviews
// guestbook
// related in Developer Tools
The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Curs…
Use Garry Tan's exact Claude Code setup: 23 opinionated tools that serve as CEO, Designer, Eng Manager, Release Manager, Doc Engineer, and QA
AI coding assistant skill (Claude Code, Codex, OpenCode, Cursor, Gemini CLI, and more). Turn any folder of code, SQL schemas, R scripts, shell scripts, docs,…
Makes your AI agent think like the laziest senior dev in the room. The best code is the code you never wrote.