Get Started
Rules Bootstrap
Understand the strict rules bootstrap contract, preserved source copy, and normalized rules outputs.
Bardo runs rules bootstrap before campaign bootstrap. The rules phase is responsible for preserving the rulebook source and turning it into a normalized rules layer inside .bardo/.
Current bootstrap contractLink to current-bootstrap-contract
When a Markdown rulebook is available, bardo init:
- Resolves the workspace root and the canonical
.bardo/root. - Preserves the source copy at
.bardo/rules/rulebook.md. - Normalizes the rulebook into stable section files under
.bardo/rules/normalized/. - Writes
.bardo/rules/normalized/index.json. - Tags sections and recommends
light,standard, ordeepsimulation depth. - Records the rules bootstrap summary in
.bardo/manifest.json.
If the rulebook is missing, the rules phase cannot complete. That gap is surfaced through the readiness artifacts rather than hidden behind silent defaults.
Recommended rulebook inputLink to recommended-rulebook-input
- Prefer
./rulebook.mdin the workspace root. - Keep headings, tables, examples, and exception text intact.
- Convert PDFs to Markdown before bootstrap.
If the file lives elsewhere inside the workspace:
bardo init --rulebook ./rules/core-rulebook.md
Current outputsLink to current-outputs
.bardo/
manifest.json
rules/
rulebook.md
normalized/
01-character-creation.md
02-combat.md
03-factions-and-travel.md
index.json
The source copy is preserved. The normalized files and index.json are Bardo-managed derivatives.
What normalization keepsLink to what-normalization-keeps
- section titles
- worked examples
- tables needed during play
- explicit exceptions and overrides
- mechanically relevant procedures
- useful keywords and tags for retrieval
Simulation depth recommendationLink to simulation-depth-recommendation
The recommendation is written into .bardo/rules/normalized/index.json and mirrored into .bardo/manifest.json.
The value is one of:
lightstandarddeep
If the signals are weak or mixed, Bardo defaults to standard.