Create skill
A collection of agent skills for AI-assisted development.
npx -y skills add pavelsimo/skills --skill create-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Bootstraps a new agent skill by generating SKILL.md, README.md, LICENSE, and optional reference files as a directory inside the pavelsimo/skills repo and registering it in the index README. Use when the user wants to create a new Claude Code skill from scratch.
SKILL.md
6.1 KB, as published. Nobody here has run it
create-skill skill
A Claude Code skill that scaffolds a new agent skill from a plain-text description — generates SKILL.md, README.md, LICENSE, and optional reference/*.md files, writes them as a skills/<name>/ directory inside the centralized pavelsimo/skills repo, and registers the skill in the index README.
features
- generates SKILL.md (
name+descriptionfrontmatter, features, usage, workflow, best practices) from the user's description - produces a README.md matching the standard skill template (usage, installation via
npx skills@latest add pavelsimo/skills, license) - writes an MIT LICENSE with the current year and "Pavel Simo" as the copyright holder
- creates optional
reference/*.mdfiles for large tables, catalogs, examples, or templates - creates the skill as a
skills/<name>/directory inside thepavelsimo/skillsrepo — no separate repo, no submodule - updates the index
README.md: adds a table row and a detailed### [name]section linking toskills/<name> - commits the new skill with a single
➕commit and offers to push
usage
/create-skill # prompt for name and description
/create-skill <name> # prompt for description only
what gets created
skills/<name>/
├── SKILL.md # full skill specification (generated from your description)
├── README.md # user-facing docs with usage + installation
├── LICENSE # MIT, current year, Pavel Simo
└── reference/ # optional bulky catalogs, templates, or examples
└── <topic>.md
plus a table row and a ### [<name>](skills/<name>) detail section appended to the repo's README.md.
workflow
-
parse args:
- if
<name>is provided, use it; otherwise ask:skill name (kebab-case): - validate: all lowercase, only
[a-z0-9-], no spaces; reject anything else with a clear error
- if
-
collect the skill description:
- ask: "describe this skill — what it does, what triggers it, its key flags/modes, and the workflow steps it follows:"
- wait for the user's response (a paragraph or several paragraphs is fine)
-
generate SKILL.md from the description:
- frontmatter:
name,descriptiononly ## features— 4–8 bullet points extracted from the description## usage— command + flag examples in a fenced code block## workflow— numbered steps in imperative mood; include exact bash commands where applicable; conditional branches use sub-bullets ("if X: …")## best practices— 4–8 bullets- if the skill involves a large enumerated set of values, examples, or output templates, keep only a pointer in SKILL.md and generate
reference/<topic>.md
- frontmatter:
-
generate README.md:
# <name> skilltitle + one-sentence description## Usage— copy the usage block from SKILL.md- one skill-specific section (e.g., output format, examples, what it produces) inferred from the description
## Installation— single bash code block:npx skills@latest add pavelsimo/skills## Contributing— "open an issue or pull request. keep commits atomic."## License— "MIT"
-
generate LICENSE:
- MIT License text
- year: run
date +%Yto get the current year - copyright holder: Pavel Simo
-
show all generated files and ask:
create skills/<name>/ with these files? yes / edit / cancel- edit: ask which file to revise and what to change; regenerate and re-show; repeat
- cancel: stop immediately, delete nothing (nothing was written yet)
- yes: proceed
-
locate the skills repo root:
- if the current directory is the
pavelsimo/skillsrepo (contains askills/directory plus the indexREADME.mdandAGENTS.md), use it - otherwise run
gh repo clone pavelsimo/skillsto a temp location and use that - abort if
skills/<name>/already exists: "skill<name>already exists — choose a different name"
- if the current directory is the
-
write the directory and files:
mkdir -p skills/<name> # write SKILL.md, README.md, LICENSE, and any reference/*.md files into skills/<name>/ -
register in the index
README.md:- add a row to the existing HTML skills table, in alphabetical position by skill name (the table is kept sorted):
<tr><td><a href="skills/<name>"><name></a></td><td><one-line description></td></tr> - insert a matching detailed section in alphabetical position among the existing
###sections (the sections are kept sorted):
/<name> # example invocation### [<name>](skills/<name>) <one-paragraph summary derived from the skill description>
- add a row to the existing HTML skills table, in alphabetical position by skill name (the table is kept sorted):
-
commit:
git add skills/<name> README.md git commit -m "➕ add <name> skill"- then ask:
push to origin now? yes / skip; on yes rungit push
- then ask:
-
report results:
- skill directory:
skills/<name>/ - install with:
npx skills@latest add pavelsimo/skills - invoke with:
/<name>
- skill directory:
best practices
- validate the name first — reject uppercase, spaces, or special characters before doing anything else
- show drafts before writing — always show generated files and wait for confirmation; never write to disk without approval
- keep SKILL.md lean — every skill has
SKILL.md,README.md, andLICENSE; usereference/*.mdfor large tables, catalogs, examples, and templates - one atomic commit — a single
➕ add <name> skillcommit covering the new directory and the README index update - preserve README.md structure — insert the table row and the detailed
###section in alphabetical position (both lists are kept sorted by skill name); link toskills/<name>, never an external repo - derive the year dynamically — run
date +%Yrather than hardcoding the current year in the LICENSE