Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计未展示

docs-review文档审查

Agent Skill

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

总安装

353

周安装

15

GitHub Stars

公开资料未说明

下载量

124
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add microck/ordinary-claude-skills --skill "docs-review"

简介

docs-review 用于辅助文档、README 和 Markdown 的整理与改写。

  • 适合提炼结构、补齐章节、统一术语或检查链接。
  • 使用时应保留项目已有事实,避免把未确认信息写成确定结论。
  • 涉及对外文案时,需控制语气,避免过度营销或夸大能力。
  • 安装方式:github,命令:npx skills add microck/ordinary-claude-skills --skill "docs-review

SKILL.md

name
docs-review
description
Review documentation changes for compliance with the Metabase writing style guide. Use when reviewing pull requests, files, or diffs containing documentation markdown files.
allowed-tools
Read, Grep, Bash, Glob

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:

  • [ ] Backticks on UI elements (should use bold)
  • [ ] Backticks used as quotation marks
  • [ ] 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
Button name or UI elementShould use bold not backticks
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: Backticks on UI elements Line 42: This uses backticks for the UI element. Use bold instead: Filter not Filter.
Issue 2: Formal tone Line 15: This could be more conversational. Consider: "You can't..." instead of "You cannot..."
Issue 3: 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: Backticks on UI elements**

This uses backticks for the UI element. Use **bold** instead: **Filter** not `Filter`.

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

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

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

平台分布

trae

28.72%
按下载量换算36

Antigravity

20.85%
按下载量换算26

windsurf

18.95%
按下载量换算23

Claude Code

14.14%
按下载量换算18

Codex

8.71%
按下载量换算11

Gemini CLI

3.83%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills