Doc-layout cleanup: remove .agentic-os.toml opt-outs added for the v0.6.0 hook bump in issue 14 #15
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?
Context
Issue #14 bumped the agentic-os pre-commit hook to
v0.6.0(required to makeprovidesApisoptional so it could be dropped from the catalog block). That bump also tighteneddocumentation-layout: every Markdown file now caps at 80 lines / 4000 chars, skill folders must be flat, and root Markdown is restricted to an allowlist. The repo was compliant under the looserv0.3.0rules, so the bump surfaced ~28 pre-existing doc-layout violations all at once.To land #14 without bundling a repo-wide doc reorg into a catalog chore, those files were opted out via
.agentic-os.toml(andcatalog-trifectawas disabled for the AGENTS.md section requirement). This issue tracks doing the real cleanup and removing those opt-outs.Cleanup work (remove each
.agentic-os.tomlexclude as it's resolved)readme.md- rename toREADME.md(root allowlist is case-sensitive) and trim under 80 lines / 4000 chars. Update any links pointing atreadme.md.development.md- relocate todocs/development.md. Update references (AGENTS.md points at it).pkg/- generated bywasm-packand gitignored, but the hook walks the filesystem. Either keep thepkg/exclude permanently or clean the dir; decide which.docs/perf-rewrite.md(1162 lines) - split into flatdocs/perf-*.mdfragments under the cap, or archive it.docs/FEATURES.md(4881 chars) - trim under 4000 chars.AGENTS.md(4100 chars) - trim under 4000 chars AND restructure into the 8catalog-trifectaH2 sections (## Scope,## Project shape,## Repo boundaries,## Validation,## Safety,## Cross-repo contracts,## Release,## Agent rules). Re-enablecatalog-trifectaafterward.coding-galaxy-gen-astrophysics,coding-galaxy-gen-cosmology,coding-galaxy-gen-references,tooling-skill-authoring: SKILL.md files exceed the cap and three have nestedreferences/subfolders (skill folders must be flat). Split content and flatten.Done when
.agentic-os.tomlis deleted (or reduced to only intentional, permanent excludes like generatedpkg/),catalog-trifectais re-enabled, anddocumentation-layoutpasses on--all-fileswith no opt-outs.Parent: coilysiren/agentic-os-kai#433. Follow-up to #14.