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

skill-quality-check技能质量检查

Agent Skill

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

总安装

4,074

周安装

175

GitHub Stars

1

下载量

1,428
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skill-quality-check

简介

对 AI Agent Skill 进行多维度质量审核与评分。

  • 适用于安装前或编写 SKILL.md 后的质量改进。
  • 通过 clawhub 安装,提供可行的优化建议。
  • 建议按评分维度逐项完善,提升技能可用性。skill-quality-check 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 注意工具输出仅为参考,需结合实际场景调整。

SKILL.md

name
skill-quality-check
description
>

Skill Quality Check 🔍

Universal quality assessment framework for AI Agent Skills. Evaluates any SKILL.md file across 5 dimensions, outputting a quantified score and actionable improvement suggestions. Designed to work with skills built for Claude, Cursor, Codex, OpenClaw, or any AI agent.

When to Use

  • Before installing a new Skill from any source
  • After writing your own Skill (self-check)
  • Comparing quality of similar Skills
  • Evaluating Skills for ClawHub/SkillHub submission
  • As companion to Skill Creator — learn to write, then learn to audit

Audit Protocol

Step 1: Locate and Read the Target Skill

Find the SKILL.md file:

# Path priority (in order):
1. User-specified path
2. <skills-dir>/<skill-name>/SKILL.md

   # Common locations by platform:
   #   OpenClaw:     ~/.openclaw/skills/<skill-name>/SKILL.md
   #   QClaw:        ~/.qclaw/skills/<skill-name>/SKILL.md
   #   Claude Code:  ~/.claude/skills/<skill-name>/SKILL.md
   #   Cursor:       ~/.cursor/skills/<skill-name>/SKILL.md
   #   Codex:        ~/.codex/skills/<skill-name>/SKILL.md
3. <repo>/skills/<skill-name>/SKILL.md
4. <repo>/<skill-name>/SKILL.md

# If installing from GitHub without a local copy, fetch via curl:
curl -s "https://raw.githubusercontent.com/<owner>/<repo>/main/skills/<skill>/SKILL.md"

Then scan the directory for supporting files:

skill-name/
├── SKILL.md       ✅ required
├── scripts/       ✅ optional (lazy-loaded)
├── references/   ✅ optional (lazy-loaded)
└── assets/        ✅ optional (lazy-loaded)

Step 2: YAML Frontmatter Review

SKILL.md must have YAML frontmatter with only these fields:

---
name: <skill-name>      ✅ required
description: >          ✅ required
# Fields below are NOT recommended in frontmatter:
# ❌ version           → package metadata
# ❌ author            → non-standard
# ❌ license           → non-essential
# ❌ compatibility     → most Skills don't need it
# ❌ tags              → non-standard
---

Review checklist:

  • [ ] Does name and description exist?
  • [ ] Is description under 150 characters (trigger-level content must be concise)?
  • [ ] Does description include trigger keywords ("when to use")?
  • [ ] Are there extra fields wasting Level 1 tokens?

Step 3: Description Quality Assessment

Description is Level 1 content — the AI uses it to decide whether to trigger the Skill. It is a trigger, not a manual.

✅ Good Description:

TDD test-driven development workflow. Use when writing new features,
adding tests, or debugging. Keywords: test-driven, TDD, red-green-refactor.

❌ Bad Description:

This is a comprehensive guide to Test-Driven Development using the
red-green-refactor cycle. First, write a failing test that describes
the behavior you want. Then write the minimum code to make it pass...

*(Too long — contains Level 2 content that belongs in SKILL.md body)*

Scoring rubric (each dimension 0-10):

#DimensionQuestion
1Trigger AccuracyDoes it clearly state when to use this Skill?
2ConcisenessUnder 150 chars? No explanatory filler?
3Keyword CoverageDoes it include trigger keywords (e.g. TDD, debug, pdf)?
4Non-RedundancyDoes it avoid restating what AI already knows?

Step 4: SKILL.md Body Quality Assessment

Five assessment dimensions (0-10 each):

4.1 Progressive Disclosure

Does it follow the three-layer loading principle?

LayerContentWhen Loaded
Level 1name + descriptionAlways in context
Level 2SKILL.md bodyOn skill trigger
Level 3scripts/ + references/ + assets/On execution, never in context

Review checklist:

  • [ ] Trigger conditions → should be in Description (Level 1)
  • [ ] Execution steps, tool instructions → SKILL.md body (Level 2)
  • [ ] Detailed docs, scripts, templates → references/scripts (Level 3)
  • [ ] SKILL.md body under 500 lines?

4.2 Role Setting

Does the Skill open with a clear role or context definition?

✅ Good example:

# PDF Processing Skill

You are a professional document preparation assistant specializing in
PDF creation and editing workflows...

4.3 Examples

Are there sufficient, relevant, and diverse examples?

Claude recommends 3-5 examples that are:

  • Relevant: tied to real use cases
  • Diverse: cover edge cases
  • Structured: wrapped in XML tags

Review checklist:

  • [ ] Input/output example pairs present?
  • [ ] Core use cases covered?
  • [ ] Edge cases shown?

4.4 Instruction Clarity

Are instructions clear, actionable, and unambiguous?

Review checklist:

  • [ ] Steps listed with numbered lists?
  • [ ] Conditional branches explained?
  • [ ] Error/exception handling covered?
  • [ ] Output format specified (e.g. JSON structure)?

Step 5: Resource Layer Assessment

Are bundled resources used appropriately?

ResourceWhen to UseReview Question
scripts/Deterministic/repeated code executionIs there repetitive code that should be a script?
references/Detailed docs, API specs, domain knowledgeIs there >10k chars of docs not in references/?
assets/Templates, images, fonts for outputAre there files that should be assets, not inline content?

Review checklist:

  • [ ] Long docs in SKILL.md body that should be in references/?
  • [ ] Repeated code snippets that should be scripts?
  • [ ] Scripts have correct paths and dependency notes?

Step 6: Performance Impact Assessment

6.1 Level 1 Token Cost

Formula:

Level 1 cost ≈ len(description) / 4 tokens
(English: ~4 chars ≈ 1 token)

Benchmarks:

  • Excellent: < 50 tokens
  • Good: 50-100 tokens
  • Too long: > 150 tokens → needs trimming

6.2 Level 2 Volume

Review checklist:

  • [ ] SKILL.md body over 500 lines (~5000 tokens)?
  • [ ] Repetitive content that can be trimmed?
  • [ ] AI-common-knowledge content that should be deleted?

6.3 Mis-trigger Risk

High-risk signals:

  • Multiple Skills with overlapping Description keywords
  • Vague Descriptions (e.g. "general-purpose assistant")
  • Too many installed Skills (>10) increases mis-trigger risk

Step 7: Comprehensive Scoring

Aggregate all dimension scores into the final report.

SKILL AUDIT REPORT
═══════════════════════════════════════════════════════════════
Skill: [skill-name]
Source: [local path / GitHub URL / ClawHub]
Audited: [date]
───────────────────────────────────────────────────────────────
I.   YAML FRONTMATTER COMPLIANCE       [X/10]
     ✅ [passed items]
     ❌ [issues]

II.  DESCRIPTION QUALITY               [X/40]
     Trigger Accuracy        [X/10]
     Conciseness             [X/10]
     Keyword Coverage        [X/10]
     Non-Redundancy          [X/10]

III. BODY QUALITY                      [X/40]
     Progressive Disclosure  [X/10]
     Role Setting            [X/10]
     Examples                [X/10]
     Instruction Clarity     [X/10]

IV.  RESOURCE LAYERING                 [X/10]
     scripts/ Usage           [X/5]
     references/ Usage       [X/5]

V.   PERFORMANCE IMPACT                [-5 to +2]
     Level 1 Cost            [penalty/bonus]
     Level 2 Volume          [penalty/bonus]
     Mis-trigger Risk        [penalty/bonus]
───────────────────────────────────────────────────────────────
OVERALL SCORE: X / 100
───────────────────────────────────────────────────────────────
Grade:
  🟢 Excellent (85-100)  — Worth installing, top quality
  🟡 Good (70-84)        — Usable, has room for improvement
  🔴 Acceptable (50-69) — Usable but needs optimization
  ⚫ Poor (<50)          — Not recommended
───────────────────────────────────────────────────────────────
VI.  IMPROVEMENT RECOMMENDATIONS (priority order)

  🔴 P0 (must fix):
     - [specific issue and fix]

  🟡 P1 (strongly recommended):
     - [specific issue and fix]

  🟢 P2 (optional):
     - [nice-to-have improvements]
═══════════════════════════════════════════════════════════════

Scoring Reference

ScoreGradeMeaningAction
85-100🟢 ExcellentMeets all best practicesInstall directly
70-84🟡 GoodMeets most standards, minor issuesInstall, address P1 items
50-69🔴 AcceptableFunctional but有明显缺陷Fork and fix, or wait for update
<50⚫ PoorFails best practicesDo not install, find alternatives

Common Issue Diagnosis

SymptomCauseFix
Description too longFrontmatter >150 tokensMove details to body, keep only trigger keywords
Body too longSKILL.md >500 linesSplit into references/
No examplesText-only instructionsAdd 3-5 XML-wrapped example pairs
Vague roleNo clear Skill boundaryAdd role-setting paragraph
AI-common-knowledge fillerExplaining what AI already knowsDelete, keep only project-specific context
Not layeredDocs in bodyMove to references/
Mis-triggersOverlapping or vague keywordsDifferentiate Descriptions

Skill Quality Check vs. Skill Vetter

| Dimension | Skill Vetter | Skill Quality Check | | Goal | Security review | Quality review | | Core question | Will this Skill harm me? | Is this Skill well-written? | | Focus | Malicious code, permission abuse | Writing standards, performance | | When | Before any install | When assessing quality | | Output | Security report | Quality score + recommendations |

Use both in sequence: Vet for safety first, then audit for quality.

Quick Audit Commands

# Fetch SKILL.md from GitHub
curl -s "https://raw.githubusercontent.com/<owner>/<repo>/main/skills/<skill>/SKILL.md"

# Check frontmatter
grep -A 5 "^---" SKILL.md | head -10

# Estimate Level 2 volume (lines → ~10 tokens/line)
wc -l SKILL.md

Output Requirements

Every audit report must include:

  1. Overall score (X/100) with grade label
  2. Five dimension subscores (radar chart optional)
  3. Improvement recommendations (P0/P1/P2 priority)
  4. Clear "install or not" conclusion

Do not say "this Skill is pretty good" — deliver a specific score, specific issues, and specific fixes.


*Good Skills deserve thorough auditing. Bad Skills deserve honest feedback.* 🔍🦀


Examples

Example 1: Perfect Description (Score 10/10)

Input:

name: tdd-skill
description: >
  TDD test-driven development workflow. Use when writing new features,
  adding tests, or fixing bugs. Keywords: test-driven, TDD, red-green-refactor,
  pytest, unit test.

Audit Result:

  • Trigger Accuracy 10/10 — explicitly states when to use
  • Conciseness 10/10 — well under 150 chars
  • Keyword Coverage 10/10 — all key triggers present
  • Non-Redundancy 10/10 — no AI-common-knowledge filler
  • Description Score: 40/40

Example 2: Manual-Style Description (Score 3/10)

Input:

name: tdd-skill
description: >
  This is a comprehensive guide to Test-Driven Development using
  the red-green-refactor cycle. First, you write a failing test that
  describes the behavior you want. Then write the minimum code to make
  it pass. Then refactor while keeping tests green. This approach
  ensures high test coverage and better code quality...

Audit Result:

  • Trigger Accuracy 5/10 — mentions TDD but buried in explanation
  • Conciseness 1/10 — 280+ chars, reads like a manual
  • Keyword Coverage 5/10 — "TDD" present but no concise trigger list
  • Non-Redundancy 1/10 — explains the TDD cycle (Level 2 content in Level 1)
  • Description Score: 12/40

P0 Recommendation:

Rewrite Description to be under 150 chars. Move the cycle explanation to SKILL.md body.

Example 3: Good Role Setting (Score 9/10)

Input:

# PDF Processing Skill

You are a professional document preparation assistant specializing in
PDF creation, editing, and conversion workflows. You have deep knowledge
of PDF structure, reportlab, pypdf, and weasyprint.

Audit Result:

  • Role clarity 9/10 — clear persona and domain
  • Skill boundary 9/10 —明确的职责范围
  • Context specificity 9/10 — project-specific tools named

Minor improvement (P2): Could add one sentence about what this Skill does NOT cover (e.g. OCR, scanned PDFs).


Example 4: Poor Role Setting (Score 2/10)

Input:

# My Skill

This skill helps you get things done. Use it when you need help.
It provides instructions and guidelines for various tasks.

Audit Result:

  • Role clarity 2/10 — "assistant" is too generic
  • Skill boundary 1/10 — "various tasks" defines nothing
  • Context specificity 1/10 — no project-specific information

P0 Recommendation:

Replace generic language with specific domain context. Define what the Skill does and does not cover.

Example 5: Well-Layered Skill (Score 8/10)

Directory structure:

awesome-skill/
├── SKILL.md              80 lines  (Level 2: execution flow only)
├── references/
│   ├── api-spec.md       450 lines (Level 3: detailed API docs)
│   └── troubleshooting.md 120 lines (Level 3: edge cases)
└── scripts/
    └── validate.sh        (Level 3: deterministic execution)

Audit Result:

  • Progressive Disclosure 9/10 — clear layer separation
  • Body size 9/10 — 80 lines is ideal (not bloated)
  • Resource usage 8/10 — all heavy content in references/
  • Resource Layering Score: 8.5/10

Minor improvement (P2): Could add a brief Layer 1 summary in Description listing which references/ files are most relevant.


Example 6: Bloated SKILL.md (Score 2/10)

Symptom: SKILL.md has 620 lines including a 300-line API reference pasted directly in the body.

Audit Result:

  • Progressive Disclosure 1/10 — Level 3 content in Level 2
  • Body size 1/10 — 620 lines far exceeds 500-line guideline
  • Conciseness 1/10 — 300-line API doc belongs in references/

P0 Recommendation:

Move the API reference to references/api-spec.md. SKILL.md body should be execution flow only (under 500 lines).

Example 7: Mis-Trigger Risk (Score -3 Performance Impact)

Scenario: User has 12 Skills installed. Two of them have "debug" in their Description:

SkillDescription trigger keyword
systematic-debugging"debugging, error, bug"
general-helper"debug, logs, errors, general assistance"

Audit Result:

  • Mis-trigger Risk: -3 penalty
  • The overlap means "debug" alone can't reliably select the right Skill

P1 Recommendation:

Differentiate: systematic-debugging should use "systematic-debugging, root-cause" (more specific); general-helper should remove "debug" entirely or move it lower in priority.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.48%
按下载量换算1,121

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills