Docs Sync
Overview
Identify doc coverage gaps and inaccuracies by comparing main branch features and configuration options against the current docs structure, then propose targeted improvements.
Authorization and scope
For an audit or proposal-only request, report findings without editing. When the user requests updates or has already approved a plan, complete those local edits and applicable checks without asking again. Ask only about unresolved scope, behavior, release timing, or additional authority. Keep generated translations untouched. Apply the repository's Documentation Release Timing policy before including unreleased behavior in docs/.
Workflow
Confirm scope and base branch
- Identify the current branch and default branch (usually
main).
- Prefer analyzing the current branch to keep work aligned with in-flight changes.
- Use a branch diff only for a branch-scoped request. A requested topic or released-doc correction remains in scope even when it is unrelated to the current branch diff.
- Avoid switching branches if it would disrupt local changes. Prefer read-only inspection such as
git show main:<path>. If a separate checkout is genuinely required, stop and obtain the explicit approval required by AGENTS.md before creating or switching a worktree.
Build a feature inventory from the selected scope
- Bound the inventory to the requested topic or diff. Inventory the full surface only for an explicitly comprehensive audit.
- For branch-scoped work, inspect feature additions, changes, and removals relative to the intended base.
- Focus on user-facing behavior: public exports, configuration options, environment variables, CLI commands, default values, and documented runtime behaviors.
- Capture evidence for each item (file path + symbol/setting).
- Use targeted search to find option types and feature flags (for example:
rg "Settings", rg "Config", rg "os.environ", rg "OPENAI_").
- When the topic involves OpenAI platform features, invoke
$openai-knowledge to pull current details from the OpenAI Developer Docs MCP server instead of guessing, while treating the SDK source code as the source of truth when discrepancies appear.
Doc-first pass: review existing pages
- Walk each relevant page under
docs/ (excluding docs/ja, docs/ko, and docs/zh).
- Identify missing mentions of important, supported options (opt-in flags, env vars), customization points, or new features from
src/agents/ and examples/.
- Propose additions where users would reasonably expect to find them on that page.
Code-first pass: map features to docs
- Review the current docs information architecture under
docs/ and mkdocs.yml.
- Determine the best page/section for each feature based on existing patterns and the API reference structure under
docs/ref.
- Identify features that lack any doc page or have a page but no corresponding content.
- Note when a structural adjustment would improve discoverability.
- When improving
docs/ref/* pages, treat the corresponding docstrings/comments in src/ as the source of truth. Prefer updating those code comments so regenerated reference docs stay correct, instead of hand-editing the generated pages.
Detect gaps and inaccuracies
- Missing: features/configs present in main but absent in docs.
- Incorrect/outdated: names, defaults, or behaviors that diverge from main.
- Structural issues (optional): pages overloaded, missing overviews, or mis-grouped topics.
Report findings or continue authorized updates
- For audit-only work, provide evidence, suggested locations, and proposed edits, then stop.
- For an update request, use the findings to complete the authorized edits.
Apply authorized changes (English only)
- Edit only English docs in
docs/**.
- Do not edit
docs/ja, docs/ko, or docs/zh.
- Keep changes aligned with the existing docs style and navigation.
- Update
mkdocs.yml when adding or renaming pages.
- Classify the complete diff with the Documentation Verification Tiers in
AGENTS.md and run only the checks required by that tier.
- For content or structural changes, run
make build-docs once after the edits and required review are stable. Do not run it for editorial-only changes.
Output format
Use this template when reporting findings:
Docs Sync Report
- Doc-first findings
- Page + missing content -> evidence + suggested insertion point
- Code-first gaps
- Feature + evidence -> suggested doc page/section (or missing page)
- Incorrect or outdated docs
- Doc file + issue + correct info + evidence
- Structural suggestions (optional)
- Proposed change + rationale
- Proposed edits
- Doc file -> concise change summary
- Unresolved decisions, only when needed
References
references/doc-coverage-checklist.md
1---2name: docs-sync3description: Audit or update English SDK documentation against the requested implementation scope.4---5
6# Docs Sync
7
8## Overview
9
10Identify doc coverage gaps and inaccuracies by comparing main branch features and configuration options against the current docs structure, then propose targeted improvements.
11
12## Authorization and scope
13
14For an audit or proposal-only request, report findings without editing. When the user requests updates or has already approved a plan, complete those local edits and applicable checks without asking again. Ask only about unresolved scope, behavior, release timing, or additional authority. Keep generated translations untouched. Apply the repository's Documentation Release Timing policy before including unreleased behavior in `docs/`.
15
16## Workflow
17
181. Confirm scope and base branch
19 - Identify the current branch and default branch (usually `main`).
20 - Prefer analyzing the current branch to keep work aligned with in-flight changes.
21 - Use a branch diff only for a branch-scoped request. A requested topic or released-doc correction remains in scope even when it is unrelated to the current branch diff.
22 - Avoid switching branches if it would disrupt local changes. Prefer read-only inspection such as `git show main:<path>`. If a separate checkout is genuinely required, stop and obtain the explicit approval required by `AGENTS.md` before creating or switching a worktree.
23
242. Build a feature inventory from the selected scope
25 - Bound the inventory to the requested topic or diff. Inventory the full surface only for an explicitly comprehensive audit.
26 - For branch-scoped work, inspect feature additions, changes, and removals relative to the intended base.
27 - Focus on user-facing behavior: public exports, configuration options, environment variables, CLI commands, default values, and documented runtime behaviors.
28 - Capture evidence for each item (file path + symbol/setting).
29 - Use targeted search to find option types and feature flags (for example: `rg "Settings"`, `rg "Config"`, `rg "os.environ"`, `rg "OPENAI_"`).
30 - When the topic involves OpenAI platform features, invoke `$openai-knowledge` to pull current details from the OpenAI Developer Docs MCP server instead of guessing, while treating the SDK source code as the source of truth when discrepancies appear.
31
323. Doc-first pass: review existing pages
33 - Walk each relevant page under `docs/` (excluding `docs/ja`, `docs/ko`, and `docs/zh`).
34 - Identify missing mentions of important, supported options (opt-in flags, env vars), customization points, or new features from `src/agents/` and `examples/`.
35 - Propose additions where users would reasonably expect to find them on that page.
36
374. Code-first pass: map features to docs
38 - Review the current docs information architecture under `docs/` and `mkdocs.yml`.
39 - Determine the best page/section for each feature based on existing patterns and the API reference structure under `docs/ref`.
40 - Identify features that lack any doc page or have a page but no corresponding content.
41 - Note when a structural adjustment would improve discoverability.
42 - When improving `docs/ref/*` pages, treat the corresponding docstrings/comments in `src/` as the source of truth. Prefer updating those code comments so regenerated reference docs stay correct, instead of hand-editing the generated pages.
43
445. Detect gaps and inaccuracies
45 - **Missing**: features/configs present in main but absent in docs.
46 - **Incorrect/outdated**: names, defaults, or behaviors that diverge from main.
47 - **Structural issues** (optional): pages overloaded, missing overviews, or mis-grouped topics.
48
496. Report findings or continue authorized updates
50 - For audit-only work, provide evidence, suggested locations, and proposed edits, then stop.
51 - For an update request, use the findings to complete the authorized edits.
52
537. Apply authorized changes (English only)
54 - Edit only English docs in `docs/**`.
55 - Do **not** edit `docs/ja`, `docs/ko`, or `docs/zh`.
56 - Keep changes aligned with the existing docs style and navigation.
57 - Update `mkdocs.yml` when adding or renaming pages.
58 - Classify the complete diff with the Documentation Verification Tiers in `AGENTS.md` and run only the checks required by that tier.
59 - For content or structural changes, run `make build-docs` once after the edits and required review are stable. Do not run it for editorial-only changes.
60
61## Output format
62
63Use this template when reporting findings:
64
65Docs Sync Report
66
67- Doc-first findings
68 - Page + missing content -> evidence + suggested insertion point
69- Code-first gaps
70 - Feature + evidence -> suggested doc page/section (or missing page)
71- Incorrect or outdated docs
72 - Doc file + issue + correct info + evidence
73- Structural suggestions (optional)
74 - Proposed change + rationale
75- Proposed edits
76 - Doc file -> concise change summary
77- Unresolved decisions, only when needed
78
79## References
80
81- `references/doc-coverage-checklist.md`