Token导航 LogoToken导航TokenDH.com
AI 工具操作浏览器github未标认证来源可访问clear审计提醒

document-sync文档同步

Agent Skill

document-sync 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

517

周安装

22

GitHub Stars

678

下载量

181
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ananddtyagi/cc-marketplace --skill document-sync

简介

基于真实代码库同步维护文档准确性的工具。

  • 深度检测技术栈与架构变更自动发现漂移。
  • 遵循“验证而非假设”的核心更新原则。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 覆盖 README、API 文档与部署指南全类型维护。
  • document-sync 属于AI 工具类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Document Sync Skill for Claude Code

Overview

This skill provides comprehensive documentation synchronization by analyzing your actual codebase, tech stack, configuration, and architecture to ensure all documentation remains current and accurate. It operates on a "verify, never assume" principle, performing end-to-end comparisons against real code and dependencies to detect documentation drift automatically.

Core Principles

  • Verify, Never Assume: Documentation is only updated after end-to-end comparison against real, current code and dependencies
  • Deep System Introspection: Checks languages, frameworks, APIs, DBs, config, code patterns, and deployment targets
  • Doc Trust Score: Every doc gets a trust rating based on evidence found in the codebase and config files

Quick Start

Natural Language Commands:

  • "Run document sync analysis on my project"
  • "Update docs so every API route matches the code"
  • "Check if any doc mentions features no longer in the app"
  • "List undocumented config variables"

Slash Commands:

  • /docs-sync — Runs analysis and outputs a complete report on outdated/inaccurate sections
  • /docs-update-strict — Suggests only changes verified by found code/config evidence
  • /docs-rewrite-missing — Fills gaps for undocumented features based on live source
  • /docs-patch-pr — Makes all doc changes as a PR, zero surprises

Operation Workflow

Phase 1: Full System Scan

Execute the system scanning script to analyze your codebase:

# Run comprehensive system scan
python3 .claude/skills/document-sync/scripts/system_scan.py

This phase automatically:

  1. Tech Stack Detection - Parse package.json, requirements.txt, pom.xml, etc. for frameworks, DBs, and build tools
  2. Project Structure Analysis - Map src/, lib/, app/, and config/ directories for real usage
  3. Architecture Detection - Identify data flows, auth methods, sync strategies, and cloud/on-prem deployment

Key Outputs: system_state.json and code_features_report.md

Phase 2: Documentation Verification

Execute the documentation verification script:

# Verify all documentation against code
python3 .claude/skills/document-sync/scripts/verify_docs.py

This phase:

  1. Docs Content Inventory - List all Markdown, docs/, and README files
  2. Technical Validation - Cross-reference each doc claim with real code/config
  3. Relevance & Quality Scoring - Rate every doc: current, needs update, obsolete, or missing

Key Outputs: doc_verification_report.md and docs_update_plan.md

Phase 3: Automated or Assisted Document Updating

Based on the verification results, choose your update approach:

# Dry run - see what would change
python3 .claude/skills/document-sync/scripts/update_docs.py --mode=dry-run

# Suggest mode - get suggestions for review
python3 .claude/skills/document-sync/scripts/update_docs.py --mode=suggest

# Auto-update with backups
python3 .claude/skills/document-sync/scripts/update_docs.py --mode=auto-update

Configuration

Create .claude/document-sync-skill.yml in your project root:

mode: suggest  # suggest | dry-run | auto-update
protected_docs:
  - README.md
  - docs/security.md
review_required_for:
  - section removal
  - breaking doc changes
output_reports:
  - doc_verification_report.md
  - docs_update_plan.md

Safety & Controls

  • Never deletes or rewrites without firm code evidence
  • Always creates a diff and backup before change
  • User sets conservatism level: dry-run, suggest-only, or auto-update
  • All changes are traceable—committed separately with actionable summaries

Output Examples

doc_verification_report.md

Doc SectionStatusEvidence FoundAction
/docs/api.md GET /usersCurrentEndpoint in code (src/routes/)Keep
/docs/db-setup.md PouchDBOutdatedNo mention in codebaseRemove/Update
/README.md Feature XMissingFound in src/feature-x.tsAdd details

docs_update_plan.md

  • Remove obsolete DB doc: /docs/db-setup.md (no longer in code)
  • Add section to /README.md for unlisted Feature X
  • Rewrite /docs/config.md section on env vars (now using .env.local)
  • Confirm all code-blocks in /docs/usage.md still run

Resources

This skill includes specialized scripts and references for comprehensive document synchronization:

scripts/

  • system_scan.py - Comprehensive codebase analysis and tech stack detection
  • verify_docs.py - Documentation verification and validation against code
  • update_docs.py - Automated document updating with safety controls

references/

  • tech_detection_patterns.md - Patterns for identifying frameworks and technologies
  • doc_validation_rules.md - Rules for validating documentation accuracy
  • update_templates.md - Templates for common documentation updates

assets/

  • report_templates/ - Markdown templates for verification and update reports
  • config_schemas/ - JSON schemas for configuration validation

Safety Checklist

  • Full project scan completed
  • All doc claims matched to real code/config
  • Backups created before overwriting docs
  • No deletions/rewrites without clear code evidence
  • All updates and removals require user review
  • All code examples in docs validated with real source

Success Metrics

  • 100% doc claims match code/config truth
  • 0 obsolete/incorrect references in doc set
  • All new features in code are documented within 2 days
  • Doc update effort reduced by >60% for every release

MANDATORY USER VERIFICATION REQUIREMENT

Policy: No Fix Claims Without User Confirmation

CRITICAL: Before claiming ANY issue, bug, or problem is "fixed", "resolved", "working", or "complete", the following verification protocol is MANDATORY:

Step 1: Technical Verification

  • Run all relevant tests (build, type-check, unit tests)
  • Verify no console errors
  • Take screenshots/evidence of the fix

Step 2: User Verification Request

REQUIRED: Use the AskUserQuestion tool to explicitly ask the user to verify the fix:

"I've implemented [description of fix]. Before I mark this as complete, please verify:
1. [Specific thing to check #1]
2. [Specific thing to check #2]
3. Does this fix the issue you were experiencing?

Please confirm the fix works as expected, or let me know what's still not working."

Step 3: Wait for User Confirmation

  • DO NOT proceed with claims of success until user responds
  • DO NOT mark tasks as "completed" without user confirmation
  • DO NOT use phrases like "fixed", "resolved", "working" without user verification

Step 4: Handle User Feedback

  • If user confirms: Document the fix and mark as complete
  • If user reports issues: Continue debugging, repeat verification cycle

Prohibited Actions (Without User Verification)

  • Claiming a bug is "fixed"
  • Stating functionality is "working"
  • Marking issues as "resolved"
  • Declaring features as "complete"
  • Any success claims about fixes

Required Evidence Before User Verification Request

  1. Technical tests passing
  2. Visual confirmation via Playwright/screenshots
  3. Specific test scenarios executed
  4. Clear description of what was changed

Remember: The user is the final authority on whether something is fixed. No exceptions.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

26.41%
按下载量换算48

Antigravity

21.85%
按下载量换算40

Gemini CLI

17.82%
按下载量换算32

windsurf

12.26%
按下载量换算22

Codex

6.39%
按下载量换算12

OpenCode

3.31%
按下载量换算6

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills