Docs Update From Diff
Overview
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.
Workflow
1. Build the change set
Start from local Git state, not from assumptions.
- Inspect
git status --short, git diff --stat, and targeted git diff
output.
- Focus on non-doc changes first so the documentation delta is grounded in
code.
- Ignore
README.md and other non-docs/ content unless they help confirm
intent.
2. Derive the docs impact
For every changed behavior, extract the user-facing or developer-facing facts
that documentation must reflect.
- New command, flag, config key, default, workflow, or limitation
- Renamed behavior or removed behavior
- Changed examples, paths, or setup steps
- New feature that belongs in an existing page but is not mentioned yet
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.
3. Find the right docs location
Map each change to the smallest correct documentation surface:
- End-user behavior:
docs/users/**
- Developer internals, SDKs, contributor workflow, tooling:
docs/developers/**
- Shared landing or navigation changes: root
docs/** and _meta.ts
If you add a new page, update the nearest _meta.ts in the same docs section so
the page is discoverable.
4. Write the update
Edit documentation with the following bar:
- State the current behavior, not the implementation history
- Use concrete commands, file paths, setting keys, and defaults from the diff
- Remove or rewrite stale text instead of stacking caveats on top of it
- Keep examples aligned with the current CLI and repository layout
- Preserve the repository's existing docs tone and heading structure
5. Cross-check before finishing
Verify that the updated docs cover the actual delta:
- Search
docs/ for old names, removed flags, or outdated examples
- Confirm links and relative paths still make sense
- Confirm any new page is included in the relevant
_meta.ts
- Re-read the changed docs against the code diff, not against memory
- If the diff added, moved, renamed, or removed a page under
docs/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.
Practical heuristics
- If a change affects commands, also check quickstart, workflows, and feature
pages for drift.
- If a change affects configuration, also check
docs/users/configuration/settings.md, feature pages, and auth/provider docs.
- If a change affects tools or agent behavior, check both
docs/users/features/** and docs/developers/tools/** when relevant.
- If tests reveal expected behavior more clearly than implementation code, use
tests to confirm wording.
- If the change adds, moves, renames, or removes a docs page, also update
hardcoded doc-path consumers:
qc-helper's SKILL.md index tables,
_meta.ts navigation files, and any project-level skills under
.qwen/skills/ that reference docs/users/ paths.
Deliverable
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.
1---2name: docs-update-from-diff3description: 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.4---5
6# Docs Update From Diff
7
8## Overview
9
10Inspect local diffs, derive the documentation impact, and update only the
11repository's `docs/` pages. Treat the current code as the source of truth and
12keep changes scoped, specific, and navigable.
13
14Read [references/docs-surface.md](references/docs-surface.md) before editing if
15the affected feature does not map cleanly to an existing docs section.
16
17## Workflow
18
19### 1. Build the change set
20
21Start from local Git state, not from assumptions.
22
23- Inspect `git status --short`, `git diff --stat`, and targeted `git diff`
24 output.
25- Focus on non-doc changes first so the documentation delta is grounded in
26 code.
27- Ignore `README.md` and other non-`docs/` content unless they help confirm
28 intent.
29
30### 2. Derive the docs impact
31
32For every changed behavior, extract the user-facing or developer-facing facts
33that documentation must reflect.
34
35- New command, flag, config key, default, workflow, or limitation
36- Renamed behavior or removed behavior
37- Changed examples, paths, or setup steps
38- New feature that belongs in an existing page but is not mentioned yet
39
40Prefer updating an existing page over creating a new page. Create a new page
41only when the feature introduces a stable topic that would make an existing page
42harder to follow.
43
44### 3. Find the right docs location
45
46Map each change to the smallest correct documentation surface:
47
48- End-user behavior: `docs/users/**`
49- Developer internals, SDKs, contributor workflow, tooling:
50 `docs/developers/**`
51- Shared landing or navigation changes: root `docs/**` and `_meta.ts`
52
53If you add a new page, update the nearest `_meta.ts` in the same docs section so
54the page is discoverable.
55
56### 4. Write the update
57
58Edit documentation with the following bar:
59
60- State the current behavior, not the implementation history
61- Use concrete commands, file paths, setting keys, and defaults from the diff
62- Remove or rewrite stale text instead of stacking caveats on top of it
63- Keep examples aligned with the current CLI and repository layout
64- Preserve the repository's existing docs tone and heading structure
65
66### 5. Cross-check before finishing
67
68Verify that the updated docs cover the actual delta:
69
70- Search `docs/` for old names, removed flags, or outdated examples
71- Confirm links and relative paths still make sense
72- Confirm any new page is included in the relevant `_meta.ts`
73- Re-read the changed docs against the code diff, not against memory
74- If the diff added, moved, renamed, or removed a page under `docs/users/`,
75 verify the `qc-helper` bundled skill's topic-to-path index tables
76 (`packages/core/src/skills/bundled/qc-helper/SKILL.md`) are updated to
77 match. This skill ships with the CLI and uses hardcoded doc-path tables at
78 runtime — stale entries cause `/qc-helper` to miss the right documentation.
79 Also check project-level skills under `.qwen/skills/` for hardcoded
80 `docs/users/` references that may need updating.
81
82## Practical heuristics
83
84- If a change affects commands, also check quickstart, workflows, and feature
85 pages for drift.
86- If a change affects configuration, also check
87 `docs/users/configuration/settings.md`, feature pages, and auth/provider docs.
88- If a change affects tools or agent behavior, check both
89 `docs/users/features/**` and `docs/developers/tools/**` when relevant.
90- If tests reveal expected behavior more clearly than implementation code, use
91 tests to confirm wording.
92- If the change adds, moves, renames, or removes a docs page, also update
93 hardcoded doc-path consumers: `qc-helper`'s SKILL.md index tables,
94 `_meta.ts` navigation files, and any project-level skills under
95 `.qwen/skills/` that reference `docs/users/` paths.
96
97## Deliverable
98
99Produce the docs edits under `docs/` that make the current local changes
100understandable to a reader who has not seen the diff. Keep the final summary
101short and identify which pages were updated.