Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

skill-improver技能提高者

Agent Skill

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

总安装

36,360

周安装

1,519

GitHub Stars

4,872

下载量

11,880
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/trailofbits/skills --skill skill-improver

简介

通过自动审查修复周期迭代地完善 Claude 代码技能,直到达到质量标准。

  • 运行重复的技能审核员评估并在连续循环中应用修复,仅在关键和主要问题得到解决时停止
  • 按严重性对问题进行分类:关键(缺少前题、路径损坏)、主要(弱触发器、缺少指导部分)和次要(需要单独评估的风格偏好)
  • 需要插件开发
  • 插件,仅适用于技能目录中的 SKILL.md 文件
  • 最适合多问题技能或需要系统完善的新技能;使用 /skill-reviewer
  • 直接进行一次性评审

SKILL.md

Skill Improvement Methodology

Iteratively improve a Claude Code skill using the skill-reviewer agent until it meets quality standards.

Prerequisites

Requires the plugin-dev plugin which provides the skill-reviewer agent.

Verify it's enabled: run /pluginsplugin-dev should appear in the list. If missing, install from the Trail of Bits plugin repository.

Core Loop

  1. Review - Call skill-reviewer on the target skill
  2. Categorize - Parse issues by severity
  3. Fix - Address critical and major issues
  4. Evaluate - Check minor issues for validity before fixing
  5. Repeat - Continue until quality bar is met

When to Use

  • Improving a skill with multiple quality issues
  • Iterating on a new skill until it meets standards
  • Automated fix-review cycles instead of manual editing
  • Consistent quality enforcement across skills

When NOT to Use

  • One-time review: Use /skill-reviewer directly instead
  • Quick single fixes: Edit the file directly
  • Non-skill files: Only works on SKILL.md files
  • Experimental skills: Manual iteration gives more control during exploration

Issue Categorization

Critical Issues (MUST fix immediately)

These block skill loading or cause runtime failures:

  • Missing required frontmatter fields (name, description) — Claude cannot index or trigger the skill
  • Invalid YAML frontmatter syntax — Parsing fails, skill won't load
  • Referenced files that don't exist — Runtime errors when Claude follows links
  • Broken file paths — Same as above, leads to tool failures

Major Issues (MUST fix)

These significantly degrade skill effectiveness:

  • Weak or vague trigger descriptions — Claude may not recognize when to use the skill
  • Wrong writing voice (second person "you" instead of imperative) — Inconsistent with Claude's execution model
  • SKILL.md exceeds 500 lines without using references/ — Overloads context, reduces comprehension
  • Missing "When to Use" or "When NOT to Use" sections — Required by project quality standards
  • Description doesn't specify when to trigger — Skill may never be selected

Minor Issues (Evaluate before fixing)

These are polish items that may or may not improve the skill:

  • Subjective style preferences — Reviewer may have different taste than author
  • Optional enhancements — May add complexity without proportional value
  • "Nice to have" improvements — Consider cost-benefit before implementing
  • Formatting suggestions — Often valid but low impact

Minor Issue Evaluation

Before implementing any minor issue fix, evaluate:

  1. Is this a genuine improvement? - Does it add real value or just satisfy a preference?
  2. Could this be a false positive? - Is the reviewer misunderstanding context?
  3. Would this actually help Claude use the skill? - Focus on functional improvements

Only implement minor fixes that are clearly beneficial. Skill-reviewer may produce false positives.

Invoking skill-reviewer

Use the skill-reviewer agent from the plugin-dev plugin. Request a review by asking Claude to:

Review the skill at [SKILL_PATH] using the plugin-dev:skill-reviewer agent. Provide a detailed quality assessment with issues categorized by severity.

Replace [SKILL_PATH] with the absolute path to the skill directory (e.g., /path/to/plugins/my-plugin/skills/my-skill).

Example Fix Cycle

Iteration 1 — skill-reviewer output:

Critical: SKILL.md:1 - Missing required 'name' field in frontmatter
Major: SKILL.md:3 - Description uses second person ("you should use")
Major: Missing "When NOT to Use" section
Minor: Line 45 is verbose

Fixes applied:

  • Added name field to frontmatter
  • Rewrote description in third person
  • Added "When NOT to Use" section

Iteration 2 — run skill-reviewer again to verify fixes:

Minor: Line 45 is verbose

Minor issue evaluation: Line 45 communicates effectively as-is. The verbosity provides useful context. Skip.

All critical/major issues resolved. Output the completion marker:

<skill-improvement-complete>

Note: The marker MUST appear in the output. Statements like "quality bar met" or "looks good" will NOT stop the loop.

Completion Criteria

CRITICAL: The stop hook ONLY checks for the explicit marker below. No other signal will terminate the loop.

Output this marker when done:

<skill-improvement-complete>

When to output the marker:

  1. skill-reviewer reports "Pass" or no issues found → output marker immediately
  2. All critical and major issues are fixed AND you've verified the fixes → output marker
  3. Remaining issues are only minor AND you've evaluated them as false positives or not worth fixing → output marker

When NOT to output the marker:

  • Any critical issue remains unfixed
  • Any major issue remains unfixed
  • You haven't run skill-reviewer to verify your fixes worked

The marker is the ONLY way to complete the loop. Natural language like "looks good" or "quality bar met" will NOT stop the loop.

Rationalizations to Reject

  • "I'll just mark it complete and come back later" - Fix issues now
  • "This minor issue seems wrong, I'll skip all of them" - Evaluate each one individually
  • "The reviewer is being too strict" - The quality bar exists for a reason
  • "It's good enough" - If there are major issues, it's not good enough

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.83%
按下载量换算4,613

Claude

27.87%
按下载量换算3,311

Cursor

18.71%
按下载量换算2,223

Gemini CLI

8.51%
按下载量换算1,011

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills