skill-creator

Guides creation and packaging of SKILL.md-based skill units with bundled resources.

Updated Jun 6, 2026
One-click install
npx skills add https://github.com/jonathanlin768/CS2Match-Nakama --skill skill-creator-jonathanlin768
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-creator
Source: https://github.com/jonathanlin768/CS2Match-Nakama/tree/main/.agents/skills/skill-creator
Command: npx skills add https://github.com/jonathanlin768/CS2Match-Nakama --skill skill-creator-jonathanlin768

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Creating effective AI skills requires knowing the right structure, frontmatter conventions, and progressive disclosure patterns; this Skill provides the complete methodology so new skills are discoverable, concise, and correctly packaged. ## Core Features & Use Cases - Structured Creation Workflow: Six-step process covering understanding use cases, planning resources, initializing, editing, packaging, and iterating on skills. - Progressive Disclosure Guidance: Patterns for splitting content between SKILL.md, references, scripts, and assets to keep context usage lean. - Packaging & Validation: Instructions for validating frontmatter, naming conventions, and bundling skills into distributable .skill archives. - Use Case: When you want to build a new skill for a domain workflow (e.g., a PDF editor or BigQuery helper), follow this guide to design the SKILL.md, decide which scripts and references to bundle, and package the result. ## Quick Start Ask the assistant to create a new skill for your chosen task and follow the guided steps to define its name, description, resources, and packaging.

Frequently Asked Questions about skill-creator

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

FAQPage Schema
How do I create a new skill for an AI agent?

Create a directory containing a SKILL.md file with YAML frontmatter defining name and description, followed by Markdown instructions. Optionally add scripts, references, and assets directories, then validate and package the folder into a .skill zip archive.

What should go in the SKILL.md frontmatter?

Include only the name and description fields. The description is the primary triggering mechanism, so it must state both what the skill does and the specific contexts when it should be used.

When should I use scripts versus references in a skill?

Use scripts for deterministic, repeatedly rewritten code that can be executed without loading into context. Use references for documentation the agent reads on demand, such as schemas, API docs, or detailed workflow guides.

How long should a SKILL.md file be?

Keep the SKILL.md body under 500 lines and focused on essential procedural instructions. Move detailed reference material, schemas, and examples into separate reference files linked from SKILL.md.

What files should not be included in a skill?

Do not include auxiliary documentation such as README.md, INSTALLATION_GUIDE.md, QUICK_REFERENCE.md, or CHANGELOG.md. A skill should contain only the files an AI agent needs to perform the task.