Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

release-docs发布文档

Agent Skill

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

总安装

218

周安装

9

GitHub Stars

35

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ratacat/claude-skills --skill release-docs

简介

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

  • 适合让 Agent 提炼结构、补齐章节、统一术语或检查链接,提升文档可读性。
  • 使用时应保留项目已有事实和路径,避免将未确认信息写成确定结论。
  • 安装前需确认权限范围和维护状态,注意是否触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Arguments

[optional: --dry-run to preview changes without writing]

Release Documentation Command

You are a documentation generator for the compound-engineering plugin. Your job is to ensure the documentation site at plugins/compound-engineering/docs/ is always up-to-date with the actual plugin components.

Overview

The documentation site is a static HTML/CSS/JS site based on the Evil Martians LaunchKit template. It needs to be regenerated whenever:

  • Agents are added, removed, or modified
  • Commands are added, removed, or modified
  • Skills are added, removed, or modified
  • MCP servers are added, removed, or modified

Step 1: Inventory Current Components

First, count and list all current components:

# Count agents
ls plugins/compound-engineering/agents/*.md | wc -l

# Count commands
ls plugins/compound-engineering/commands/*.md | wc -l

# Count skills
ls -d plugins/compound-engineering/skills/*/ 2>/dev/null | wc -l

# Count MCP servers
ls -d plugins/compound-engineering/mcp-servers/*/ 2>/dev/null | wc -l

Read all component files to get their metadata:

Agents

For each agent file in plugins/compound-engineering/agents/*.md:

  • Extract the frontmatter (name, description)
  • Note the category (Review, Research, Workflow, Design, Docs)
  • Get key responsibilities from the content

Commands

For each command file in plugins/compound-engineering/commands/*.md:

  • Extract the frontmatter (name, description, argument-hint)
  • Categorize as Workflow or Utility command

Skills

For each skill directory in plugins/compound-engineering/skills/*/:

  • Read the SKILL.md file for frontmatter (name, description)
  • Note any scripts or supporting files

MCP Servers

For each MCP server in plugins/compound-engineering/mcp-servers/*/:

  • Read the configuration and README
  • List the tools provided

Step 2: Update Documentation Pages

2a. Update docs/index.html

Update the stats section with accurate counts:

<div class="stats-grid">
  <div class="stat-card">
    <span class="stat-number">[AGENT_COUNT]</span>
    <span class="stat-label">Specialized Agents</span>
  </div>
  <!-- Update all stat cards -->
</div>

Ensure the component summary sections list key components accurately.

2b. Update docs/pages/agents.html

Regenerate the complete agents reference page:

  • Group agents by category (Review, Research, Workflow, Design, Docs)
  • Include for each agent:

- Name and description - Key responsibilities (bullet list) - Usage example: claude agent [agent-name] "your message" - Use cases

2c. Update docs/pages/commands.html

Regenerate the complete commands reference page:

  • Group commands by type (Workflow, Utility)
  • Include for each command:

- Name and description - Arguments (if any) - Process/workflow steps - Example usage

2d. Update docs/pages/skills.html

Regenerate the complete skills reference page:

  • Group skills by category (Development Tools, Content & Workflow, Image Generation)
  • Include for each skill:

- Name and description - Usage: claude skill [skill-name] - Features and capabilities

2e. Update docs/pages/mcp-servers.html

Regenerate the MCP servers reference page:

  • For each server:

- Name and purpose - Tools provided - Configuration details - Supported frameworks/services

Step 3: Update Metadata Files

Ensure counts are consistent across:

  1. plugins/compound-engineering/.claude-plugin/plugin.json

- Update description with correct counts - Update components object with counts - Update agents, commands arrays with current items

  1. .claude-plugin/marketplace.json

- Update plugin description with correct counts

  1. plugins/compound-engineering/README.md

- Update intro paragraph with counts - Update component lists

Step 4: Validate

Run validation checks:

# Validate JSON files
cat .claude-plugin/marketplace.json | jq .
cat plugins/compound-engineering/.claude-plugin/plugin.json | jq .

# Verify counts match
echo "Agents in files: $(ls plugins/compound-engineering/agents/*.md | wc -l)"
grep -o "[0-9]* specialized agents" plugins/compound-engineering/docs/index.html

echo "Commands in files: $(ls plugins/compound-engineering/commands/*.md | wc -l)"
grep -o "[0-9]* slash commands" plugins/compound-engineering/docs/index.html

Step 5: Report Changes

Provide a summary of what was updated:

## Documentation Release Summary

### Component Counts
- Agents: X (previously Y)
- Commands: X (previously Y)
- Skills: X (previously Y)
- MCP Servers: X (previously Y)

### Files Updated
- docs/index.html - Updated stats and component summaries
- docs/pages/agents.html - Regenerated with X agents
- docs/pages/commands.html - Regenerated with X commands
- docs/pages/skills.html - Regenerated with X skills
- docs/pages/mcp-servers.html - Regenerated with X servers
- plugin.json - Updated counts and component lists
- marketplace.json - Updated description
- README.md - Updated component lists

### New Components Added
- [List any new agents/commands/skills]

### Components Removed
- [List any removed agents/commands/skills]

Dry Run Mode

If --dry-run is specified:

  • Perform all inventory and validation steps
  • Report what WOULD be updated
  • Do NOT write any files
  • Show diff previews of proposed changes

Error Handling

  • If component files have invalid frontmatter, report the error and skip
  • If JSON validation fails, report and abort
  • Always maintain a valid state - don't partially update

Post-Release

After successful release:

  1. Suggest updating CHANGELOG.md with documentation changes
  2. Remind to commit with message: docs: Update documentation site to match plugin components
  3. Remind to push changes

Usage Examples

# Full documentation release
claude /release-docs

# Preview changes without writing
claude /release-docs --dry-run

# After adding new agents
claude /release-docs

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.48%
按下载量换算28

Claude

30.2%
按下载量换算21

Cursor

17.96%
按下载量换算13

Gemini CLI

8.79%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills