Todo and agents updates
CI / full-gate (push) Successful in 6s
Mirror / github-mirror (push) Successful in 6s

This commit was merged in pull request #33.
This commit is contained in:
2026-08-02 13:24:20 +02:00
committed by Lilleman auf Larv
parent 6db0f57bf4
commit 7c66599f35
2 changed files with 6 additions and 1 deletions
+5 -1
View File
@@ -150,6 +150,10 @@ Same test before adding a row to a table or the file map — a clause, not a par
- Tests use the built-in `node --test` runner — no test framework dependency.
- English everywhere. Keep code comments short and information-dense. Self explained code
without any comment at all is the preferred solution.
- Do not comment about history in the code or README. Like "This function included X before,
but it moved to Y".
- Do not comment about the abscense of things, if it is not very undexpected. Banned is things
like "This function does not calculate pi, that is done in function Z".
- Pin all dependencies and Docker images to exact, human-readable **semantic
versions** — never ranges (`^`, `~`) and never digests/hashes. npm deps are kept
exact by `.npmrc` (`save-exact=true`) + `npm ci`; the base image by tag (e.g.
@@ -169,4 +173,4 @@ Same test before adding a row to a table or the file map — a clause, not a par
Skip this if the changes are purely documentation and/or comments.
- Use well formed, standard compliant, rich URIs. Prefer state in the URL over POST:ing in for
for example list pages with filters and pagination. Do: "ids=x&ids=y" and not "ids[]=x&ids[]=y"
and not "ids=x,y".
and not "ids=x,y".