skill-creator

Create Agent Skills with standardized templates and packaging workflows.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/pascalvanderheiden/my-agent-skills --skill skill-creator-pascalvanderheiden
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-creator
Source: https://github.com/pascalvanderheiden/my-agent-skills/tree/main/skills/skill-creator
Command: npx skills add https://github.com/pascalvanderheiden/my-agent-skills --skill skill-creator-pascalvanderheiden

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill guides teams and developers in crafting modular, reusable Agent Skills by providing a standardized frontmatter template, a scalable structure, and a workflow for assembling scripts, references, and assets into a distributable package.

Core Features & Use Cases

  • Structured SKILL.md templates: Enforces mandatory name/description frontmatter and a focused Markdown body that loads on demand.
  • Resource organization guidance: Demonstrates how to arrange optional scripts/, references/, and assets/ directories for predictable loading and reuse.
  • Packaging and validation workflow: Outlines how to initialize Skilled templates with init_skill.py and package them with package_skill.py for distribution.
  • Use Case: A team wants to create a new skill to extend Claude with a domain-specific workflow; the skill package can be versioned, validated, and deployed as a .skill file.

Quick Start

  1. Define the skill's frontmatter in SKILL.md with name and description.
  2. Choose a structure (Workflow-Based, Task-Based, or Reference/Guidelines) and draft the body accordingly.
  3. Initialize the skill using the provided template and then package it for distribution.

Frequently Asked Questions about skill-creator

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

FAQPage Schema
How do I create an Agent Skill with the correct frontmatter and structure?

To create an Agent Skill, define mandatory name and description frontmatter in a SKILL.md file, then choose a Workflow-Based, Task-Based, or Reference structure for the body. This ensures your skill loads on demand with predictable organization.

What is the best way to package and validate Agent Skills for distribution?

The best way to package Agent Skills is using the init_skill.py script to initialize templates and package_skill.py to validate and assemble them into a distributable .skill file. This workflow handles versioning and deployment preparation.

How should I organize scripts, references, and assets when building Agent Skills?

Organize optional scripts, references, and assets into dedicated directories alongside your SKILL.md file. This structure ensures predictable loading and reuse when extending Claude with domain-specific workflows and tools.

Can I update existing Agent Skills to extend Claude with new domain knowledge?

Yes, you can update existing Agent Skills by modifying the SKILL.md frontmatter and body, then running the packaging workflow to validate changes. This applies to teams building new skills or updating existing ones with new domain workflows.

Do I need any dependencies to start building Agent Skills?

No external dependencies are required to start building Agent Skills. You only need to define the SKILL.md frontmatter and use the provided init_skill.py and package_skill.py scripts for validation and distribution.