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

docs文档

Agent Skill

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

总安装

7,345

周安装

303

GitHub Stars

45

下载量

2,263
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/buiducnhat/agent-skills --skill docs

简介

docs 用于维护和生成项目文档,包括架构说明、代码结构和标准规范,保持轻量且一致的结构。

  • 它支持自动生成 SUMMARY.md、梳理系统交互逻辑、文件职责划分及编码规范,提升可读性和维护性。
  • 使用时需提供文档范围或指定 config 版本,系统会按模板生成内容,保留已有事实避免虚构。
  • 安装前请确认仓库权限、维护状态,以及是否会修改 docs/ 目录下的文件或使用外部资源。
  • docs 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Docs

Create and maintain project documentation in docs/ with a consistent, lightweight structure.

Outputs

Maintain these outputs:

  1. docs/SUMMARY.md — documentation entry point (always regenerated)
  2. docs/architecture/ — system design, infrastructure, component interactions, data flows, feature flows. Focus on *how the system works*, not file/code structure.
  3. docs/codebase/ — file organization, directory structure, entry points, key modules and their responsibilities. Focus on *where things live in the code*.
  4. docs/code-standard/ — coding conventions, naming rules, style guides, environment setup, custom rules and patterns the team follows. Focus on *how to write code that fits in with the existing codebase*, best practices, and team conventions, very important for maintaining consistency.
  5. docs/project-pdr/ — product goals, use cases, business rules, constraints, and decision rationale. Nice to have many use case/requirements files

Also keep README.md aligned with current docs links and project summary.

Workflow

Step 1: Context Scan

Scan the project to understand what needs documenting:

  1. Read existing docs if any (docs/SUMMARY.md and topic folders)
  2. Read README.md and key config files (package.json, tsconfig.json, Cargo.toml, etc.)
  3. Scan source directories to understand project structure, entry points, and major components
  4. Check git log --oneline -20 for recent changes when updating existing docs

Focus on facts: features, architecture, stack, directory structure, and workflows. Do not invent requirements or assume business logic that is not evident from the code.

Step 2: Infer Behavior

  • Infer whether the repository needs an initial documentation pass or an incremental update based on the current docs/ state.
  • If docs/ does not exist or is clearly incomplete, perform initialization behavior.
  • If docs/ already exists with the standard structure, perform update behavior.
  • State the inferred behavior briefly when relevant.

Step 3: Produce Documentation

Initialize docs when missing or incomplete

  1. Create docs/ and 4 topic folders: architecture/, codebase/, code-standard/, project-pdr/
  2. For each topic folder: a. Scan codebase for relevant information b. Generate content based on codebase scan c. Create topic-specific files based on content found in the codebase. Name each file by its content (e.g., components.md, conventions.md). Do NOT use generic names (overview.md, index.md, main.md). Split into multiple files when content covers 2+ clearly distinct sub-topics. Minimum 1 file per folder.
  3. Create docs/SUMMARY.md using the format specified in Content Requirements
  4. Update README.md with link to docs/SUMMARY.md

Populate each file with concrete, project-specific content. Avoid placeholders and generic templates.

Update docs when they already exist

  1. Detect what changed: compare current code against existing docs. Use git log --oneline and source file scanning to identify new/modified/removed components.
  2. Preserve useful existing content and section structure.
  3. Update stale or inaccurate sections in-place — do not rewrite from scratch.
  4. Add newly discovered features, components, or conventions.
  5. Remove clearly obsolete statements.
  6. Add, modify, or remove detail files as needed based on content changes.
  7. Regenerate docs/SUMMARY.md to match current files — only list files that actually exist on disk.
  8. Update README.md if documentation links changed.

Important: The goal is an incremental, surgical update — not a full rewrite.

Step 4: Sync README

Ensure README.md includes:

  • Short project overview
  • Quick start (if present in project)
  • Documentation link pointing to docs/SUMMARY.md

Step 5: Validate Quality

Before finishing, verify:

  • docs/SUMMARY.md exists and lists every detail file that actually exists on disk (no phantom entries)
  • Each topic folder has at least 1 topic-specific file
  • No generic file names (overview.md, index.md, main.md) in topic folders
  • README.md links point to docs/SUMMARY.md
  • SUMMARY.md is concise and contains file tables for all sections
  • Terminology is consistent across files
  • No contradictions between docs and code
  • Paths and component names are accurate
  • Content is concise, specific, and actionable

Content Requirements

SUMMARY.md format

Contains project overview and file tables for each documentation section.

Strictly follow the template in references/summary-template.md.

Topic file rules

  • Each file focuses on 1 specific sub-topic within its folder
  • Named by content slug: components.md, conventions.md, product-goals.md
  • Do NOT use generic names: overview.md, index.md, main.md, general.md
  • Keep files focused and concise without enforcing line-count targets

Edge Cases

  • Minimal/empty project: If the codebase has very little code, keep topic files short and factual. Do not pad content to reach arbitrary size targets. Mark sections as "TBD — to be documented as the project grows" when there is genuinely nothing to document yet. Even with 1 file per folder, name it by its content.
  • Custom files in docs/: Preserve any user-created files outside the 4 standard topic folders (e.g., docs/API.md, docs/deployment.md). List them under "Other" in SUMMARY.md. Do not move or rename them.
  • Monorepo: If the project contains multiple packages/apps, document the overall structure in architecture/components.md and note each package's purpose. Each package does not need its own full docs set — keep it proportional.

Rules

  • Keep documentation factual; do not invent requirements.
  • Prefer concise updates over verbose prose.
  • Keep docs aligned with current implementation.
  • When uncertain, mark assumptions explicitly and request confirmation.
  • Ask targeted questions when information cannot be reliably inferred (business goals, ambiguous module ownership, conflicting conventions, unclear architecture decisions).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.15%
按下载量换算795

Claude

30.86%
按下载量换算698

Cursor

18.05%
按下载量换算408

Gemini CLI

8.76%
按下载量换算198

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills