Create, edit, and evaluate agent skills iteratively.
npx skills add https://github.com/HezaoHezao/poirot --skill skill-creator
A skill for creating new skills and iteratively improving them.
At a high level, the process of creating a skill goes like this:
SKILL.md with YAML frontmatter + Markdown body)Your job when using this skill is to figure out where the user is in this
process and then jump in and help them progress through these stages.
A Poirot skill lives in a directory containing SKILL.md:
skills/<category>/<skill-name>/SKILL.md # user skills
poirot/backend/agents/skill/builtin_skills/<category>/<skill-name>/SKILL.md # builtin
Frontmatter fields:
---
name: <skill-name> # unique, lowercase-hyphenated
description: <≤60 char one sentence ending with a period>
allowed-tools: # Poirot tools this skill may invoke
- web_search
- browse_page
- bash
- read_file
- write_file
- list_dir
- str_replace
- present_files
- read_snapshot
enabled: true
related-skills: [<other-skill-name>] # optional cross-references
license: MIT # recommended for contributed skills
author: <human contributor or source attribution>
---
Body: # <Skill> title, 2-3 sentence intro, ## When to Use,
## How to Run, ## Procedure, ## Pitfalls, ## Verification.
description ≤ 60 characters, one sentence, ends with a period. Statethe capability, not the implementation. No marketing words.
MCP servers the skill explicitly expects. Do NOT name shell utilities the
agent already has wrapped — grep → bash, cat/head/tail →
read_file, sed/awk → str_replace, find/ls → list_dir.
scripts/, references in references/, templates intemplates/** inside the skill directory. Don't expect the model to
inline-write non-trivial logic every call — ship a helper script.
SKILL.md/skill install <path> (or place under skills/)/skill list should show it activedescription for better triggering, body for clarityto non-existent tools
## When to Use section → model triggers skill on wrong tasksschema above
Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
Replace with description of the skill and when Claude should use it.
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Use when creating new skills, editing existing skills, or verifying skills work before deployment
Take hezaohezao/skill-creator from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.