chore: clean up documentation-layout violations after v0.2.8 #14
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?
Problem
The agentic-os pre-commit suite v0.2.8 enabled
documentation-layoutwith a strict allow-list of root Markdown files and an 80-line / 4000-char cap per file. Runningpre-commit run --all-filessurfaces 24 violations:SCOPE.mdnot on the root Markdown allow-list (move underdocs/).agents/*.mdnot allowed at that path (move intodocs/or a skill folder).README.md,SCOPE.md,docs/FEATURES.md,docs/architecture.md,docs/development.md,docs/hardening-prompt-template.md,docs/usage.md,skills/gauntlet/SKILL.md,skills/gauntlet-author/SKILL.mdover the 80-line / 4000-char cap.Fix
Move and split until
pre-commit run documentation-layout --all-filesis clean. Then dropdocumentation-layoutfrom the SKIP list in the commit that resolves this.Context
Surfaced while landing #39 (code-comments cleanup). Skipped there to keep that commit scoped.
Ported from coilysiren/gauntlet#40.