docs-sync

GitHub

审计或更新SDK文档,基于代码实现证据识别文档缺口与不准确之处。支持按主题或差异范围进行功能盘点,对比现有文档结构提出修改建议或直接执行编辑验证,确保文档与代码行为一致。

.agents/skills/docs-sync/SKILL.md openai/openai-agents-js

Trigger Scenarios

用户请求检查或更新特定主题的SDK文档 用户要求根据代码变更(diff)同步更新文档 需要验证文档是否覆盖最新的功能、配置或环境变量

Install

npx skills add openai/openai-agents-js --skill docs-sync -g -y
More Options

Non-standard path

npx skills add https://github.com/openai/openai-agents-js/tree/main/.agents/skills/docs-sync -g -y

Use without installing

npx skills use openai/openai-agents-js@docs-sync

指定 Agent (Claude Code)

npx skills add openai/openai-agents-js --skill docs-sync -a claude-code -g -y

安装 repo 全部 skill

npx skills add openai/openai-agents-js --all -g -y

预览 repo 内 skill

npx skills add openai/openai-agents-js --list

SKILL.md

Frontmatter
{
    "name": "docs-sync",
    "description": "Audit or update authored English SDK documentation within a requested topic or diff using implementation evidence."
}

Docs Sync

Overview

Identify documentation gaps and inaccuracies within the requested topic or diff using implementation evidence.

Scope and authorization

For audit or proposal-only requests, report findings without editing. When the user requests updates or has approved a plan, complete the scoped edits and verification without asking again. Ask only for unresolved behavior, scope, release timing, or additional authority. Apply the repository's Documentation Release Timing policy before including unreleased behavior in docs/.

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.
    • Use a branch diff only for a branch-scoped request. A requested topic or released-doc correction remains in scope even when 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.
  2. 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 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 "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.
  3. 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.
  4. 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.
  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. Classify the proposed complete diff

    • Use the Documentation Change Verification Tiers in AGENTS.md as the single source of truth.
    • Classify the complete proposed diff by its highest applicable Editorial, Content, or Structural tier before editing.
    • Keep the tier-specific verification separate from the existing eligibility rules for $implementation-final-review, $code-change-verification, $changeset-validation, and $pr-draft-summary.
  7. Report findings or continue authorized updates

    • For audit-only work, provide evidence, suggested locations, proposed edits, and required verification, then stop.
    • For an update request, complete the authorized edits using the findings and selected verification tier.
  8. Apply authorized 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.
    • Do not add TypeScript or TSX fenced blocks directly to MDX. Place every TypeScript or TSX snippet in a compilable source file under examples/docs/<doc-area>/, import it into MDX with ?raw, and render that imported source using the existing docs pattern.
    • If code is not useful enough to maintain as a complete example, explain the behavior in prose instead of adding an unverified snippet.
    • Run the focused verification required by the highest applicable Documentation Change Verification Tier in AGENTS.md. When the complete diff changes a rendered TypeScript or TSX snippet source or its MDX import/rendering, run 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
  • Unresolved decisions, only when needed

References

  • references/doc-coverage-checklist.md

Version History

  • a3a9215 Current 2026-09-09 13:00

    简化仓库指南和审查技能细节,调整分支分析策略以更好地处理非main分支的差异范围。

  • 7450f54 2026-08-28 16:30

    优化分支切换策略,避免干扰本地更改;新增对 MCP SDK 和 Vercel AI SDK 使用 Deepwiki MCP 进行快速查询的支持。

  • 443c33e 2026-08-20 05:59

    引入基于变更风险等级的文档验证机制;适配 v0.15.0 发布版本更新。

  • 13f68fa 2026-07-25 11:30

Same Skill Collection

.agents/skills/changeset-validation/SKILL.md
.agents/skills/code-change-verification/SKILL.md
.agents/skills/examples-auto-run/SKILL.md
.agents/skills/examples-run-analysis/SKILL.md
.agents/skills/final-release-review/SKILL.md
.agents/skills/implementation-final-review/SKILL.md
.agents/skills/implementation-kickoff/SKILL.md
.agents/skills/implementation-strategy/SKILL.md
.agents/skills/integration-tests/SKILL.md
.agents/skills/maintainer-review/SKILL.md
.agents/skills/openai-knowledge/SKILL.md
.agents/skills/pnpm-upgrade/SKILL.md
.agents/skills/pr-draft-summary/SKILL.md
.agents/skills/runtime-behavior-probe/SKILL.md
.agents/skills/sensitive-logging-audit/SKILL.md
.agents/skills/test-coverage-improver/SKILL.md
examples/docs/sandbox-agents/skills/invoice-total-fixer/SKILL.md
examples/tools/skills/csv-workbench/SKILL.md

Metadata

Files
0
Version
a3a9215
Hash
5542ef9e
Indexed
2026-07-25 11:30

- 위키
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-17 05:21
浙ICP备14020137号-1