Skill creator
Hire a 42-employee AI company in one command: 7 departments, 42 skills, 1 CEO. For Claude Code & any AI CLI.
npx -y skills add alebgl77/claude-inc --skill skill-creatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 25 days oldThe repository was created 25 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 4 stars4 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
Authors new SKILL.md employees for this repo — interviews for the job-to-be-done, picks a slug, writes a trigger-rich description under 500 chars, fills the standard body sections, then tests triggering against five paraphrased asks and iterates. Use when the user says "make me a skill for X", "turn this workflow into a skill", "add a new employee to the team", or "my skill never triggers".
SKILL.md
3.9 KB, as published. Nobody here has run it
Skill Creator — Skill Smith
"Build your own skills"
When to use
- "Make me a skill for <recurring task>" — anything you've done three times deserves a SKILL.md
- "Turn this workflow into a skill" after a session that went well
- "Add a new employee to <department>" in this repo
- "My skill never triggers" / "the wrong skill fires" — description surgery
- Standardizing a process so the whole team runs it the same way
Workflow
- Interview for the job-to-be-done: the task, three real phrasings the user would type to ask for it, available inputs, the artifact that means "done", and what must never happen.
- Choose the slug: lowercase, hyphenated, specific (
api-changelog, nothelper); checkskills/for collisions. - Write the description before the body — it is the trigger. Third person, capability first, then "Use when ..." quoting the phrasings from step 1. Hard limit 500 characters.
- Write the body in this repo's format:
# Name — Role, quoted tagline,## When to use,## Workflow(5–9 executable steps),## Output format(code-block template),## Quality bar(checkboxes),## Example. - Save to
skills/<slug>/SKILL.md— directory name must equal frontmattername, exactly. - Trigger-test with five paraphrased asks: a synonym rewrite, a vague version, a jargon version, an adjacent-but-different task (must NOT fire), and the exact phrase. Judge each against the description alone.
- Iterate the description until at least 4/5 positives fire and the negative stays quiet — widen with user vocabulary, narrow with distinguishing nouns.
- Dry-run the workflow once end to end; rewrite any step that needed unstated context.
Frontmatter contract
---
name: <slug> # must equal the directory name, lowercase-hyphenated
description: <capability + "Use when ..." with real user phrases; third person; under 500 chars>
---
Body sections, in order: title with role, tagline quote, When to use, Workflow, Output format, Quality bar, Example.
Trigger-miss failure modes
- Describes implementation, not the job — "uses Playwright" instead of "browser-tests your app". Users ask for jobs.
- Zero quoted user phrases — the matcher has nothing to catch.
- Too generic — collides with sibling skills and the wrong employee shows up.
- Over 500 characters — the tail gets diluted exactly where your triggers live.
- First-person or imperative voice — reads like instructions, not a capability index.
Output format
skills/<slug>/SKILL.md (created)
Trigger test:
| Ask (paraphrase) | Should fire | Fired |
|---|---|---|
| <synonym rewrite> | yes | yes |
| <vague version> | yes | yes |
| <jargon version> | yes | yes |
| <adjacent task> | no | no |
| <exact phrase> | yes | yes |
Score: 5/5 — shipped
Quality bar
-
nameequals the directory slug, exactly - Description is third person, under 500 chars, and quotes real user phrasings
- Workflow steps are executable with zero unstated context
- Output format is a copy-paste template, not a description of one
- Trigger test scores at least 4/5 and the adjacent negative stays quiet
- Example shows one real ask and the artifact it produced
Example
Ask: "Turn our release-notes ritual into a skill."
Produced: skills/release-notes/SKILL.md — description quoting "write the release notes", "what changed this sprint", and "draft the changelog"; a 7-step workflow from git log to published notes; trigger test 5/5, with the adjacent ask "write API docs" correctly staying quiet.