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

reference-documentation参考文档

Agent Skill

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

总安装

674

周安装

27

GitHub Stars

15

下载量

218
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nickcrew/claude-ctx-plugin --skill reference-documentation

简介

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

  • 适用于内部知识库建设、开发者指南编写或产品帮助中心维护。
  • 支持多语言术语统一、链接有效性检查和版本差异标注。
  • 安装命令:npx skills add https://github.com/nickcrew/claude-ctx-plugin --skill reference-documentation。
  • 文档生成后应由人工复核事实准确性,特别是涉及版本号、命令参数的部分。

SKILL.md

Reference Documentation

Create exhaustive, searchable, and precisely organized technical reference documentation that serves as the definitive source of truth for APIs, configurations, and system interfaces.

When to Use This Skill

  • Building API reference documentation (REST, GraphQL, gRPC)
  • Creating configuration guides with every parameter documented
  • Writing schema documentation for databases or data models
  • Producing CLI reference with all commands, flags, and examples
  • Generating complete technical specifications
  • Documenting error codes, status codes, and exception catalogs
  • Creating migration guides for version upgrades

Quick Reference

ResourcePurposeLoad when
references/documentation-patterns.mdAPI doc structure, glossary patterns, cross-referencing, versioned docs, parameter tables, configuration guidesStructuring any reference document

Workflow Overview

Phase 1: Inventory    → Catalog all public interfaces, parameters, and constraints
Phase 2: Author       → Draft structured entries with examples and cross-links
Phase 3: Verify       → Validate against implementation and tests
Phase 4: Organize     → Structure for optimal retrieval and searchability
Phase 5: Maintain     → Version tracking, deprecation, and update cadence

Phase 1: Inventory

Enumerate everything that needs documentation before writing anything.

Inventory Checklist

  • All public API endpoints / methods / functions
  • All configuration parameters and their defaults
  • All error codes and exception types
  • All environment variables
  • All CLI commands and flags
  • All schema fields and constraints
  • All event types and payloads
  • Deprecation timeline for removed features

Source of Truth Priority

  1. Implementation code (actual behavior)
  2. Tests (expected behavior with assertions)
  3. Type definitions / schemas (declared contracts)
  4. Existing documentation (may be stale — verify)

Phase 2: Author

Entry Format

Every documented item uses a consistent structure:

### methodName

**Type**: `(param1: string, param2?: number) => Promise<Result>`
**Since**: v2.1.0
**Deprecated**: No

**Description**:
Brief explanation of purpose and behavior.

**Parameters**:

| Name | Type | Required | Default | Description |
|------|------|----------|---------|-------------|
| `param1` | `string` | Yes | — | What this parameter controls |
| `param2` | `number` | No | `10` | What this parameter controls |

**Returns**: `Promise<Result>` — description of return value

**Throws**:
- `ValidationError` — when param1 is empty
- `TimeoutError` — when operation exceeds 30s

**Examples**:

Basic usage:
\`\`\`typescript
const result = await methodName("value");
\`\`\`

With options:
\`\`\`typescript
const result = await methodName("value", 20);
\`\`\`

**See Also**: [relatedMethod](#relatedmethod), [Configuration Guide](#configuration)

Writing Rules

  1. Document behavior, not implementation — what it does, not how
  2. Every parameter gets a row — no exceptions, even obvious ones
  3. Every entry gets an example — at least one working code sample
  4. State constraints explicitly — valid ranges, length limits, format requirements
  5. Cross-reference related items — link to related methods, configs, and error codes

Phase 3: Verify

Verification Methods

What to verifyHow
Method signaturesCompare against source code type definitions
Default valuesCheck source code initializers
Error conditionsRead implementation and test assertions
ExamplesRun them or trace them against the code
Deprecated itemsCheck for deprecation markers in source

Accuracy Checklist

  • All signatures match current implementation
  • All default values are correct
  • All error conditions are documented
  • All examples work against current version
  • No removed features are still documented
  • No new features are undocumented

Phase 4: Organize

Document Hierarchy

1. Overview          — What this API/system does, quick orientation
2. Quick Reference   — Cheat sheet of common operations with examples
3. Authentication    — How to authenticate (if applicable)
4. Detailed Reference — Complete documentation, grouped logically
5. Error Reference   — All error codes with causes and fixes
6. Glossary          — Terms specific to this system
7. Changelog         — What changed in each version

Navigation Aids

  • Table of contents with deep linking at the top
  • Alphabetical index for large reference sets
  • Category grouping for logical discovery
  • Search keywords embedded in headings and descriptions
  • Version badges on entries added or changed in recent versions

Phase 5: Maintain

Versioning Strategy

  • Tag every entry with the version it was introduced (**Since**: v2.1.0)
  • Mark deprecations with migration guidance (**Deprecated**: v3.0 — use newMethod instead)
  • Maintain a changelog section at the bottom of reference docs
  • Separate docs by major version when breaking changes accumulate

Update Triggers

Reference documentation must be updated when:

  • A public API signature changes
  • A new parameter, endpoint, or command is added
  • Default values or constraints change
  • Features are deprecated or removed
  • Error codes or behaviors change

Content Patterns

Parameter Tables

Always use tables for parameters — never inline lists:

NameTypeRequiredDefaultDescription
timeoutnumberNo30000Request timeout in milliseconds
retriesnumberNo3Number of retry attempts

Status Code Tables

CodeNameDescriptionResolution
400Bad RequestInvalid input parametersCheck request body against schema
401UnauthorizedMissing or invalid auth tokenRe-authenticate and retry
429Rate LimitedToo many requestsBack off and retry after Retry-After header

Configuration Blocks

# config.yaml
server:
  port: 3000          # Port to listen on (1024-65535)
  host: "0.0.0.0"     # Bind address
  timeout: 30000      # Request timeout in ms
  max_body_size: "1mb" # Maximum request body size

Anti-Patterns

  • Documenting internal/private interfaces that can change without notice
  • Using "obvious" or "self-explanatory" instead of writing a real description
  • Omitting error documentation because "it's clear from the types"
  • Copy-pasting examples without verifying they still work
  • Mixing tutorial-style narrative into reference entries (keep them separate)
  • Letting documentation fall behind implementation for more than one release

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.45%
按下载量换算77

Claude

29.35%
按下载量换算64

Cursor

20.23%
按下载量换算44

Gemini CLI

9.18%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills