Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

document文档处理

Agent Skill

document 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

423

周安装

18

GitHub Stars

公开资料未说明

下载量

148
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/eljun/claude-skills --skill document

简介

用于自动生成技术文档和用户指南。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中维护项目文档。
  • 根据任务 ID 更新 feature.md 和 guide.md 文件。
  • 自动检查 pipeline 完整性并写入 LEARNINGS.md。
  • document 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/document - Documentation Agent

Model: haiku (templated documentation work)

Command Flags

FlagShortDescription
--help-hShow available commands and options
--version-vShow workflow skills version

Flag Handling

On -h or --help:

/document - Documentation Agent

Usage:
  /document {ID}                     Update docs for a task
  /document -h, --help               Show this help message
  /document -v, --version            Show version

Arguments:
  {ID}    Task ID (number) or task filename (e.g., 001-auth-jwt)

Creates/Updates:
  - docs/features/{feature}.md       Technical documentation
  - docs/guides/{feature}.md         User guides (if user-facing)
  - CLAUDE.md                        Project patterns (if needed)

Examples:
  /document 1                        # Document task #1
  /document 001-auth-jwt             # Using task filename

Next: /ship {ID}

On -v or --version: Display:

Workflow Skills v1.4.1
https://github.com/eljun/claude-skills

When to Use

Invoke /document {ID} when:

  • Task has passed testing (/test returned PASS)
  • User has approved the implementation
  • Ready to update project documentation

Example: /document 1 or /document 001-dashboard-redesign

Task ID Resolution

The {ID} can be:

  • Numeric ID: 1, 2, 3 → Looks up in TASKS.md, finds matching task document
  • Padded ID: 001, 002 → Same as numeric
  • Full filename: 001-dashboard-redesign → Direct file reference

Workflow

/document {ID}
       ↓
1. Resolve task ID → find task document
2. Read task document for context
3. Check Automation field (manual | auto)
4. Read test report for verification
5. Update/create feature documentation
6. Update/create user guide (if user-facing)
7. Update CLAUDE.md files if needed
8. Move task to "Approved" in TASKS.md
       ↓
┌─── Automation Mode? ───┐
│                        │
▼ Manual                 ▼ Auto
Notify user              Invoke /ship {ID}
Ready for /ship

Auto Mode Behavior

When task document has Automation: auto:

After documentation is complete, use Task tool to spawn ship agent with model: haiku:

Documentation complete: #{ID} - {Task Title}

Updated files:
- docs/features/{feature}.md
- docs/guides/{feature}.md

[AUTO] Spawning /ship with haiku model...

Task({subagent_type: "general-purpose", model: "haiku", prompt: "/ship {ID}"})

Pre-Documentation Checklist

1. Gather Context (Primary Sources Only)

Read these files — they contain all the context you need:

docs/task/{ID}-{task-name}.md        - Implementation details
docs/testing/{ID}-{task-name}.md     - Test results & verification

IMPORTANT — Context Efficiency: These two documents were created by the /task, /implement, and /test agents which already analyzed the codebase. Do NOT perform broad codebase exploration. Only read specific source files if you need to verify implementation details for documentation accuracy.

2. Identify Documentation Needs

Change TypeDocumentation Needed
New featureFeature doc + User guide
EnhancementUpdate existing docs
Bug fixUpdate troubleshooting sections
API changeUpdate API reference

3. Use Templates

Follow the templates defined in this document:

  • Feature Documentation Structure - Technical feature docs (see below)
  • User Guide Structure - User-facing guides (see below)

Documentation Types

1. Feature Documentation

Location: docs/features/{FEATURE}.md Audience: Developers Purpose: Technical implementation details

When to create/update:

  • New feature → Create new doc
  • Enhancement → Update existing doc
  • Significant change → Update relevant sections

2. User Guide

Location: docs/guides/{feature}.md Audience: End users (business owners, customers) Purpose: How to use the feature

When to create/update:

  • User-facing feature → Create/update guide
  • UI changes → Update screenshots/steps
  • New functionality → Add new sections

3. CLAUDE.md Files

Locations:

  • /CLAUDE.md - Root project instructions

When to update:

  • New patterns discovered
  • New "Do Not" rules
  • Bug fix patterns
  • Tech stack changes

Feature Documentation Structure

# Feature: {Feature Name}

> **Status:** PRODUCTION
> **Last Updated:** {Date}

## Overview

{Brief 2-3 sentence description}

---

## User Journey

### For Customers
1. Step 1
2. Step 2

### For Business Owners
1. Step 1
2. Step 2

---

## Architecture

### File Structure
{Accurate file tree - VERIFY paths exist}

### Database Schema
{SQL with comments, if applicable}

### API Endpoints
| Method | Endpoint | Description |
|--------|----------|-------------|

---

## Implementation Details

### Key Components
| Component | Location | Purpose |
|-----------|----------|---------|

### Technical Notes
- Important detail 1
- Important detail 2

---

## Related Features
- [Link to related feature]

Target length: 200-400 lines


User Guide Structure

# {Feature Name} Guide

> {Brief intro sentence}

## Quick Start
{1-2 paragraph overview}

---

## For Customers

### How to {Primary Action}
1. Step with context
2. Step with context

### Tips
- Tip 1
- Tip 2

---

## For Business Owners

### How to {Admin Action}
1. Step with context

### Settings
| Setting | Location | What it does |
|---------|----------|--------------|

---

## FAQ

**Q: Question?**
A: Answer.

---

## Troubleshooting

**Issue:** Description
**Solution:** How to fix

---

## Related Guides
- [Link]

Target length: 100-200 lines


Documentation Checklist

Feature Doc

  • Follows template structure
  • File paths verified to exist
  • API endpoints are accurate
  • Schema matches database
  • Status set to PRODUCTION
  • Last Updated date set
  • Under 400 lines

User Guide

  • Follows template structure
  • Clear step-by-step instructions
  • FAQ answers common questions
  • Troubleshooting section included
  • Under 200 lines

CLAUDE.md Updates

  • New patterns added to relevant file
  • "Do Not" rules added if mistakes were made
  • Tech stack updated if dependencies changed

Update TASKS.md

Move task to "Approved" section:

## Approved

| ID | Task | Task Doc | Feature Doc | Test Report | Approved |
|----|------|----------|-------------|-------------|----------|
| 1 | Quick Actions Redesign | [001-quick-actions.md](docs/task/001-quick-actions.md) | [feature](docs/features/...) | [001-quick-actions.md](docs/testing/001-quick-actions.md) | Jan 25 |

What to Include

  • Current state only - Document what exists now
  • Accurate file paths - Verify paths exist
  • Working examples - Only code that matches production
  • Clear user journeys - What users actually do

What to Exclude

RemoveWhy
Development logsMove to changelogs
Before/after comparisonsOnly document current state
"Lessons learned"Dev notes, not docs
Speculative future phasesKeep minimal
Full component codeCode lives in codebase

Handoff to /ship

Check the task document for Automation: auto field.

Manual Mode

Documentation updated for: #{ID} - {Task Title}

Updated files:
- docs/features/{feature}.md (created/updated)
- docs/guides/{feature}.md (created/updated)
- CLAUDE.md (if updated)

Task moved to "Approved" in TASKS.md

Next Steps:
  /ship {ID}              # e.g., /ship 1
  /ship {ID}-{task-name}  # e.g., /ship 001-auth-jwt

Auto Mode

Documentation updated for: #{ID} - {Task Title}

Updated files:
- docs/features/{feature}.md (created/updated)
- docs/guides/{feature}.md (created/updated)
- CLAUDE.md (if updated)

Task moved to "Approved" in TASKS.md

[AUTO] Spawning /ship with haiku model...

Use Task tool: Task({subagent_type: "general-purpose", model: "haiku", prompt: "/ship {ID}"})


Related Skills

SkillWhen to Use
/implementIf issues found during doc review
/shipAfter documentation complete

Recommended Plugins (Install Separately)

These plugins must be installed separately. Once installed, they MUST be invoked — do not skip them:

PluginInstall FromWhen to Invoke
vercel-react-best-practicesvercel-labs/agent-skillsReference React patterns for docs
supabase-postgres-best-practicessupabase/agent-skillsReference database patterns for docs

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.2%
按下载量换算51

Claude

30.29%
按下载量换算45

Cursor

18.36%
按下载量换算27

Gemini CLI

9.46%
按下载量换算14

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/eljun/claude-skills --skill document 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills