Several independent README defects, all docs-only, all worth one pass.
1. AI-tooling attribution.README.md:19-20 reads "This tool was created by @sneak to scratch an itch, using Claude Code/Fable." That naming is not wanted anywhere in this repo's output. Delete the sentence; the Description paragraph above it already carries authorship and licence. This is the only such reference in the tree — the commit history is clean.
2. The required Entrypoints section is missing. House policy requires a README Entrypoints section that opens by stating the repo follows Scripts to Rule Them All, links https://github.com/github/scripts-to-rule-them-all, and documents each script/ entrypoint. grep -n "script/" README.md currently returns nothing, even though all 12 entrypoints exist and .gitea/workflows/check.yml runs script/cibuild.
3. §Build is stale after the STRTA migration.README.md:448 still claims "The Makefile is the single source of truth for all operations", but every target is now a thin shim into script/ (Makefile:20-47). make bootstrap and make setup exist and are undocumented. README.md:461 still describes make clean as removing "any legacy local files.dat", a file nothing produces any more.
4. The summary-line example does not add up.README.md:286 shows:
but 1200 + 34 + 122166 = 123400, not 123456. The example only works if removed is counted in the total, which README.md:289-290 explicitly says it is not — and the code follows the prose (scan.go:76 sums added + updated + unchanged). Fix the example's arithmetic.
Definition of done
Lines 19-20 are gone.
An Entrypoints section exists, in the house-standard shape, documenting all 12 entrypoints.
§Build documents make bootstrap and make setup, drops the single-source-of-truth claim in favour of pointing at script/, and drops the files.dat clause.
The summary example sums correctly.
Docs-only: no changes to code, config, scripts, CI or build files. The files.dat references outside the README are #22.
make check green.
Several independent README defects, all docs-only, all worth one pass.
**1. AI-tooling attribution.** `README.md:19-20` reads "This tool was created by [@sneak](https://sneak.berlin) to scratch an itch, using Claude Code/Fable." That naming is not wanted anywhere in this repo's output. Delete the sentence; the Description paragraph above it already carries authorship and licence. This is the only such reference in the tree — the commit history is clean.
**2. The required Entrypoints section is missing.** House policy requires a README **Entrypoints** section that opens by stating the repo follows Scripts to Rule Them All, links `https://github.com/github/scripts-to-rule-them-all`, and documents each `script/` entrypoint. `grep -n "script/" README.md` currently returns nothing, even though all 12 entrypoints exist and `.gitea/workflows/check.yml` runs `script/cibuild`.
**3. §Build is stale after the STRTA migration.** `README.md:448` still claims "The `Makefile` is the single source of truth for all operations", but every target is now a thin shim into `script/` (`Makefile:20-47`). `make bootstrap` and `make setup` exist and are undocumented. `README.md:461` still describes `make clean` as removing "any legacy local `files.dat`", a file nothing produces any more.
**4. The summary-line example does not add up.** `README.md:286` shows:
scan: 123456 files seen (1200 added, 34 updated, 56 removed, 122166 unchanged), 3 skipped
but 1200 + 34 + 122166 = 123400, not 123456. The example only works if `removed` is counted in the total, which `README.md:289-290` explicitly says it is not — and the code follows the prose (`scan.go:76` sums added + updated + unchanged). Fix the example's arithmetic.
## Definition of done
1. Lines 19-20 are gone.
2. An **Entrypoints** section exists, in the house-standard shape, documenting all 12 entrypoints.
3. §Build documents `make bootstrap` and `make setup`, drops the single-source-of-truth claim in favour of pointing at `script/`, and drops the `files.dat` clause.
4. The summary example sums correctly.
5. Docs-only: no changes to code, config, scripts, CI or build files. The `files.dat` references outside the README are #22.
6. `make check` green.
clawbot
added this to the 1.0.0 milestone 2026-08-09 03:47:04 +02:00
Docs-only. README.md is the only file touched — no code, config, script/, CI or build files, and no TODO.md entry, because DoD item 5
restricts the change to the README alone. The PR body will say so
explicitly.
Branch readme-entrypoints off main (a102b8f), in a temporary
worktree.
1. AI-tooling attribution (DoD 1). Delete lines 19-20 in full,
including the blank line that separated them from the following
paragraph. The Description paragraph already names [@sneak](https://sneak.berlin) and the MIT licence, so nothing is
lost.
2. Entrypoints section (DoD 2). New ## Entrypoints section in the
house-standard shape: opens by stating the repo adheres to Scripts to Rule Them All,
notes that the script/ entrypoints are the development workflow and
the Makefile targets are thin shims onto them, then one entry per
script. All twelve get documented from having read each one, not from
the name: bootstrap, setup, projectname, test, lint, fmt, fmt-check, check, docker, cibuild, precommit, install-precommit. Two get the extra sentence their behaviour
warrants:
bootstrap version-checks golangci-lint against the pinned version
rather than merely checking presence, reinstalls on any mismatch, and
then verifies the pinned copy is the one PATH actually resolves,
failing with both paths named when something shadows it.
cibuild and docker both pass a fresh CHECK_EPOCH build argument
so the Dockerfile's gate layers cannot be served from cache; without
it a build can exit 0 having run neither the tests nor the lint.
Placement: after ## Getting Started would interrupt the specification
flow, so the section goes immediately before ## Build, which is the
adjacent topic and what it hands off to.
3. §Build (DoD 3). Replace "The Makefile is the single source of
truth for all operations" with prose pointing at script/ as the
implementation and the Makefile targets as shims. Add the undocumented make bootstrap and make setup. Reduce the make clean line to
removing the binary — the files.dat clause goes, and the remaining files.dat references in Makefile, .gitignore and .dockerignore
stay untouched as #22.
4. Summary-line arithmetic (DoD 4).README.md:286. removed is
correctly excluded from the total per lines 289-290 and per scan.go, so the fix is the total, not the semantics: 1200 + 34 +
122166 = 123400, so 123456 files seen becomes 123400 files seen. 56 removed and 3 skipped are unchanged.
Verification.make check (green), plus a git diff --stat main..HEAD confirming README.md is the sole changed
file.
## Implementation plan
Docs-only. `README.md` is the only file touched — no code, config,
`script/`, CI or build files, and no `TODO.md` entry, because DoD item 5
restricts the change to the README alone. The PR body will say so
explicitly.
Branch `readme-entrypoints` off `main` (`a102b8f`), in a temporary
worktree.
**1. AI-tooling attribution (DoD 1).** Delete lines 19-20 in full,
including the blank line that separated them from the following
paragraph. The Description paragraph already names
`[@sneak](https://sneak.berlin)` and the MIT licence, so nothing is
lost.
**2. Entrypoints section (DoD 2).** New `## Entrypoints` section in the
house-standard shape: opens by stating the repo adheres to
[Scripts to Rule Them All](https://github.com/github/scripts-to-rule-them-all),
notes that the `script/` entrypoints are the development workflow and
the `Makefile` targets are thin shims onto them, then one entry per
script. All twelve get documented from having read each one, not from
the name: `bootstrap`, `setup`, `projectname`, `test`, `lint`, `fmt`,
`fmt-check`, `check`, `docker`, `cibuild`, `precommit`,
`install-precommit`. Two get the extra sentence their behaviour
warrants:
- `bootstrap` version-checks `golangci-lint` against the pinned version
rather than merely checking presence, reinstalls on any mismatch, and
then verifies the pinned copy is the one `PATH` actually resolves,
failing with both paths named when something shadows it.
- `cibuild` and `docker` both pass a fresh `CHECK_EPOCH` build argument
so the `Dockerfile`'s gate layers cannot be served from cache; without
it a build can exit 0 having run neither the tests nor the lint.
Placement: after `## Getting Started` would interrupt the specification
flow, so the section goes immediately before `## Build`, which is the
adjacent topic and what it hands off to.
**3. §Build (DoD 3).** Replace "The `Makefile` is the single source of
truth for all operations" with prose pointing at `script/` as the
implementation and the `Makefile` targets as shims. Add the undocumented
`make bootstrap` and `make setup`. Reduce the `make clean` line to
removing the binary — the `files.dat` clause goes, and the remaining
`files.dat` references in `Makefile`, `.gitignore` and `.dockerignore`
stay untouched as #22.
**4. Summary-line arithmetic (DoD 4).** `README.md:286`. `removed` is
correctly excluded from the total per lines 289-290 and per
`scan.go`, so the fix is the total, not the semantics: 1200 + 34 +
122166 = 123400, so `123456 files seen` becomes `123400 files seen`.
`56 removed` and `3 skipped` are unchanged.
**Verification.** `make check` (green), plus a
`git diff --stat main..HEAD` confirming `README.md` is the sole changed
file.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Several independent README defects, all docs-only, all worth one pass.
1. AI-tooling attribution.
README.md:19-20reads "This tool was created by @sneak to scratch an itch, using Claude Code/Fable." That naming is not wanted anywhere in this repo's output. Delete the sentence; the Description paragraph above it already carries authorship and licence. This is the only such reference in the tree — the commit history is clean.2. The required Entrypoints section is missing. House policy requires a README Entrypoints section that opens by stating the repo follows Scripts to Rule Them All, links
https://github.com/github/scripts-to-rule-them-all, and documents eachscript/entrypoint.grep -n "script/" README.mdcurrently returns nothing, even though all 12 entrypoints exist and.gitea/workflows/check.ymlrunsscript/cibuild.3. §Build is stale after the STRTA migration.
README.md:448still claims "TheMakefileis the single source of truth for all operations", but every target is now a thin shim intoscript/(Makefile:20-47).make bootstrapandmake setupexist and are undocumented.README.md:461still describesmake cleanas removing "any legacy localfiles.dat", a file nothing produces any more.4. The summary-line example does not add up.
README.md:286shows:but 1200 + 34 + 122166 = 123400, not 123456. The example only works if
removedis counted in the total, whichREADME.md:289-290explicitly says it is not — and the code follows the prose (scan.go:76sums added + updated + unchanged). Fix the example's arithmetic.Definition of done
make bootstrapandmake setup, drops the single-source-of-truth claim in favour of pointing atscript/, and drops thefiles.datclause.files.datreferences outside the README are #22.make checkgreen.Implementation plan
Docs-only.
README.mdis the only file touched — no code, config,script/, CI or build files, and noTODO.mdentry, because DoD item 5restricts the change to the README alone. The PR body will say so
explicitly.
Branch
readme-entrypointsoffmain(a102b8f), in a temporaryworktree.
1. AI-tooling attribution (DoD 1). Delete lines 19-20 in full,
including the blank line that separated them from the following
paragraph. The Description paragraph already names
[@sneak](https://sneak.berlin)and the MIT licence, so nothing islost.
2. Entrypoints section (DoD 2). New
## Entrypointssection in thehouse-standard shape: opens by stating the repo adheres to
Scripts to Rule Them All,
notes that the
script/entrypoints are the development workflow andthe
Makefiletargets are thin shims onto them, then one entry perscript. All twelve get documented from having read each one, not from
the name:
bootstrap,setup,projectname,test,lint,fmt,fmt-check,check,docker,cibuild,precommit,install-precommit. Two get the extra sentence their behaviourwarrants:
bootstrapversion-checksgolangci-lintagainst the pinned versionrather than merely checking presence, reinstalls on any mismatch, and
then verifies the pinned copy is the one
PATHactually resolves,failing with both paths named when something shadows it.
cibuildanddockerboth pass a freshCHECK_EPOCHbuild argumentso the
Dockerfile's gate layers cannot be served from cache; withoutit a build can exit 0 having run neither the tests nor the lint.
Placement: after
## Getting Startedwould interrupt the specificationflow, so the section goes immediately before
## Build, which is theadjacent topic and what it hands off to.
3. §Build (DoD 3). Replace "The
Makefileis the single source oftruth for all operations" with prose pointing at
script/as theimplementation and the
Makefiletargets as shims. Add the undocumentedmake bootstrapandmake setup. Reduce themake cleanline toremoving the binary — the
files.datclause goes, and the remainingfiles.datreferences inMakefile,.gitignoreand.dockerignorestay untouched as #22.
4. Summary-line arithmetic (DoD 4).
README.md:286.removediscorrectly excluded from the total per lines 289-290 and per
scan.go, so the fix is the total, not the semantics: 1200 + 34 +122166 = 123400, so
123456 files seenbecomes123400 files seen.56 removedand3 skippedare unchanged.Verification.
make check(green), plus agit diff --stat main..HEADconfirmingREADME.mdis the sole changedfile.