docs-sync
$
npx mdskill add openai/openai-agents-python/docs-syncAudits and syncs documentation by analyzing code changes to identify gaps and propose updates.
- Helps maintain accurate documentation by detecting missing or outdated content in English docs.
- Integrates with Git to analyze branches and compare code changes against main.
- Decides recommendations by inventorying user-facing features and configuration from the codebase.
- Presents a report for approval before making any edits to documentation files.
SKILL.md
.github/skills/docs-syncView on GitHub ↗
--- name: docs-sync description: Analyze main branch implementation and configuration to find missing, incorrect, or outdated documentation in docs/. Use when asked to audit doc coverage, sync docs with code, or propose doc updates/structure changes. Only update English docs under docs/** and never touch translated docs under docs/ja, docs/ko, or docs/zh. Provide a report and ask for approval before editing docs. --- # 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. ## Workflow 1. 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. - If the current branch is not `main`, analyze only the diff vs `main` to scope doc updates. - Avoid switching branches if it would disrupt local changes; use `git show main:<path>` or `git worktree add` when needed. 2. Build a feature inventory from the selected scope - If on `main`: inventory the full surface area and review docs comprehensively. - If not on `main`: inventory only changes vs `main` (feature additions/changes/removals). - 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. 3. 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. 4. 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. 5. 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. 6. Produce a Docs Sync Report and ask for approval - Provide a clear report with evidence, suggested doc locations, and proposed edits. - Ask the user whether to proceed with doc updates. 7. If approved, apply 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. - Build docs with `make build-docs` after edits to verify the docs site still builds. ## 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 - Questions for the user ## References - `references/doc-coverage-checklist.md`
More from openai/openai-agents-python
- code-change-verificationRun the mandatory verification stack when changes affect runtime code, tests, or build/test behavior in the OpenAI Agents Python repository.
- credit-note-fixerFix the tiny credit-note formatting bug and rerun the exact targeted test command.
- csv-workbenchAnalyze CSV files in /mnt/data and return concise numeric summaries.
- examples-auto-runRun python examples in auto mode with logging, rerun helpers, and background control.
- final-release-reviewPerform a release-readiness review by locating the previous release tag from remote tags and auditing the diff (e.g., v1.2.3...<commit>) for breaking changes, regressions, improvement opportunities, and risks before releasing openai-agents-python.
- implementation-strategyDecide how to implement runtime and API changes in openai-agents-python before editing code. Use when a task changes exported APIs, runtime behavior, serialized state, tests, or docs and you need to choose the compatibility boundary, whether shims or migrations are warranted, and when unreleased interfaces can be rewritten directly.
- openai-knowledgeUse when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.
- playwrightUse when the task requires capturing or automating a real browser from the terminal.
- pr-draft-summaryCreate the required PR-ready summary block, branch suggestion, title, and draft description for openai-agents-python. Use in the final handoff after moderate-or-larger changes to runtime code, tests, examples, build/test configuration, or docs with behavior impact; skip only for trivial or conversation-only tasks, repo-meta/doc-only tasks without behavior impact, or when the user explicitly says not to include the PR draft block.
- prior-auth-packet-builderBuild a concise prior authorization packet from local case files and payer policy docs.