Audits Agent Skills for quality, discoverability, and adherence to best practices. Use when reviewing a skill, checking skill quality, auditing skill descriptions, or validating skill structure before committing.
Installation
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Audits Agent Skills for quality, discoverability, and adherence to best practices. Use when reviewing a skill, checking skill quality, auditing skill descriptions, or validating skill structure before committing.
Reviewing Skills
Audit one or more Agent Skills for quality, discoverability, consistency, and
adherence to the Anthropic skill-authoring best practices.
Attach this file to your Copilot Chat context, then invoke it with the skill
folder or SKILL.md file(s) to review. Examples:
Using the Reviewing Skills skill, review .github/skills/command-implementation/.
Review all skills under .github/skills/ for best-practice compliance.
Related skills
Make Skill Template — scaffold new skills;
use this reviewing skill afterward to validate quality
PR Readiness Review — final pre-PR quality
gate (broader than skill-specific review)
Input
One or more skill directories or SKILL.md files from .github/skills/.
Review checklist
Work through each section below for every skill under review.
1. Frontmatter
name is present, 1-64 chars, lowercase letters/numbers/hyphens only
name matches the folder name exactly
name does not contain reserved words (anthropic, claude)
description is present, 1-1024 chars
description does not contain XML tags
2. Description quality
The description is the primary discovery mechanism — it determines whether the
skill is selected from potentially hundreds of available skills.
Written in third person (not "I can…" or "You can…")
Describes what the skill does (capabilities)
Describes when to use it (triggers, scenarios, keywords)
Includes specific key terms users are likely to mention
Is not vague (e.g. "Helps with documents" is too vague)
3. Body structure and size
SKILL.md body targets under 500 lines and is reviewed carefully above
600 lines
Exceeding the target is justified when splitting always-needed workflow or
review rules would make the skill less effective
If approaching the limit, situational content is split into separate
reference files before core workflows or checklists are split
Reference files are at most one level deep from SKILL.md (no
deeply-nested chains like SKILL → A.md → B.md → actual content)
Reference files longer than 100 lines include a table of contents
Reference files state their purpose and when the agent should load them
4. Conciseness
Every token in a loaded skill competes with conversation history and other
context. Challenge each piece of information:
Only includes context the model does not already have
Does not over-explain concepts the model already knows
Avoids redundant paragraphs or verbose preambles
Uses code examples instead of lengthy prose where possible
5. Degrees of freedom
Match instruction specificity to task fragility:
High freedom (general text guidance) for tasks where multiple
approaches are valid and context determines the best route
Medium freedom (pseudocode / parameterized templates) for tasks with a
preferred pattern but acceptable variation
Low freedom (exact scripts, no parameters) for fragile or
error-prone operations where consistency is critical
The chosen level is appropriate for the skill's domain
6. Progressive disclosure
SKILL.md serves as an overview / table of contents
Detailed materials are in separate files loaded only when needed
Mandatory workflow steps, validation loops, and review checklist items stay
in SKILL.md even when detailed examples move to references
Situational, element-specific, type-specific, or platform-specific rules
are good candidates for reference files
File names are descriptive (not doc1.md, file2.md)
Directory structure is organized by domain or feature
7. Workflows and feedback loops
Complex multi-step operations are broken into clear, sequential steps
Long workflows include a progress checklist the agent can track
Validation / feedback loops are present for quality-critical tasks
(run validator → fix errors → repeat until clean)
Decision points use conditional workflow patterns (if X → workflow A,
if Y → workflow B)
For standards and review skills, rules are mandatory unless explicitly
marked Optional; advisory skills consistently distinguish requirements,
recommendations, and examples
8. Content quality
No time-sensitive information (dates that will become stale); if legacy
context is needed, it is in a collapsible "old patterns" section
Consistent terminology throughout (one term per concept, not synonyms)
Named thresholds, modes, phases, or terms are defined before first use and
have one authoritative definition
Examples are concrete, not abstract
Examples and domain facts are technically accurate; repo-specific skills
use real project patterns where practical
All file paths use forward slashes (no Windows-style backslashes)
No "voodoo constants" — every magic number or config value is justified
Important rule sections use real markdown headings, not bold paragraphs as
pseudo-headings
Duplicate rationale and repeated examples are removed, while short
normative checklist rules remain self-contained
9. Cross-skill consistency
When reviewing multiple skills in the same repository:
Naming convention is consistent (all gerund, all noun-phrase, or all
action-oriented — not a mix)
Shared policies (branch rules, commit conventions, quality gates,
changelog policy) do not contradict each other
Cross-skill links in ## Related skills resolve to existing files
Intra-skill links, cross-skill deep links, table-of-contents anchors, and
referenced files resolve after heading or file moves
Every skill referenced in .github/copilot-instructions.md's routing
table resolves to an existing .github/skills/*/SKILL.md file
Skills that extend other skills clearly state what they inherit, override,
or add
Stop/ask checkpoints are used consistently for comparable risk levels
10. Discoverability sections
Every skill in this repository must include these standard sections:
## Contents — table of contents with anchor links
## How to use this skill — brief invocation guidance
## Related skills — cross-links to related skills with one-line
descriptions
Output
For each reviewed skill, produce:
A per-check result table:
#
Check
Status
Issue
A summary of required fixes (if any)
A list of suggestions for improvement (optional, lower priority)