What problem does it solve? Documentation sets drift out of sync: new docs get added without updating the index, and style conventions diverge across files. This Skill enforces a hard rule that every .docs/ document change must be accompanied by updates to .docs/README.md and .docs/tldr.md, verified by a mechanical git-based sync checker. ## Core Features & Use Cases - Sibling Update Gate: Runs check-sibling-sync.py against git state (staged, unstaged, untracked) to verify that .docs/README.md and .docs/tldr.md changed alongside any other .docs/ document, exiting 1 if a sibling is missing. - Style Consistency Rules: Requires every doc to open with a TL;DR blockquote, end with a Related docs table, use tables over prose, and state mechanisms explicitly. - Structured Authoring Workflow: Guides reading a sibling doc first for style, then creating or updating content, then updating the index row and the 30-second tldr.md summary. - Use Case: After adding a new architecture doc under .docs/03-architecture/, the Skill ensures the README index row and tldr.md summary are written in the same pass and the sync script prints SYNC OK before reporting done. ## Quick Start Ask the assistant to write a new doc for the authentication flow in .docs/ and have it update the README index and tldr.md, then run the sibling sync check.