Token导航 LogoToken导航TokenDH.com
运维和基础设施external-servicegithub未标认证来源可访问clear审计提醒

docs-review文档审查

Agent Skill

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

总安装

11,105

周安装

477

GitHub Stars

47,068

下载量

3,892
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/metabase/metabase --skill docs-review

简介

用于辅助文档、README 和 Markdown 内容的整理与改写,帮助 Agent 提炼结构和统一术语。

  • 适合处理说明文、对外文案和技术指南等内容类型。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 需保留项目已有事实和路径,避免写成确定结论;对外文案应控制语气,避免夸大。
  • 建议结合项目实际情况调整文档风格和细节。

SKILL.md

Documentation Review Skill

@./../_shared/metabase-style-guide.md

Review mode detection

IMPORTANT: Before starting the review, determine which mode to use:

  1. PR review mode: If the mcp__github__create_pending_pull_request_review tool is available, you are reviewing a GitHub PR

- Use the pending review workflow to post all issues as one cohesive review - Follow the workflow steps in "PR review mode format" below

  1. Local review mode: If the MCP tool is NOT available, output issues in the conversation

- Format all issues in a numbered markdown list (as described in "Feedback format" below)

Review process

  1. Detect review mode - Check if mcp__github__create_pending_pull_request_review is available
  2. Read the changes through once to understand intent
  3. Check all issues that violate style guide or significantly impact readability
  4. Only flag issues worth mentioning - if it won't make a material difference to the reader, skip it
  5. REQUIRED: Number ALL feedback sequentially - Start from Issue 1 and increment for each issue found

Review checklist

Run through the diff looking for these issues:

Tone and voice:

  • Formal/corporate language ("utilize" not "use", "offerings", etc.)
  • "Users" instead of "people" or "companies"
  • Excessive exclamation points or overly peppy tone
  • Telling readers something is cool instead of showing them

Structure and clarity:

  • Important information buried instead of leading
  • Verbose text that adds little value
  • Paragraphs without clear purpose
  • Vague headings that don't convey the point
  • Instructions explain "why" before telling "what to do"
  • Tasks described as "easy" or "simple"

Links and references:

  • Linking the word "here" instead of descriptive text
  • Links in headings (unless entire heading is a link)

Formatting:

  • Ampersands as "and" substitute (except proper nouns)
  • Inconsistent list formatting

Code and examples:

  • Code examples that don't work or would error
  • Commands not in execution order
  • Full-width screenshots instead of scoped UI elements
  • Excessive or unnecessary images

Sentence construction:

  • Overuse of pronouns when introducing new terms

Quick scan table

PatternIssue
we can do X, our featureShould be "Metabase" or "it"
click here, read more hereNeed descriptive link text
easy, simple, justRemove condescending qualifiers
usersShould be "people" or "companies" if possible

Feedback format

MANDATORY REQUIREMENT: Every single issue MUST be numbered sequentially starting from Issue 1.

This numbered format is NON-NEGOTIABLE. It allows users to efficiently reference specific issues (e.g., "fix issues 1, 3, and 5") and track which feedback has been addressed.

Local review mode format

When outputting issues in the conversation (local mode), use this format:

## Issues

**Issue 1: [Brief title]**
Line X: Succinct description of the issue
[code or example]
Suggested fix or succinct explanation

**Issue 2: [Brief title]**
Line Y: Description of the issue
Suggested fix or explanation

**Issue 3: [Brief title]**
...

Examples:

Issue 1: Formal tone Line 15: This could be more conversational. Consider: "You can't..." instead of "You cannot..."
Issue 2: Vague heading Line 8: The heading could be more specific. Try stating the point directly: "Run migrations before upgrading" vs "Upgrade process"

PR review mode format

When posting to GitHub (PR mode), use the pending review workflow:

Workflow steps:

  1. Start a review: Use mcp__github__create_pending_pull_request_review to begin a pending review

- This creates a draft review that won't be visible until submitted

  1. Get diff information: Use mcp__github__get_pull_request_diff to understand the code changes and line numbers

- This helps you determine the correct file paths and line numbers for comments

  1. Identify ALL issues: Read through all changes and identify every issue worth mentioning

- Collect all issues before posting any comments - Number them sequentially (Issue 1, Issue 2, Issue 3, etc.)

  1. Add review comments: Use mcp__github__add_pull_request_review_comment_to_pending_review for each issue

- CRITICAL: Post ALL comments in a SINGLE response using multiple tool calls in parallel - Each comment should reference a specific file path and line number from the diff - Start each comment body with **Issue N: [Brief title]** - Include the description and suggested fix

  1. Submit the review: Use mcp__github__submit_pending_pull_request_review to publish all comments at once

- Use event type "COMMENT" (NOT "REQUEST_CHANGES") to make it non-blocking - Do NOT include a body message - Leave the body empty or omit it entirely - All comments will appear together as one cohesive review

Comment format example:

**Issue 1: Formal tone**

This could be more conversational. Consider: "You can't..." instead of "You cannot..."

IMPORTANT:

  • Each issue gets its own review comment attached to the pending review
  • Number ALL comments sequentially (Issue 1, Issue 2, Issue 3, etc.)
  • Always start the comment body with **Issue N: [Brief title]**
  • MUST add all comments in parallel in a single response - Do NOT add them one after another in separate responses
  • Do NOT output a summary message to the conversation - only post GitHub review comments
  • When submitting the review, do NOT include a body parameter (or leave it empty) to avoid cluttering the PR with summary text
  • The review will appear as a single review with multiple comments when submitted

Final check

  1. Remove any issues from your assessment that won't make a material difference to the reader if addressed. Only flag issues worth the author's time to fix.
  2. Verify all issues are numbered sequentially starting from Issue 1 with no gaps in numbering.
  3. Confirm the format exactly matches: **Issue N: [Brief title]** where N is the issue number.
  4. In PR mode: Verify each issue was posted as a separate GitHub comment (not output to conversation).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.72%
按下载量换算1,157

OpenCode

24.88%
按下载量换算968

Cursor

16.24%
按下载量换算632

Gemini CLI

13.31%
按下载量换算518

Codex

8.05%
按下载量换算313

Antigravity

3.15%
按下载量换算123

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills