chore: fix catalog-doc-size violations exposed by agentic-os v0.2.8 #83
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 v0.2.8 bump (#254 sweep) exposes pre-existing Markdown size-cap violations. v0.2.6 silently parse-errored on the documentation-layout hook (fixed in agentic-os@13490a4); v0.2.7+ enforce it.
Failing files:
AGENTS.md- 4978 chars > 4000 cap.README.md- 94 lines > 80 cap, 4353 chars > 4000.docs/FEATURES.md- 4990 chars > 4000..agents/skills/tooling-autonomous-pickup/SKILL.md- 87 lines > 80, 6826 chars > 4000.cert-and-localhost-mess.md- 203 lines, 8350 chars (also a documentation-layout violation - see sibling issue).Fix
Split each over-cap file into smaller
docs/*.mdfiles, leaving a pointer at the original location. Per AGENTS.mddocs/is flat - use filename prefixes.Verify with:
Context
Filed as follow-up to #254 so the code-comments sweep could land without scope creep. The #254 commit skipped this hook via
SKIP=catalog-doc-size.Ported from coilysiren/repo-recall#255.