Token导航 LogoToken导航TokenDH.com
AI 工具只读github未标认证来源可访问clear审计通过

reviewing-skills复习技巧

Agent Skill

reviewing-skills 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

558

周安装

23

GitHub Stars

2

下载量

182
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/taisukeoe/agentic-ai-skills-creator --skill reviewing-skills

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写。
  • 注意避免执行未知命令或修改未授权内容。

SKILL.md

Reviewing Skills

Comprehensive review of agent skills against Claude's official best practices.

Quick Start

To review a skill:

  1. Ask user for skill path (e.g., .claude/skills/skill-name/)
  2. Read SKILL.md and analyze structure
  3. Check against best practices
  4. Provide detailed feedback with priorities

Example review output:

## Compliance Score
- Naming: ✓ Excellent - `processing-pdfs` (gerund form)
- Description: ⚠ Needs work - Missing "when to use"
- Size: ✓ Good - 234 lines

## Important Issues
- Add "Use when..." to description for better triggering

Review Process

Step 1: Initial Analysis

Read and analyze:

  • SKILL.md (frontmatter and body)
  • Directory structure
  • Reference files (if any)
  • Scripts/assets (if any)

Step 2: Core Compliance Checks

Naming (gerund form preferred):

  • ✓ Good: processing-pdfs, analyzing-data, managing-workflows
  • ✗ Avoid: helper, utils, tools, anthropic-*, claude-*
  • Requirements: max 64 chars, lowercase/numbers/hyphens only, no XML tags

Description (third person, what + when):

  • ✓ Specific with key terms
  • ✓ Includes both what it does and when to use it
  • ✗ Vague ("helps with documents")
  • Requirements: non-empty, max 1024 chars, no XML tags, third person only

SKILL.md Size:

  • Target: <500 lines (ideally 200-400)
  • If >500 lines: suggest moving content to references

Progressive Disclosure:

  • Level 1: Metadata (name + description) always loaded
  • Level 2: SKILL.md body loaded when triggered
  • Level 3: References loaded as needed
  • Check: Are details properly split into reference files?

Single Responsibility:

  • Does skill focus on one clear purpose?
  • Or does it try to be a multi-purpose helper?

allowed-tools (if present):

  • ✗ Too broad: Bash(git:*) (includes destructive operations)
  • ✓ Specific: Bash(git status:*) Bash(git diff:*) Bash(git log:*)
  • ✗ Unnecessary: Read, Glob (already allowed by default)
  • ✗ Dangerous: Edit, Write, Bash(rm:*) (destructive tools should not be pre-approved)
  • Check: Are only non-destructive commands allowed?
  • Check: Are subcommands specified explicitly?

Step 3: Detailed Structure Review

File Organization:

  • Required: SKILL.md, tests/scenarios.md
  • Optional: README.md (human-facing), references/, scripts/, assets/
  • Should NOT exist: CHANGELOG.md, INSTALLATION_GUIDE.md

Reference Depth:

  • References should be one level deep from SKILL.md
  • Avoid: SKILL.md → ref1.md → ref2.md (too nested)
  • Good: SKILL.md → ref1.md, ref2.md, ref3.md

Reference Files:

  • Files >100 lines should have table of contents
  • Check TOC presence: If reference file >100 lines, verify table of contents exists at top
  • Descriptive file names (not doc1.md, misc.md)
  • Domain-specific organization when appropriate

Content Quality:

  • Concise (only what Claude doesn't know)
  • No time-sensitive information
  • Consistent terminology
  • Concrete examples
  • Clear workflows

Workflows and Validation (see checklist.md for detailed criteria):

  • Complex workflows include checklists for progress tracking
  • Validation patterns used appropriately (plan-validate-execute, validate script, feedback loop)
  • Validation scripts have clear, actionable error messages
  • Workflows explain recovery steps when validation fails
  • Validation level matches task risk (high-risk tasks should have validation)

README.md (optional but recommended):

  • If exists, includes installation instructions and required permissions
  • Explains file structure (especially tests/scenarios.md as self-evaluation scenarios)
  • Clearly human-facing (not duplicating SKILL.md content)
  • Provides overview and usage guidance

Step 4: Generate Feedback

Organize feedback by priority:

Critical Issues (must fix):

  • Name violates requirements
  • Description missing or invalid
  • SKILL.md >500 lines without good reason

Important Issues (should fix):

  • Poor naming (not gerund form, too vague)
  • Weak description (missing "when to use", too vague)
  • Duplicate information between SKILL.md and references
  • Deeply nested references
  • Missing progressive disclosure
  • Missing tests/scenarios.md (required for multi-model testing)

Suggestions (nice to have):

  • Could be more concise
  • Could improve examples
  • Could reorganize for clarity
  • Could add reference files for long sections

Step 5: Provide Actionable Feedback

For each issue:

  1. Explain the problem
  2. Show why it matters
  3. Suggest specific fix
  4. Provide example if helpful

Format:

## Critical Issues
- **Issue**: [Problem description]
  - **Why it matters**: [Impact explanation]
  - **Fix**: [Specific action]
  - **Example**: [If applicable]

## Important Issues
[Same format]

## Suggestions
[Same format]

Output Format

Structure review with these sections:

  • Summary: Overall assessment, key strengths, areas for improvement
  • Compliance Score: Naming, Description, Size, Progressive Disclosure, Structure (each with ✓/⚠/✗)
  • Critical Issues: Must fix (with explanations and fixes)
  • Important Issues: Should fix (with explanations and fixes)
  • Suggestions: Nice to have (with improvements)
  • Next Steps: Prioritized actions

See references/checklist.md for detailed criteria.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.23%
按下载量换算53

Codex

24.65%
按下载量换算45

Gemini CLI

17.12%
按下载量换算31

Antigravity

11.93%
按下载量换算22

OpenCode

7.55%
按下载量换算14

windsurf

3.39%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills