chore: docs size + trifecta violations exposed by agentic-os v0.2.8 bump #16
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
After bumping
.pre-commit-config.yamltorev: v0.2.8in #32, the agentic-os pre-commit suite started running the previously-brokencatalog-doc-size,documentation-layout, andcatalog-trifectahooks. v0.2.6's manifest had an unquoted-colon YAML parse error (fixed in agentic-os 13490a4) so those hooks were silently no-ops on the v0.2.6 cache.Currently failing on
main:CODE_OF_CONDUCT.md: 5121 chars exceeds the 4000-char cap.README.md: 98 lines / 4568 chars exceeds the 80-line / 4000-char caps.AGENTS.md: missing required H2 headings (## Scope,## Project shape,## Repo boundaries,## Commands,## Validation,## Safety,## Cross-repo contracts,## Release,## Agent rules).Fix
CODE_OF_CONDUCT.mdandREADME.mdintodocs/*.mdshards, leaving a short pointer in each root file.AGENTS.mdto the trifecta H2 layout. Most existing content already fits; mostly a rename / regroup pass.Verify with
pre-commit run catalog-doc-size documentation-layout catalog-trifecta --all-files(run each hook id separately, pre-commit does not accept multiple ids on one invocation).Origin
Out-of-scope follow-up from #32. That commit landed with
SKIP=catalog-doc-size,documentation-layout,catalog-trifectafor these three hooks; this issue is the close-out.Ported from coilysiren/agent-guard#33.