agentsclimarketplace

Create skill

Skill pavelsimo/skills/skills/create-skill

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.From its SKILL.md

Install
npx -y skills add pavelsimo/skills --skill create-skill

Assembled 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.

SKILL.md

6.1 KB, ~1.5k tokens by cl100k_base, 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 + description frontmatter, 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/*.md files for large tables, catalogs, examples, or templates
  • creates the skill as a skills/<name>/ directory inside the pavelsimo/skills repo — no separate repo, no submodule
  • updates the index README.md: adds a table row and a detailed ### [name] section linking to skills/<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

  1. 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
  2. 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)
  3. generate SKILL.md from the description:

    • frontmatter: name, description only
    • ## 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
  4. generate README.md:

    • # <name> skill title + 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"
  5. generate LICENSE:

    • MIT License text
    • year: run date +%Y to get the current year
    • copyright holder: Pavel Simo
  6. 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
  7. locate the skills repo root:

    • if the current directory is the pavelsimo/skills repo (contains a skills/ directory plus the index README.md and AGENTS.md), use it
    • otherwise run gh repo clone pavelsimo/skills to a temp location and use that
    • abort if skills/<name>/ already exists: "skill <name> already exists — choose a different name"
  8. write the directory and files:

    mkdir -p skills/<name>
    # write SKILL.md, README.md, LICENSE, and any reference/*.md files into skills/<name>/
    
  9. 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>](skills/<name>)
      
      <one-paragraph summary derived from the skill description>
      
      
      /<name> # example invocation
  10. commit:

    git add skills/<name> README.md
    git commit -m "➕ add <name> skill"
    
    • then ask: push to origin now? yes / skip; on yes run git push
  11. report results:

    • skill directory: skills/<name>/
    • install with: npx skills@latest add pavelsimo/skills
    • invoke with: /<name>

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, and LICENSE; use reference/*.md for large tables, catalogs, examples, and templates
  • one atomic commit — a single ➕ add <name> skill commit 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 to skills/<name>, never an external repo
  • derive the year dynamically — run date +%Y rather than hardcoding the current year in the LICENSE

What ships with it: 2 files

2.3 KB alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.