Doc compliance: remove .agentic-os.toml hook opt-outs added for v0.6.0 bump #9
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Background
The v0.6.0 agentic-os pre-commit hook bump (landed in #8, commit
2d2d24e) introduced whole-repo Markdown size/layout caps (80 lines / 4000 chars) and an AGENTS.md required-H2-heading set. This repo's pre-existing docs don't satisfy them, so #8 added a minimal.agentic-os.tomlopting the offenders out to unblock the catalog migration. This issue tracks bringing the docs into actual compliance and removing those opt-outs.Current opt-outs in
.agentic-os.toml[documentation-layout] agents_md_max_chars = 8000- AGENTS.md runs ~4972 chars.[documentation-layout] excludes:README.md(~4878 chars) - trim under 4000.docs/FEATURES.md(~4863 chars) - trim under 4000.docs/worldgen.md(~17356 chars) - large worldgen schema reference.docs/biomes.md(~13675 chars) - large per-biome catalog.rolls/**- generated roll preview artifacts (narrative.md) living outside the allowed Markdown locations.[catalog-trifecta] enabled = false- AGENTS.md is missing the required H2 set:## Scope,## Project shape,## Repo boundaries,## Commands,## Validation,## Safety,## Cross-repo contracts,## Release,## Agent rules.What to decide / do
README.mdanddocs/FEATURES.mdunder the 4000-char cap (or split intodocs/*.md), then drop them fromexcludes.docs/worldgen.md,docs/biomes.md): split into per-topicdocs/*.mdchunks, or keep a permanent exclude if they're legitimately catalog-style references.rolls/**/narrative.mdartifacts should be committed at all, relocated, or stay excluded.catalog-trifecta(or raise the issue upstream if the heading set doesn't fit this repo's shape).Done when
.agentic-os.tomlopt-outs are removed (or deliberately narrowed to justified permanent excludes) and all v0.6.0 doc hooks pass without them.