create-agent-skills

Create and audit Claude Code skills with structured SKILL.md files.

1|Updated Apr 13, 2026
One-click install
npx skills add https://github.com/weorbitant/compound-engineering-feat-python-plugin --skill create-agent-skills-weorbitant
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: create-agent-skills
Source: https://github.com/weorbitant/compound-engineering-feat-python-plugin/tree/main/skills/create-agent-skills
Command: npx skills add https://github.com/weorbitant/compound-engineering-feat-python-plugin --skill create-agent-skills-weorbitant

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Provides a standardized methodology for authoring and maintaining Claude Code skills and slash commands, ensuring consistent structure and governance.

Core Features & Use Cases

  • Structured frontmatter and router vs simple skills guidance for new and existing skills
  • Progressive disclosure: separating knowledge into references, templates, and workflows
  • Audit, upgrade, and maintenance workflows to keep skills current and compliant

Quick Start

Follow the SKILL.md template guidelines to craft a new skill or audit an existing one.

Frequently Asked Questions about create-agent-skills

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a Claude Code skill with the correct frontmatter and structure?

A router pattern skill routes intake queries to specialized sub-skills, unlike a simple skill that executes logic directly. Router patterns manage complex workflows by distributing tasks, while simple skills handle single, contained operations without routing logic.

What is progressive disclosure in skill authoring and when should I use it?

Progressive disclosure in skill authoring separates knowledge into references, templates, and workflows rather than embedding everything in one file. Use it when building complex skills to maintain clarity, reduce context load, and keep skills maintainable and compliant.

How do I audit existing Claude Code skills to check for best-practice compliance?

Audit existing Claude Code skills by validating frontmatter rules, checking router pattern implementation, and reviewing progressive disclosure structure. The methodology provides maintenance workflows to upgrade and align existing skills with current best-practices and governance standards.

What's the best way to organize references and templates when building slash commands?

The best way to organize references and templates for slash commands is applying progressive disclosure: separate static knowledge into reference files, reusable structures into templates, and execution logic into distinct workflow files within the skill directory.

When should I upgrade a simple skill to a router pattern?

Upgrade a simple skill to a router pattern when the skill must handle multiple distinct intake routes or complex workflows. Router patterns add overhead but provide better routing, validation, and maintainability for skills with diverse operational branches.