From skill-authoring
Guides authoring and validating Claude Code skills: metadata optimization, lean workflows, progressive disclosure, references, skillgrade evals.
How this skill is triggered — by the user, by Claude, or both
Slash command
/skill-authoring:skill-creatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create professional-grade skills with lean context, deterministic structure, and validation.
Create professional-grade skills with lean context, deterministic structure, and validation.
Check that the frontmatter uses a unique lowercase name, a specific description, and clear negative triggers.
Keep the description short enough to fit within the agent router's metadata budget.
Write the main SKILL.md as a high-level workflow.
Move dense rules, large schemas, and reusable templates into references/ or assets/.
Use scripts/ only for fragile or repetitive logic that should not be re-authored by the agent.
Command the agent to read supporting files only when the current step needs them.
Prefer one-level-deep support files with explicit relative paths.
When a skill depends on repository state that will differ at invocation time, prefer a guarded inline shell snapshot such as !`node -e "..."` instead of baking the current state into prose.
Only do this when the command materially improves the invoked prompt, and keep the output short and deterministic.
If a skill uses inline commands, declare the minimum required allowed-tools entries in frontmatter and keep them read-only.
Create a skillgrade eval when the skill needs regression testing.
Use a deterministic grader for structural checks and an LLM rubric only when qualitative judgment is necessary.
Inspect the skill for any step where the agent is forced to guess.
Replace ambiguous prose with concrete commands, file names, or output expectations.
npx claudepluginhub cap-go/capgo-skills --plugin skill-authoringCreates, updates, or validates SKILL.md agent skills including frontmatter authoring, bundled resource planning, and three-phase discoverability validation.
Creates and refines SKILL.md files with better trigger descriptions, progressive disclosure, and testable behavior. Audits collections for redundancy and evaluates trigger quality.
Creates and validates Claude Code skills per AgentSkills.io 2026 spec and 100-point rubric. Use for building new skills or auditing existing ones.