Authoring ironlint checks
An ironlint policy lives in .ironlint.yml at the project root. A check is a file scope plus a shell command (or sequence of steps):
checks:
no-debug:
files: "**/*.ts" # glob, or a list of globs
run: "! grep -n 'DEBUG'" # proposed content arrives on stdin; nonzero = block
files— the glob(s) the check watches. A bare pattern with no/(e.g.*.py) also matches at any depth.run— a shell command handed tosh -c. Any nonzero exit (1–125) blocks the edit; exit 0 passes.126/127/timeout are treated as a broken check, not a block.steps— alternative torun: a sequence of{name?, run}steps, all fed the same stdin. The first nonzero step blocks.on— lifecycle events:[write](default) fires per file on every agent write;[pre-commit]fires once over the selected matching file set (see ABI below). Useon: [write, pre-commit]to fire at both.name— optional human-readable label. Parsed and reserved, but not yet surfaced in block messages orironlint explain— it's a no-op today. (Astepsentry'sname, by contrast, is reported as the block'sstepfield.)
ABI — what every check receives
$IRONLINT_FILE— absolute path of the single file under check (set forwrite; not set forpre-commit).$IRONLINT_FILES— newline-joined list of all selected files (single entry forwrite; the matching file set forpre-commit).$IRONLINT_ROOT— project root (the check's cwd).$IRONLINT_EVENT—writeorpre-commit.$IRONLINT_TMPFILE— write only, set only when yourrunmentions it: an absolute path to a temp file holding the proposed content, placed beside$IRONLINT_FILEwith the same extension and auto-cleaned. Use it for tools that need a real file on disk (Biome, ESLint file-mode,tsc, ruff) instead of stdin. Unset onpre-commit(files are already on disk at$IRONLINT_FILES).$IRONLINT_BIN— absolute path to theironlintbinary running the check, so a check can shell out to it without relying onPATHresolution. Falls back to the bare nameironlintif the path can't be determined.$IRONLINT_PROPOSED_MANIFEST— optional; absolute path to a tab-separated (file_path<TAB>content_path) manifest of sibling proposed files in the same atomic patch. Set by some harness adapters; absent otherwise — don't depend on it.- stdin — proposed post-edit file content (
write) or empty (pre-commit).
Read proposed content from stdin, not from $IRONLINT_FILE. On harnesses that gate before the write lands (e.g. codex, pi), the file on disk still holds the OLD content, so reading it misses the very change you mean to check. Use $IRONLINT_FILE to hand a tool a filename (e.g. a linter's --stdin-filename), never as the content source.
The check runs in a scrubbed environment. The child process inherits only an allowlist — PATH, HOME, LANG, TZ, TMPDIR, and any LC_* — plus the IRONLINT_* vars above. The agent's own credentials (ANTHROPIC_API_KEY, GITHUB_TOKEN, NPM_TOKEN, AWS_*, …) are not inherited. Don't write a check that assumes the parent's ambient credentials; use a file, credential helper, or secrets manager that the check can access explicitly when a tool requires credentials.
On block, the check's combined stdout+stderr becomes the message the agent sees, so make the command print why it blocked.
Top-level config
A minimal .ironlint.yml is just checks:. Two optional top-level keys tune it:
extends:— a list of relative paths to other config files. ironlint resolves them recursively (with cycle detection); inherited checks fill gaps where the local config doesn't define them, and local checks win on collision.executioninherits the same way (nearest ancestor's value when local sets none). Trust covers the wholeextendsclosure — editing any extended file invalidates the fingerprint.extends: - ../shared/.ironlint.yml checks: {}execution.timeout_secs— per-check wall-clock (default30). A check that exceeds it is killed and reported as InternalError, never a silent pass. Override at run time with theIRONLINT_TIMEOUTenv var (seconds).execution: timeout_secs: 60
Check patterns
Ban a pattern (grep, reads stdin). With nonzero-blocks, ! grep is the natural idiom — grep exits 0 on a match (which ! flips to 1, blocking) and exits 1 when clean (which ! flips to 0, passing):
no-console-log:
files: ["src/**/*.ts", "src/**/*.tsx"]
run: "! grep -nE 'console\\.log\\('"
Wrap a linter (stdin). Feed the proposed content to a linter. Most linters exit nonzero on findings, which blocks directly:
ruff-check:
files: ["**/*.py"]
run: "ruff check --quiet --stdin-filename \"$IRONLINT_FILE\" -"
Wrap a file-oriented linter (temp file). Tools that won't read stdin cleanly get a real path:
biome-check:
files: ["src/**/*.{ts,tsx,js,jsx}"]
run: "npx @biomejs/biome check \"$IRONLINT_TMPFILE\""
Limitation: $IRONLINT_TMPFILE has a synthetic name (ironlint-tmp-…), so tools that select behaviour by filename glob — e.g. ESLint overrides scoped to *.test.ts, or Biome include/ignore patterns — won't match it the way they'd match the real file. Language detection (by extension) and nearest-config resolution (the temp file sits beside $IRONLINT_FILE) do work. When a tool needs the real filename for its config, pass $IRONLINT_FILE for that and $IRONLINT_TMPFILE only for the content.
Multi-step check. Use steps when you want to run multiple commands in sequence — all must exit 0:
ts-quality:
files: "src/**/*.ts"
on: [pre-commit]
steps:
- name: typecheck
run: "tsc --noEmit"
- name: no-any
run: "! grep -n ': any' $IRONLINT_FILES"
Multi-line scripts. Use a YAML block scalar so newlines survive — a plain or folded (>) scalar collapses them and can turn the whole script into one comment that silently passes:
guard:
files: "*.rs"
run: |
grep -q 'FORBIDDEN' && exit 1
exit 0
Pre-commit check. Runs once over the selected matching file set, receiving those paths through $IRONLINT_FILES:
no-secrets:
files: "**/*"
on: [pre-commit]
run: "detect-secrets scan $IRONLINT_FILES"
Lifecycle placement
Place by legitimacy, not by preference. A check belongs at write if a file
tripping it is never legitimate — banned APIs, secrets, forbidden markers,
debug macros. Catching those at write stops the agent before the pattern
spreads across files (commit-time rework is far more expensive). A check
belongs at pre-commit if a legitimately mid-construction file could trip it
— formatting, import resolution, whole-tree compilation, tests. Blocking
those at write punishes TDD and partial edits.
When a check moves to pre-commit, it can no longer read proposed content on
stdin — re-scope the command to $IRONLINT_FILES (the matched set, on disk).
Example — rustfmt moved to the floor:
rustfmt:
name: rustfmt check
files: "**/*.rs"
on: [pre-commit]
run: |
echo "$IRONLINT_FILES" | tr '\n' '\0' | xargs -0 rustfmt --check --color=never
Project-scoped adapter settings (.claude/settings*.json, .codex/hooks.json,
.opencode/plugins/) are ordinary repo paths — a normal check scoping them
covers file-tool edits to them too. Home-scoped settings
(~/.claude/settings.json) sit outside every repo glob; only the Bash gate
covers those.
Disable a check for a file
Add # ironlint-disable: <check-id> anywhere in the file to suppress that check for the whole file:
# ironlint-disable: no-console-log
console.log("debug only")
Process
- Read
.ironlint.ymlto see existing checks (if none exists, scaffold one withironlint init). - Draft the check:
filesscope + aruncommand that exits nonzero to block. - Build two fixtures: a dirty file the check should block, and a clean one it should pass.
- After adding the candidate and re-trusting the config, test each fixture by feeding its content on stdin and isolating the check:
ironlint check --file dirty.py --content - --check ruff-check < dirty.py ; echo "dirty exit: $?" # expect nonzero ironlint check --file clean.py --content - --check ruff-check < clean.py ; echo "clean exit: $?" # expect 0 - Verify the check exits nonzero on dirty input and 0 on clean input.
- Keep the check when both fixtures produce the expected result. Revise or remove it otherwise.
Test before write
Test every check against a fixture before relying on it. A check that doesn't exit nonzero on dirty input gives false confidence. A check that exits nonzero on clean input blocks every edit in scope.