.qwen/skills/docs-update-from-diff/SKILL.md
Inspect local diffs, derive the documentation impact, and update only the
repository's docs/ pages. Treat the current code as the source of truth and
keep changes scoped, specific, and navigable.
Read references/docs-surface.md before editing if the affected feature does not map cleanly to an existing docs section.
Start from local Git state, not from assumptions.
git status --short, git diff --stat, and targeted git diff
output.README.md and other non-docs/ content unless they help confirm
intent.For every changed behavior, extract the user-facing or developer-facing facts that documentation must reflect.
Prefer updating an existing page over creating a new page. Create a new page only when the feature introduces a stable topic that would make an existing page harder to follow.
Map each change to the smallest correct documentation surface:
docs/users/**docs/developers/**docs/** and _meta.tsIf you add a new page, update the nearest _meta.ts in the same docs section so
the page is discoverable.
Edit documentation with the following bar:
Verify that the updated docs cover the actual delta:
docs/ for old names, removed flags, or outdated examples_meta.tsdocs/users/,
verify the qc-helper bundled skill's topic-to-path index tables
(packages/core/src/skills/bundled/qc-helper/SKILL.md) are updated to
match. This skill ships with the CLI and uses hardcoded doc-path tables at
runtime — stale entries cause /qc-helper to miss the right documentation.
Also check project-level skills under .qwen/skills/ for hardcoded
docs/users/ references that may need updating.docs/users/configuration/settings.md, feature pages, and auth/provider docs.docs/users/features/** and docs/developers/tools/** when relevant.qc-helper's SKILL.md index tables,
_meta.ts navigation files, and any project-level skills under
.qwen/skills/ that reference docs/users/ paths.Produce the docs edits under docs/ that make the current local changes
understandable to a reader who has not seen the diff. Keep the final summary
short and identify which pages were updated.