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

update-docs更新文档

Agent Skill

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

总安装

847

周安装

36

GitHub Stars

7,474

下载量

297
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/anyproto/anytype-ts --skill update-docs

简介

update-docs 用于维护组件级 README 文件,保持文档与代码同步。

  • 适合新增功能或重构模块后的说明文更新场景。
  • 每个组件文件夹独立维护 README,仅记录直接影响开发者的关键信息。
  • 输出内容需保留原始命令和路径准确性,禁止虚构未实现的接口说明。
  • 建议在提交代码前先更新对应文档,确保描述与实现一致。

SKILL.md

Update Docs Skill

Update README.md files in the folders where code was changed. Documentation lives next to the code it describes — each component/abstraction folder has its own README.

When to Use

Activate this skill when:

  • The user explicitly asks to update documentation after changes
  • After completing a task that adds, removes, or significantly modifies files in a component/abstraction folder

Principles

  1. Co-located — Each README lives in the folder it documents
  2. Lean — Only document what helps a developer understand the folder's purpose, structure, and patterns
  3. Precise — Accurate file names, sizes, type counts, and descriptions
  4. Compact — No verbose prose. Use tables, bullet points, and code snippets
  5. Delta-driven — Only update sections affected by the change. Don't rewrite unrelated content

README Structure Convention

Each folder's README follows this skeleton (sections included only when relevant):

# folder-name/ - Short Purpose

One-sentence overview. Contains **N files**.

## Architecture
[Only if the folder has a non-obvious entry point, router, or coordination pattern]

## Components / Modules / Types
[Table or bullet list of files with one-line descriptions]

## Pattern
[Code snippet showing the common pattern, if one exists]

What to Document

Change TypeDocumentation Action
New file addedAdd entry to the file list with one-line description
File removedRemove entry from the file list
File renamedUpdate the entry
New pattern introducedAdd/update the Pattern section
Architecture changeUpdate the Architecture section
File count changedUpdate the count in the overview line
New block/menu/popup typeAdd to the relevant type list

What NOT to Document

  • Implementation details that are obvious from reading the code
  • Function-level API docs (that's what the code and types are for)
  • Changelog/history of what changed when
  • TODO items or future plans
  • Descriptions longer than one sentence per file
  • Redundant information already in CLAUDE.md

Process

  1. Identify affected folders — Determine which folders had files added, removed, or significantly changed
  2. Read existing README — Check if a README.md exists in each affected folder
  3. Determine delta — Compare the change against what the README currently says
  4. Apply minimal update — Edit only the affected lines/sections
  5. Verify accuracy — Ensure file names, counts, and descriptions match reality

Scope Rules

  • Only update READMEs in folders where code actually changed
  • If a folder has no README yet and the change is significant (new subfolder, new abstraction layer), create one following the convention
  • If the change is trivial (typo fix, minor logic tweak), skip documentation update
  • Never update CLAUDE.md from this skill — that file has its own maintenance process

Examples

File added to block/

Change: Added `src/ts/component/block/ai.tsx`

Action: Edit `src/ts/component/block/README.md`
- Update file count in overview line
- Add entry under "Other Blocks":
  - `ai.tsx` - AI-generated content block

New store added

Change: Added `src/ts/store/theme.ts`

Action: Edit `src/ts/store/README.md`
- Add row to the Stores table:
  | `theme.ts` | `S.Theme` | Theme management: color schemes, dark mode preferences |

File removed from menu/

Change: Removed `src/ts/component/menu/legacySearch.tsx`

Action: Edit `src/ts/component/menu/README.md`
- Remove entry for legacySearch from the menu types list
- Update count if mentioned

New subfolder created

Change: Created `src/ts/component/block/ai/` with index.tsx, toolbar.tsx, preview.tsx

Action: Create `src/ts/component/block/ai/README.md`:
  # ai/ - AI Content Block

  AI-generated content blocks with toolbar controls and preview. Contains **3 files**.

  ## Files
  - `index.tsx` - Main block component, renders AI content with edit/regenerate actions
  - `toolbar.tsx` - Prompt input and model selection toolbar
  - `preview.tsx` - Streaming preview of AI-generated content

Also update parent `src/ts/component/block/README.md` to reference the new subfolder.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.5%
按下载量换算102

Claude

32.28%
按下载量换算96

Cursor

17.65%
按下载量换算52

Gemini CLI

9.9%
按下载量换算29

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills