Review local code changes with git diff and update the official docs under docs/ to match. Use when the user asks to document current uncommitted work, sync docs with local changes, update docs after a feature or refactor, or when phrases like "git diff", "local changes", "update docs", or "official docs" appear.
80
100%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
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.
8878264
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.