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

skill-validator技能验证器

Agent Skill

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

总安装

1,129

周安装

48

GitHub Stars

158

下载量

396
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/panaversity/agentfactory --skill skill-validator

简介

skill-validator 用于查找、检索和筛选相关信息,支持多宿主环境快速定位候选结果。

  • 适合在关键词搜索、任务场景匹配或来源线索梳理时使用。
  • 可结合原始 README 和安装命令进一步验证具体用法。
  • 使用前应确认权限范围、维护状态及是否涉及联网或文件操作。
  • 建议核对来源仓库状态,避免推荐未经安全评估的第三方能力包。

SKILL.md

Skill Validator

Validate any skill against production-level quality criteria.

Before Implementation

SourceGather
Skill DirectorySKILL.md, references/, scripts/, assets/
Skill TypeBuilder, Guide, Automation, Analyzer, or Validator
ConversationValidation purpose (audit, improvement, review)

What This Skill Does NOT Do

  • Test skills in production environments
  • Automatically fix identified issues
  • Validate skill runtime behavior (only structure/content)
  • Replace human judgment on domain accuracy

Validation Workflow

Phase 1: Gather Context

  1. Read the skill's SKILL.md completely
  2. Identify skill type from frontmatter description:

- Builder skill (creates artifacts) - Guide skill (provides instructions) - Automation skill (executes workflows) - Analyzer skill (extracts insights) - Validator skill (enforces quality) - Hybrid skill (combination of above)

  1. Read all reference files in references/ directory
  2. Check for assets/scripts directories
  3. Note frontmatter fields (name, description, allowed-tools, model)

Phase 2: Apply Criteria

Evaluate against 9 criteria categories. Each criterion scores 0-3:

  • 0: Missing/Absent
  • 1: Present but inadequate
  • 2: Adequate implementation
  • 3: Excellent implementation

Criteria Categories

1. Structure & Anatomy (Weight: 12%)

CriterionWhat to Check
SKILL.md existsRoot file present
Line count<500 lines (context is precious)
Frontmatter completename and description present in YAML
Name constraints1-64 chars; lowercase alphanumeric + hyphens; no consecutive hyphens; can't start/end with hyphen; must match directory name
Description format[What] + [When] format; ≤1024 chars
Description styleThird-person: "This skill should be used when..."
No extraneous filesNo README.md, CHANGELOG.md, LICENSE in skill dir
Progressive disclosureDetails in references/, not bloated SKILL.md
Asset organizationTemplates in assets/, scripts in scripts/
Large file guidanceIf references >10k words, grep patterns in SKILL.md

Fail condition: Missing SKILL.md or >800 lines = automatic fail

2. Content Quality (Weight: 15%)

CriterionWhat to Check
ConcisenessNo verbose explanations, context is public good
Imperative formInstructions use "Do X" not "You should do X"
Appropriate freedomConstraints where needed, flexibility where safe
Scope clarityClear what skill does AND does not do
No hallucination riskNo instructions that encourage making up info
Output specificationClear expected outputs defined

3. User Interaction (Weight: 12%)

CriterionWhat to Check
Clarification triggersAsks questions before acting on ambiguity
Required vs optionalDistinguishes must-know from nice-to-know
Graceful handlingWhat to do when user doesn't answer
No over-askingDoesn't ask obvious or inferrable questions
Question pacingAvoids too many questions in single message
Context awarenessUses available context before asking

Key pattern to look for:

## Required Clarifications
1. Question about X
2. Question about Y

## Optional Clarifications
3. Question about Z (if relevant)

Note: Avoid asking too many questions in a single message.

4. Documentation & References (Weight: 10%)

CriterionWhat to Check
Source URLsOfficial documentation links provided
Reference filesComplex details in references/ not main file
Fetch guidanceInstructions to fetch docs for unlisted patterns
Version awarenessNotes about checking for latest patterns
Example coverageGood/bad examples for key patterns

Key pattern to look for:

| Resource | URL | Use For |
|----------|-----|---------|
| Official Docs | https://... | Complex cases |

5. Domain Standards (Weight: 10%)

CriterionWhat to Check
Best practicesFollows domain conventions (e.g., WCAG, OWASP)
Enforcement mechanismChecklists, validation steps, must-verify items
Anti-patternsLists what NOT to do
Quality gatesOutput checklist before delivery

Key pattern to look for:

### Must Follow
- [ ] Requirement 1
- [ ] Requirement 2

### Must Avoid
- Antipattern 1
- Antipattern 2

6. Technical Robustness (Weight: 8%)

CriterionWhat to Check
Error handlingGuidance for failure scenarios
Security considerationsInput validation, secrets handling if relevant
DependenciesExternal tools/APIs documented
Edge casesCommon edge cases addressed
TestabilityCan outputs be verified?

7. Maintainability (Weight: 8%)

CriterionWhat to Check
ModularityReferences are self-contained topics
Update pathEasy to update when standards change
No hardcoded valuesUses placeholders/variables where appropriate
Clear organizationLogical section ordering

8. Zero-Shot Implementation (Weight: 12%)

Skills should enable single-interaction implementation with embedded expertise.

CriterionWhat to Check
Before Implementation sectionContext gathering guidance present
Codebase contextGuidance to scan existing structure/patterns
Conversation contextUses discussed requirements/decisions
Embedded expertiseDomain knowledge in references/, not runtime discovery
User-only questionsOnly asks for USER requirements, not domain knowledge

Key pattern to look for:

## Before Implementation

Gather context to ensure successful implementation:

| Source | Gather |
|--------|--------|
| **Codebase** | Existing structure, patterns, conventions |
| **Conversation** | User's specific requirements |
| **Skill References** | Domain patterns from `references/` |
| **User Guidelines** | Project-specific conventions |

Red flag: Skill instructs to "research" or "discover" domain knowledge at runtime instead of embedding it.

9. Reusability (Weight: 13%)

Skills should handle variations, not single requirements.

CriterionWhat to Check
Handles variationsNot hardcoded to single use case
Variable elementsClarifications capture what VARIES
Constant patternsDomain best practices encoded as constants
Not requirement-specificAvoids hardcoded data, tools, configs
Abstraction levelAppropriate generalization for domain

Good example:

"Create visualizations - adaptable to data shape, chart type, library"

Bad example (too specific):

"Create bar chart with sales data using Recharts"

Key check: Does the skill work for multiple use cases within its domain?


Type-Specific Validation

After scoring general criteria, verify type-specific requirements:

TypeMust Have
BuilderClarifications, Output Spec, Domain Standards, Output Checklist
GuideWorkflow Steps, Examples (Good/Bad), Official Docs links
AutomationScripts in scripts/, Dependencies, Error Handling, I/O Spec
AnalyzerAnalysis Scope, Evaluation Criteria, Output Format, Synthesis
ValidatorQuality Criteria, Scoring Rubric, Thresholds, Remediation

Scoring: Deduct 10 points if type-specific requirements missing for identified type.


Scoring Guide

Category Scores

Calculate each category score:

Category Score = (Sum of criterion scores) / (Max possible) * 100

Overall Score

Overall = Σ(Category Score × Weight)

Rating Thresholds

ScoreRatingMeaning
90-100ProductionReady for wide use
75-89GoodMinor improvements needed
60-74AdequateFunctional but needs work
40-59DevelopingSignificant gaps
0-39IncompleteMajor rework required

Output Format

Generate validation report:

# Skill Validation Report: [skill-name]

**Rating**: [Production/Good/Adequate/Developing/Incomplete]
**Overall Score**: [X]/100

## Summary
[2-3 sentence assessment]

## Category Scores

| Category | Score | Weight | Weighted |
|----------|-------|--------|----------|
| Structure & Anatomy | X/100 | 12% | X |
| Content Quality | X/100 | 15% | X |
| User Interaction | X/100 | 12% | X |
| Documentation | X/100 | 10% | X |
| Domain Standards | X/100 | 10% | X |
| Technical Robustness | X/100 | 8% | X |
| Maintainability | X/100 | 8% | X |
| Zero-Shot Implementation | X/100 | 12% | X |
| Reusability | X/100 | 13% | X |
| **Type-Specific Deduction** | -X | - | -X |

## Critical Issues (if any)
- [Issue requiring immediate fix]

## Improvement Recommendations
1. **High Priority**: [Specific action]
2. **Medium Priority**: [Specific action]
3. **Low Priority**: [Specific action]

## Strengths
- [What skill does well]

Quick Validation Checklist

For rapid assessment, check these critical items:

Structure & Frontmatter

  • SKILL.md <500 lines
  • Frontmatter: name (≤64 chars, lowercase, hyphens) + description (≤1024 chars)
  • Description uses third-person style ("This skill should be used when...")
  • No README.md/CHANGELOG.md in skill directory

Content & Interaction

  • Has clarification questions (Required vs Optional)
  • Has output specification
  • Has official documentation links

Zero-Shot & Reusability

  • Has "Before Implementation" section (context gathering)
  • Domain expertise embedded in references/ (not runtime discovery)
  • Handles variations (not requirement-specific)

Type-Specific (check based on skill type)

  • Builder: Clarifications + Output Spec + Standards + Checklist
  • Guide: Workflow + Examples + Docs
  • Automation: Scripts + Dependencies + Error Handling
  • Analyzer: Scope + Criteria + Output Format
  • Validator: Criteria + Scoring + Thresholds + Remediation

If 10+ checked: Likely Production (90+) If 7-9 checked: Likely Good (75-89) If 5-6 checked: Likely Adequate (60-74) If <5 checked: Needs significant work


Reference Files

FileWhen to Read
references/detailed-criteria.mdDeep evaluation of specific criterion
references/scoring-examples.mdExample validations for calibration
references/improvement-patterns.mdCommon fixes for common issues

Usage Examples

Validate a skill

Validate the chatgpt-widget-creator skill against production criteria

Quick audit

Quick validation check on mcp-builder skill

Focused review

Check if skill-creator skill has proper user interaction patterns

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.03%
按下载量换算135

Claude

30.4%
按下载量换算120

Cursor

17.93%
按下载量换算71

Gemini CLI

9.34%
按下载量换算37

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills