Contributing¶
Thank you for helping improve this guidebook. Contributions of all sizes are welcome, from fixing a typo to writing a new chapter.
Ground rules¶
The book follows a strict house style. The essentials:
- No em-dashes. Use a comma, colon, parentheses, or two sentences.
- No stock phrasing ("not only ... but also", "load-bearing", and similar).
- Warm, plain, direct writing. Address the reader as "you." Short sentences.
- Define terms on first use. Link key concepts to Wikipedia on first mention.
- Real references only.
The full rules are in spec/conventions.md and the short
version is the style rules. The
tests enforce the mechanical parts.
Setup¶
You need Python 3, uv, and
just. See SITE.md
for how the published site is built.
just # list tasks
just test # run the validation suite
just nav # regenerate the generated navigation files
just build # build the documentation site
just serve # serve the site locally with live reload
just stats # chapter and word counts
Making a change¶
- Read the relevant guide: authoring for chapters, navigation for the generated files, testing for the tests.
- Make the smallest change that does the job.
- If you added, removed, renamed, or renumbered a chapter, update
spec/structure.mdand runjust nav. - Run
just test. It must pass. - Add a one-line entry to the changelog under Unreleased.
What to work on¶
- Fix errors, unclear passages, or stale references.
- Improve examples, especially concrete enterprise and government ones.
- Verify citations against real sources.
- Fill gaps in a chapter's coverage without breaking the template.
What to avoid¶
- Do not edit the generated files by hand (
README.md,docs/index.md,docs/front-matter/table-of-contents.md,docs/chapters/12.7-index.md, and thenavblock inzensical.toml). Change the chapters and runjust navinstead. - Do not add a chapter without also updating
docs/spec/structure.md. - Do not introduce em-dashes or the forbidden phrases; the tests will fail.
Reporting issues¶
Open an issue describing the problem, the file and chapter, and, where relevant, the correct source or reference. Small, specific reports are the easiest to act on.