What problem does it solve? Keeping a Docusaurus documentation site accurate as code changes is error-prone: pages drift from the implementation, broken links slip through, and stale guides mislead operators. This Skill maps every code change to the docs pages that must be updated, drafts them through a writer subagent, and verifies the result with three independent evaluator subagents before you call it done. ## Core Features & Use Cases - Change-to-page mapping: Runs a git diff against the base ref and routes each changed path (infra, lambdas, management app, packaging, tests, IAM policy) to the exact docs page that owns it. - Subagent-driven drafting and review: Dispatches a docs-writer subagent per page, then runs accuracy, coverage, and style evaluator subagents in parallel with the explicit base ref. - Build verification: Enforces a clean npm ci install followed by a Docusaurus build to catch broken links and MDX parse errors, since onBrokenLinks is set to throw. - Use Case: After modifying the Pulumi infra program on a feature branch, use this Skill to update docs/docs/components/infra.md and docs/docs/setup.md, audit the claims against the current code, and confirm the site builds before opening the PR. ## Quick Start Ask the assistant to update the Hyveon documentation for the changes on your current branch using the write-docs skill.