skill-creator

Create and update Claude skills with SKILL.md metadata and resource bundling.

77|9|Updated Oct 10, 2025
One-click install
npx skills add https://github.com/henkisdabro/claudecode-marketplace --skill skill-creator-henkisdabro
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-creator
Source: https://github.com/henkisdabro/claudecode-marketplace/tree/main/skills/skill-creator
Command: npx skills add https://github.com/henkisdabro/claudecode-marketplace --skill skill-creator-henkisdabro

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) and assets (resource) components.

What problem does it solve?

Developing new AI skills can be complex, requiring careful structuring, context management, and adherence to best practices. This skill provides a guided framework to streamline skill creation, ensuring efficiency and effectiveness.

Core Features & Use Cases

  • Guided Skill Development: Provides a step-by-step process for designing, implementing, and packaging new skills.
  • Context Management Best Practices: Teaches how to leverage SKILL.md, scripts/, references/, and assets/ for optimal context loading.
  • Use Case: A developer wants to create a new skill to automate their internal API calls. They can use this skill to understand how to structure their API documentation in references/, create helper scripts in scripts/, and package it correctly for Claude.

Quick Start

Initialize a new skill named 'my-api-connector' in the 'skills/private' directory.

Frequently Asked Questions about skill-creator

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

FAQPage Schema
How do I structure a new AI skill with proper metadata and components?

Structure a skill by organizing metadata in SKILL.md, then create `scripts/` for helper functions, `references/` for documentation, and `assets/` for resources. This enforces naming conventions and progressive disclosure, ensuring Claude can load context efficiently when the skill runs.

What's the best way to manage context in AI skill development?

Context management in skill development relies on `SKILL.md` metadata, `scripts/` for automation logic, `references/` for domain knowledge, and `assets/` for supporting files. Proper organization lets Claude access only what's needed, reducing token overhead and improving performance.

How do I create an automated skill for API calls?

Create an API connector skill by documenting your API in `references/`, writing helper scripts in `scripts/` to handle calls, packaging resources in `assets/`, and defining the skill's metadata in SKILL.md. This guides Claude through API authentication, request formatting, and response handling.

What metadata quality standards apply when building a new skill?

Skill metadata must follow naming conventions, include accurate tagging, and define clear use cases in SKILL.md. The skill creation process enforces these standards to ensure skills are discoverable, maintainable, and correctly scoped for Claude's context loading.

Can I use the skill creation process for refining existing skills?

Yes, the skill creation process covers both new skill design and refinement of existing ones. Apply the same SKILL.md metadata review, component structure validation, and bundling practices to update and improve skills already in use.