Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计提醒

doc-sync文档同步

Agent Skill

用于辅助 Java 项目开发、面向对象设计、Spring 生态、Maven 或 Gradle 依赖和后端工程实践。它适合让 Agent 分析类结构、设计接口、整理服务分层、生成测试或检查常见代码坏味道。使用时需要结合项目已有架构、包结构和依赖版本,不应只按通用教程改代码;涉及数据库、事务、并发或框架配置时,应先确认运行环境和回归测试范围。

总安装

190

周安装

8

GitHub Stars

38

下载量

67
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:doc-sync(文档同步)
来源仓库:https://github.com/bitsoex/bitso-java
仓库路径:skills/doc-sync
安装命令:
npx skills add https://github.com/bitsoex/bitso-java --skill doc-sync
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/bitsoex/bitso-java --skill doc-sync

简介

doc-sync 用于同步代码与文档,确保文档反映最近的代码变更并保持一致性。

  • 它支持验证文档完整性、检查链接有效性,并在代码审查中确认文档准确性。
  • 通过 npx skills add 命令安装,需结合项目文档结构使用。
  • 涉及数据库、事务或框架配置时,应先确认运行环境和回归测试范围。
  • doc-sync 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Doc Sync

Update documentation to reflect recent code changes. Validates and ensures documentation stays synchronized with code.

When to use this skill

  • After making code changes that affect architecture or APIs
  • When documentation may be out of sync with code
  • During code review to verify documentation completeness
  • To check for broken links in documentation
  • When setting up documentation validation in a repository
  • When asked to "sync docs" or "update documentation"

Skill Contents

Sections

Available Resources

📚 references/ - Detailed documentation

🔧 scripts/ - Automation scripts


Quick Start

1. Check Documentation Status

# Via skills CLI
node .scripts/skills-cli.ts doc-sync validate

# Or directly
node -e "import('./.scripts/lib/skills/doc-sync.ts').then(m => m.validateDocs('.'))"

2. Pre-Push Hook Integration

Add documentation validation to your pre-push hook:

# In .git-hooks/pre-push or hooks-checks.js
# Checks if docs need updating when architecture files change

Documentation Validation Checks

CheckWhat It DoesSeverity
README presenceVerifies README.md existsError
Broken linksChecks internal markdown linksWarning
API docsLooks for generated API documentationInfo
FreshnessCompares doc timestamps to codeWarning
RFC-37 structureValidates docs/ folder structureError

Integration with RFC-37

For repositories following RFC-37 documentation standards:

# Install the linter
brew tap bitsoex/homebrew-bitso
brew install bitso-documentation-linter

# Run RFC-37 validation
doclinter --repo-path . --verbose

# Preview Confluence structure
doclinter tree --repo-path .

See the rfc-37-documentation skill for full RFC-37 compliance.

Pre-Push Documentation Check

The system can verify documentation is updated when significant files change:

Architecture Files That Trigger Doc Checks

const ARCHITECTURE_FILES = [
  'technology-hierarchy.json',
  'repo-overrides.json',
  'managed-paths.json',
  '.scripts/convert-rules.ts',
  '.scripts/targeting.ts',
  '.scripts/safe-sync.ts',
  '.scripts/ci-distribute.ts',
  '.github/workflows/ci.yaml'
];

Expected Documentation Updates

When architecture files change, update one of:

  • docs/ai-ide-management/concepts/architecture.md
  • docs/ai-ide-management/how-tos/targeting-and-inheritance.md
  • docs/ai-ide-management/overview.md
  • README.md

Skipping the Check

# For a single commit (when docs truly aren't needed)
AI_AGENTS_SKIP_DOCS_CHECK=1 git commit -m "chore: minor config tweak"

# Or document why in commit message
git commit -m "fix: typo in config

No docs update needed - cosmetic change only"

Available Functions

The doc-sync module exports these functions:

import {
  validateDocs,      // Run all documentation checks
  checkReadme,       // Verify README presence
  checkBrokenLinks,  // Find broken internal links
  checkApiDocs,      // Look for API documentation
  checkFreshness,    // Compare doc/code timestamps
  DOC_TOOLS          // Recommended tools by project type
} from './.scripts/lib/skills/doc-sync.ts';

Example Usage

import { validateDocs } from './.scripts/lib/skills/doc-sync.ts';

const result = await validateDocs('.', { quiet: false });

console.log('Passed:', result.passed);
console.log('Issues:', result.issues);
console.log('Warnings:', result.warnings);
console.log('Recommendations:', result.recommendations);

Documentation Tools by Project Type

ProjectToolsCommands
Java/GradleJavadoc, Checkstyle./gradlew javadoc
Node.jsTypeDoc, JSDoc, markdownlintnpx typedoc, npx markdownlint "**/*.md"
PythonSphinx, pydocstyle, MkDocssphinx-build, pydocstyle
Gogodoc, go docgo doc -all

Best Practices

1. Document As You Code

  • Update docs in the same PR as code changes
  • Use the pre-push hook to catch missing updates
  • Keep README.md as the single source of truth

2. Structure Documentation

Follow RFC-37 structure for consistency:

docs/
├── decisions/          # ADRs (Architecture Decision Records)
├── how-tos/           # Step-by-step guides
├── runbooks/          # Operational procedures
└── {service}/         # Service-specific docs
    ├── concepts/      # Architecture, design
    └── getting-started/

3. Link Related Docs

Use relative links between documentation files. For example, link from one reference file to another using relative paths like ./other-file.md or ../other-folder/file.md.

4. Keep Docs Fresh

  • Run freshness checks periodically
  • Update docs when APIs change
  • Review docs during code reviews

References

ReferenceDescription
references/java/javadoc-patterns.mdJava documentation patterns
references/typescript/jsdoc-patterns.mdTypeScript documentation patterns
references/python/docstring-patterns.mdPython documentation patterns
references/go/godoc-patterns.mdGo documentation patterns

Related Skills

SkillPurpose
rfc-37-documentationRFC-37 structure and Confluence mirroring
quality-gatewayQuality gate orchestration
git-hooksPre-commit/pre-push hook setup

Documentation in This Repository

For ai-code-instructions documentation, see docs/ai-ide-management/:

  • catalogues/ - Catalogues of rules, commands, MCP, skills
  • concepts/ - Architecture and design concepts
  • how-tos/ - Step-by-step guides
  • mcp/ - MCP configuration docs
  • overview.md - Main entry point

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.92%
按下载量换算20

OpenCode

24.03%
按下载量换算16

Antigravity

17.27%
按下载量换算12

windsurf

14.71%
按下载量换算10

Codex

8.22%
按下载量换算6

Gemini CLI

3.23%
按下载量换算2

安全审计

Gen Agent Trust Hub

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills