mcpbeat Sign in

Docs Sync Skill for Codex

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 (docs/src/content/docs/**) and never touch translated docs under docs/src/content/docs/ja, ko, or zh. Provide a report and ask for approval before editing docs.

2k tokens
context cost
the whole folder, loaded on every use
3
files
instructions only
0
copies elsewhere
how many repositories repackaged it
3526
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/openai/openai-agents-python --skill docs-sync

What comes with it

2 812 bytes besides the instruction
agents/openai.yaml
references/doc-coverage-checklist.md

The instruction itself

5 sections, as written by the author

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

  • 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.
  • 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 "Options", rg "process.env", rg "export").
  • 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.
  • For MCP SDK (modelcontextprotocol/typescript-sdk) or Vercel AI SDK (@ai-sdk/*) topics, optionally use Deepwiki MCP for quick lookups, and still treat the SDK source code as the source of truth.
  • Doc-first pass: review existing pages
  • Walk each relevant page under docs/src/content/docs (excluding docs/src/content/docs/openai).
  • Identify missing mentions of important, supported options (opt-in flags, env vars), customization points, or new features from packages/.
  • 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/src/content/docs.
  • Determine the best page/section for each feature based on existing patterns and package boundaries.
  • Identify features that lack any doc page or have a page but no corresponding content.
  • Note when a structural adjustment would improve discoverability.
  • 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.
  • 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.
  • If approved, apply changes (English only)
  • Edit only English docs in docs/src/content/docs/**.
  • Exclude docs/src/content/docs/openai from review and updates.
  • Do not edit docs/src/content/docs/ja, docs/src/content/docs/ko, or docs/src/content/docs/zh.
  • Keep changes aligned with the existing docs style and navigation.
  • Place any code snippets under examples/docs/<doc-filename>/ so the directory name matches the target doc file, mirroring existing patterns.
  • Verify doc code snippets build successfully with pnpm -F docs-code build-check and fix issues before handoff.

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

Other skills for the same job

different authors, same section of the catalogue
MCP Builder
by anthropics
vendor ×13

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

30k tokens scripts
Changelog Generator
by frostant
×9

Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.

774 tokens
Finishing A Development Branch
by ZhanlinCui
×7

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

1k tokens
MCP Builder
by JayZeeDesign
×7

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

37k tokens scripts
Vercel React Native Skills
by vercel-labs
vendor ×6

React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.

39k tokens
Vercel React Best Practices
by ratacat
×5

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.

34k tokens
Next Best Practices
by vercel-labs
vendor ×4

Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling

20k tokens
Using Git Worktrees
by ZhanlinCui
×4

Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification

1k tokens

How to use it

Copy the folder

Take openai/docs-sync from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.