Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

update-docs更新文档

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

216

周安装

9

GitHub Stars

3

下载量

72
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/a-green-hand-jack/ml-research-skills --skill update-docs

简介

用于辅助文档、README、Markdown 和内容稿件的整理与改写。

  • 适合提炼结构、补齐章节、统一术语或检查链接,提升文档可读性。
  • 使用时需保留项目已有事实和路径,避免写成确定结论;对外文案应控制语气。
  • 通过 git diff 自动检测变更,仅更新受影响文档,支持多项目通用。
  • 安装前请确认仓库权限及是否涉及文件读写操作。

SKILL.md

Update Docs Workflow

Use this workflow whenever code has changed and the project documentation needs to be brought up to date. The agent uses git to detect what changed since the last documentation commit, analyses the diff, and updates only the affected docs.

This workflow is project-agnostic: it auto-detects the project root and documentation location.


Step 1 — Orient: detect the project

// turbo Run the following to establish the project root and basic structure:

# Project root and current branch
git rev-parse --show-toplevel && git branch --show-current

# Last 5 commits (so we can pick the baseline)
git log --oneline -5

Then find where the documentation lives:

# Look for common doc directory patterns
find "$(git rev-parse --show-toplevel)" -maxdepth 3 -type d \
  \( -name "docs" -o -name "doc" -o -name "wiki" -o -name "pages" \) \
  ! -path "*/.git/*" ! -path "*/node_modules/*" ! -path "*/.venv/*"

# Also check for top-level markdown files
find "$(git rev-parse --show-toplevel)" -maxdepth 1 -name "*.md" -type f

From the results, identify:

  • $ROOT: the git root directory
  • $DOCS_DIR: where the documentation files are (e.g. docs/src/, docs/, wiki/)

If $DOCS_DIR cannot be determined automatically, ask the user: "Where are your documentation files? (e.g. docs/, docs/src/, or README.md only)"


Step 2 — Find the baseline commit

// turbo Find the most recent commit that touched the documentation directory:

git log --oneline --all -- "$DOCS_DIR" | head -5

Note the first hash — call it <baseline>. This is the last point in time when docs were current.

If no doc commits exist, use the initial commit as baseline:

git log --oneline --all | tail -1

Step 3 — Get the code diff since the baseline

// turbo First, a compact summary of what changed in source code (not docs):

git diff <baseline> HEAD --stat -- . \
  ':!'"$DOCS_DIR" ':!*.md' ':!*.rst' ':!*.txt' ':!*.json'

If the diff is manageable, get the full diff:

git diff <baseline> HEAD -- . \
  ':!'"$DOCS_DIR" ':!*.md' ':!*.rst' ':!*.txt' ':!*.json'
Tip: If the diff exceeds ~400 lines, analyse it file by file using: ``bash git diff <baseline> HEAD -- path/to/file.py `` Focus on: new/deleted classes or functions, changed method signatures, new modules, changed configuration keys, new data files.

Step 4 — Discover existing documentation structure

Read the documentation files discovered in Step 1. Understand:

  • What topics each file covers
  • What module/component/concept each file documents
  • The writing style (language, heading level, use of code blocks, tables)

Maintain the same style and language as the existing docs when making edits.


Step 5 — Map changes to affected docs

For each changed file or module, determine which documentation file(s) need updating.

General mapping heuristics (adapt to the specific project structure):

Type of code changeWhat to update
New class or module addedAdd it to whichever architecture/overview doc covers that layer; update dependency diagrams
Class or function deletedRemove or strike from all docs that mention it
Method signature / parameter changedUpdate code examples, parameter tables
New config key or environment variableUpdate configuration docs
New external dependency addedUpdate setup/installation docs
Data schema changed (DB, JSON, Pydantic, etc.)Update data model docs
New CLI command or flagUpdate CLI reference / usage docs
Behaviour change (algorithm, business logic)Update design/architecture docs
New test coverage (major new tests)No doc update usually needed unless testing guide exists

Step 6 — Make surgical edits to affected docs

Update only the sections that are out of date. Do not rewrite sections that are still accurate.

Edit rules:

  • Add new items (classes, methods, parameters, config keys) that appeared in the diff
  • Remove or revise descriptions of things that were renamed, deleted, or refactored
  • Update flow diagrams, step-by-step pipelines, and tables to reflect new reality
  • Preserve all sections not touched by the diff — no gratuitous rewrites
  • Match the writing style of the existing doc exactly (language, formatting, code fence style)

Step 7 — Summarise changes and optionally commit

After all edits, display a brief summary:

  • Which doc files were modified
  • What was added / removed / updated in each

Then ask the user: "文档已更新。是否要将这些改动提交到 Git?(Y/n)"

If yes, suggest a commit message in the format:

docs: update <DOCS_DIR> to reflect changes since <baseline-short-hash>

Then run (replace <DOCS_DIR> and <message> accordingly):

git add <DOCS_DIR> && git commit -m "<message>"

If no, remind the user that all files are already saved and can be committed later with:

git add <DOCS_DIR> && git commit -m "docs: ..."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.8%
按下载量换算24

Claude

29.76%
按下载量换算21

Cursor

17.48%
按下载量换算13

Gemini CLI

9.26%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills