agentsclimarketplace

Skill creator

Skill nainishshafi/developer-productivity-skills/.github/skills/skill-creator

Use when the user asks to "create a new skill", "add a skill", "write a skill", "scaffold a skill", "make a claude skill", "build a skill", or wants to create a reusable Claude Code skill from scratch. Also use when the user describes a repeatable workflow they want to package as a skill.From its SKILL.md

Install
npx -y skills add nainishshafi/developer-productivity-skills --skill skill-creator

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

  • 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.
  • runs commandsInstructs the agent to run 3 commands, including `[ -d .venv ] || python -m venv .venv` and 2 more.

SKILL.md

3.5 KB, 786 tokens by cl100k_base, as published. Nobody here has run it

Skill Creator

Scaffold and write new Claude Code skills following established conventions. Handles both reference/knowledge skills (rich documentation that Claude loads as context) and task/action skills (step-by-step workflows with scripts).

When to Use This Skill

  • User wants to package a repeatable workflow as a skill
  • User asks to "create", "add", "write", or "scaffold" a skill
  • User describes something they want Claude to do consistently across sessions
  • User wants to share a skill across projects or with others

Workflow

Step 1 — Classify the Skill Type

Ask the user:

  1. What should the skill do? (one sentence)
  2. Does it perform an action or provide knowledge?
    • Action: runs scripts, executes steps, interacts with tools → Task skill
    • Knowledge: patterns, templates, conventions, reference material → Reference skill

Decision:

  • Reference skill → single rich SKILL.md only (no scripts required)
  • Task skillSKILL.md + references/ + scripts/

Step 2 — Gather Details

Collect from the user:

  • Skill name — kebab-case, lowercase (e.g., lint-python, deploy-staging)
  • Trigger phrases — what will the user say to invoke it? (list 5–8 examples)
  • Target location.github/skills/ (this project) or ~/.claude/skills/ (all projects)
  • For reference skills: topic areas, frameworks, code patterns to cover
  • For task skills: step-by-step actions, prerequisites, scripts needed (bash or python?)

Step 3 — Scaffold the Folder

Run the scaffold script to create the directory structure and boilerplate:

[ -d .venv ] || python -m venv .venv
PYTHON=$(if [ -f .venv/Scripts/python ]; then echo .venv/Scripts/python; else echo .venv/bin/python; fi)
$PYTHON .github/skills/skill-creator/scripts/scaffold-skill.py <skill-name> [base-path]
  • Default base-path is .github/skills/
  • Script outputs created file paths to stdout (one per line)
  • If the skill folder already exists, the script exits with a warning — do not overwrite

Step 4 — Populate the Files

Use references/skill-anatomy.md as your writing guide.

For a reference skill, write a rich SKILL.md with these sections:

  1. When to Use This Skill — bullet list of scenarios
  2. Core Concepts — fundamental ideas with explanations
  3. Implementation Patterns — named patterns with code examples (3–10+ patterns)
  4. Best Practices — do's and don'ts
  5. Common Pitfalls — what to avoid and why
  6. Resources — links and further reading

For a task skill, write:

  • SKILL.md — frontmatter + step-by-step workflow (reference references/ and scripts/ by path)
  • references/<skill-name>-reference.md — supporting documentation, patterns, and specs
  • scripts/<script>.py or scripts/<script>.sh — executable logic with error handling

Confirm all created files with the user before finishing.

Additional Resources

  • references/skill-anatomy.md — Complete frontmatter field reference, skill type templates, description writing guide, script conventions, naming rules
  • scripts/scaffold-skill.py — Creates folder structure and boilerplate files for a new skill

What ships with it: 2 files

12.7 KB alongside SKILL.md, 1 of them executable

references/

scripts/

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.