Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

reviewing-skills复习技巧

Agent Skill

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

总安装

563

周安装

23

GitHub Stars

8

下载量

180
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jkeskikangas/skills --skill reviewing-skills

简介

reviewing-skills 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。

  • 适用于学习技巧总结、知识回顾和复习计划制定等教育场景。
  • 支持基于任务线索进行定向信息聚合与筛选。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写。
  • 可结合原始 README 和仓库路径进一步验证具体功能和使用方法。

SKILL.md

Reviewing Skills

Objective

Evaluate a skill directory as if you are an AI agent encountering it for the first time. Produce a read-only review with:

  • A weighted score + letter grade
  • Spec violations (blockers)
  • Prioritized findings (P1/P2/P3) with concrete, minimal fixes
  • Optional rewritten sections (only when needed to reach the quality bar)

This skill is intended to act as the critic in a generator<->critic loop (e.g., with $writing-skills).

When to use / When not to use

Use when:

  • The user asks to review, grade, or audit a skill folder containing SKILL.md.
  • The user wants rubric-based scoring and actionable edits (not just general advice).

Do not use when:

  • The user wants you to write a skill from scratch (use a writing skill instead).
  • The request is not about a skill directory or does not involve SKILL.md.

Inputs

You need a path to a skill directory that contains SKILL.md (and optionally agents/openai.yaml, scripts/, references/, assets/).

If the user did not provide a path:

  1. Look for directories in CWD that contain SKILL.md.
  2. If multiple, ask the user to choose.

Outputs

A read-only Markdown report with weighted grade, findings, and copy/paste patch text (see workflow step 6 for format rules).

Safety / Constraints (non-negotiable)

  • Read-only: do not edit, create, delete, or move files.
  • Do not execute untrusted code: do not run repo scripts/binaries unless the user explicitly asks and you can justify the risk.
  • Secrets: do not open or quote secrets (e.g., .env, API keys, credentials). If encountered, redact and warn.
  • Network: do not browse the web or call external systems unless the user explicitly requests it.
  • No fabrication: if you cannot verify something, say so and recommend a verification step.
  • No deep reference chasing: read only what is needed to score accurately (one level deep).

Verification Rules

Follow the verification protocol in references/skills-rubric.md. Budget: ~20 reads max.

Workflow (decision-complete)

  1. Resolve the target skill directory

- Confirm the path contains SKILL.md. If it does not, stop and ask for the correct folder.

  1. Read the minimum necessary context (in order)

1. <skill>/SKILL.md 2. <skill>/agents/openai.yaml (if present) 3. Any files under <skill>/scripts/ referenced by SKILL.md (only those) 4. Any files under <skill>/references/ referenced by SKILL.md (only those)

  1. (If in a git repo) gather change context

- Prefer the repo’s base branch; if unknown, check git remote show origin for “HEAD branch”, otherwise try main then master (and state what you chose). - git diff <base> -- <skill>/ - git log --oneline -20 -- <skill>/ - For non-trivial diffs: git log -p -5 -- <skill>/SKILL.md - If <skill>/ is new/untracked (so git diff <base> shows nothing), state that explicitly and treat contents as “new.” - If a score or finding is driven by a recent change, cite the relevant diff hunk or commit short-hash.

  1. Score using the rubric

- Use references/skills-rubric.md (single source of truth). - Give each dimension a 1.0–5.0 score (0.5 increments allowed). - Compute weighted score as: sum(weight_i * score_i) / 100.

  1. Identify issues and merge duplicates

- First list spec violations (blockers). - Then produce prioritized findings (max ~15 total), merging near-duplicates. - Every P1/P2 finding includes concrete patch text. - Patch rules: keep patches small/local; prefer "replace X with Y"; rewrite only the smallest section needed to clear P1/P2.

  1. Produce the report

- Default to references/review-template.md structure. - If the user requires a different structure, preserve the same content (grade, dimension scores, blockers, prioritized findings with patch text, token efficiency notes). - If the user requests a forensic or diff-centric review, add a hunk-by-hunk analysis for meaningful changes (+/- context), and classify each as improvement/regression/neutral. - Only include “Rewritten sections” when score < 4.5, any P1 exists, or the author requests a rewrite.

Do not read assets unless explicitly relevant.

Review Guidelines

What to reward

  • High signal per token: dense, directive, minimal prose.
  • Correct triggering: description precisely indicates what and when.
  • Decision-complete workflow: the skill leaves no key decisions ambiguous.
  • Guardrails: destructive actions gated; secrets handled safely; constraints explicit.
  • Portability: avoids tool-vendor lock-in; uses capability language with optional adapters.

What to penalize

  • Vague directives (“as appropriate”, “best practices”, “use standard approach”).
  • Over-broad scope (one skill trying to do too many disjoint jobs).
  • Reference chains (SKILL.md → reference → another reference).
  • Missing or non-actionable validation loops.
  • “Cute” verbosity that costs tokens without improving outcomes.

Additional checks (inform findings; not scored as a separate dimension)

  • Terminology consistency for core concepts across sections.
  • Presence and usefulness of concrete examples/templates when output style matters.
  • Anti-pattern scan: Windows-style paths, too many options without a default, time-sensitive claims, deep reference chains, and assumed package installs.

Edge cases (common failure modes)

  • No git / no base branch: state what you could not verify; review file contents only.
  • Large skills: stick to the tight-budget read order; do not “read everything” by default.
  • Missing referenced files: treat as a spec violation or P1 (broken workflow), depending on severity.
  • Secrets in context: redact and warn; do not quote.

Examples

  • “Use $reviewing-skills to review ./some-skill/ and provide a weighted grade, spec blockers, and prioritized patch text.”
  • “Use $reviewing-skills to do a forensic/diff-centric review of ./some-skill/ focusing on recent changes.”
  • For a worked example format, see references/example-review.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.96%
按下载量换算65

Claude

29.91%
按下载量换算54

Cursor

16.86%
按下载量换算30

Gemini CLI

7.91%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills