Documentation Sync Check
You are checking whether recent code changes require documentation updates in the bunli monorepo.
Implementation is the source of truth. Docs follow code, never the reverse.
Your task
Run
git diff --name-only HEAD(orgit diff --name-only HEAD~1..HEADif working tree is clean) to identify changed implementation files.For each changed file in
packages/*/src/, determine if there's a corresponding doc inapps/web/content/docs/. Use this mapping:packages/core/src/cli.ts→docs/api/create-cli.mdxpackages/core/src/types.ts→docs/api/define-command.mdx,docs/api/option.mdxpackages/core/src/config.ts→docs/api/define-config.mdxpackages/core/src/plugin/→docs/api/plugins.mdx,docs/core-concepts/plugins.mdxpackages/*/→docs/packages/*.mdx
For each matched pair, do a quick comparison: did the implementation change in a way that affects the documented API surface? (new exports, changed signatures, new options, removed features)
Report findings inline:
- Which docs are likely stale
- What specifically changed
- Whether a full
/documentationaudit is warranted
Keep it concise. This is a quick check, not a full audit. If you find significant gaps, recommend running the full /documentation agent.
Source: AryaLabsHQ/bunli — distributed by TomeVault.