mcpbeat Sign in

Skill Creator Agent Skill

Create, edit, and evaluate agent skills iteratively.

843 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
117
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/HezaoHezao/poirot --skill skill-creator

What it tells the agent to use

found in the instruction text
Bash runs shell commands — read the instruction before connecting
Grep reads your files

The instruction itself

5 sections, as written by the author

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:

  • Decide what you want the skill to do and roughly how it should do it
  • Write a draft of the skill (a SKILL.md with YAML frontmatter + Markdown body)
  • Create a few test prompts and run them with the skill injected
  • Help the user evaluate the results both qualitatively and quantitatively
  • Rewrite the skill based on feedback from the user's evaluation
  • Repeat until you're satisfied
  • Expand the test set and try again at larger scale

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.

Poirot skill format

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.

Authoring standards

  • description ≤ 60 characters, one sentence, ends with a period. State

the capability, not the implementation. No marketing words.

  • Tools referenced in prose must be native Poirot tools (listed above) or

MCP servers the skill explicitly expects. Do NOT name shell utilities the

agent already has wrapped — grepbash, cat/head/tail

read_file, sed/awkstr_replace, find/lslist_dir.

  • **Scripts go in scripts/, references in references/, templates in

templates/** inside the skill directory. Don't expect the model to

inline-write non-trivial logic every call — ship a helper script.

  • Keep the body focused: ~100 lines for a simple skill, ~200 for complex.

Iteration loop

  • Draft SKILL.md
  • Install via /skill install <path> (or place under skills/)
  • Reload: /skill list should show it active
  • Run test prompts; observe whether the skill's guidance is followed
  • Revise frontmatter description for better triggering, body for clarity
  • Repeat

Pitfalls

  • Description too long → dilutes model attention when many skills loaded
  • Naming shell utilities instead of Poirot tools → model hallucinates calls

to non-existent tools

  • No ## When to Use section → model triggers skill on wrong tasks
  • Frontmatter with unknown fields → parser may ignore silently; stick to the

schema above

Other skills for the same job

different authors, same section of the catalogue
Skill Creator
by anthropics
vendor ×10

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.

56k tokens scripts
Skill Creator
by vercel-labs
vendor ×10

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.

12k tokens scripts
Skill Creator
by JayZeeDesign
×9

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.

10k tokens scripts
Template Skill
by JayZeeDesign
×7

Replace with description of the skill and when Claude should use it.

35 tokens
Dispatching Parallel Agents
by ZhanlinCui
×5

Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies

2k tokens
Skill Development
by anthropics
vendor ×4

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.

9k tokens
Find Skills
by sanity-io
vendor ×4

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.

1k tokens
Writing Skills
by ZhanlinCui
×4

Use when creating new skills, editing existing skills, or verifying skills work before deployment

26k tokens scripts

How to use it

Copy the folder

Take hezaohezao/skill-creator from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

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.