mcpbeat Sign in

Skill Creator Agent Skill

Create, update, validate, and evaluate Wisp skills. Use when authoring a project-local or installable skill, refining its trigger description, adding deterministic scripts or Python sidecars, or testing whether another Agent can follow the workflow.

48k tokens
context cost
the whole folder, loaded on every use
17
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
859
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/xuzhougeng/wisp-science --skill skill-creator

The instruction itself

7 sections, as written by the author

Create Wisp skills

Author project-local skills under .wisp/skills/<name>/. Wisp also discovers

bundled skills, user-installed skills, and paths configured by

WISP_SKILLS_PATH, but only normal project paths are directly writable through

Agent file tools.

Structure

<skill-name>/
├── SKILL.md
├── kernel.py              # optional pure helper definitions
├── scripts/               # optional standalone deterministic programs
├── references/            # optional detailed domain material
└── assets/                # optional output templates or static inputs

Keep SKILL.md concise. Put triggering information in frontmatter

description; put essential procedure in the body; move detailed variants to

one-level-deep references. Add only resources the workflow actually uses.

Workflow

  • Define concrete user requests that should trigger the skill and the expected

outputs.

  • Search existing skills before creating a duplicate.
  • Choose a lowercase hyphenated name and create

.wisp/skills/<name>/SKILL.md with write.

  • Add reusable scripts before writing long inline code examples. Execute every

new script on representative local data.

  • Add kernel.py only for small reusable Python helpers. Loading a skill does

not inject Wisp tools into Python. The rendered skill supplies a one-time

exec(compile(open(...))) instruction that defines the sidecar names in the

persistent python kernel.

  • Validate structure with this skill's

scripts/quick_validate.py <skill-directory>.

  • Refresh or reopen the project if the new skill does not yet appear, then find

it with search_skills and load it with use_skill.

  • Exercise the skill on realistic tasks. When explicit Wisp delegation is

available, use a fresh bounded task with only the skill path and user-style

request; do not leak the expected answer into the evaluation prompt.

For a user-wide installation, ask the user to install the validated folder via

Settings → Skills. There is no Agent-side publish, overwrite, or delete API.

Frontmatter

At minimum include:

---
name: my-skill
description: Perform X. Use when the user asks for Y, Z, or related output.
---

The folder name and name should match. The description is the primary trigger;

state both what the skill does and when it should be selected.

Python sidecar rules

Keep top-level code definition-only:

  • allow imports, function definitions, and literal constant assignments;
  • defer optional third-party imports into function bodies;
  • do not run work, access the network, or modify files at load time;
  • do not depend on injected Agent, Run, credential, artifact, or model objects;
  • pass paths and configuration explicitly;
  • use python to call helpers after the one-time loader instruction.

Use scripts/ instead when a helper is a standalone CLI, exceeds roughly one

hundred lines, needs argument parsing, or should run through run_in_context.

Evaluation resources

Use the bundled scripts only when their extra rigor is useful:

  • scripts/run_eval.py for test prompts;
  • scripts/aggregate_benchmark.py for repeated result aggregation;
  • scripts/generate_report.py and eval-viewer/ for human review;
  • scripts/improve_description.py for trigger-description experiments;
  • scripts/package_skill.py to package a validated skill folder.

Inspect each script's CLI help before running it. Keep evaluation artifacts out

of the skill folder unless they are intentional reusable resources.

Wisp boundaries

  • search_skills and use_skill do not edit the catalog.
  • Project file tools cannot manage user-wide installed skills outside granted

workspace paths.

  • run_in_context executes deterministic work; it does not publish skills or

call models.

  • Specialist creation is separate. Load customize and use

save_specialist only when that explicit tool is advertised.

Other skills for the same job

different authors, same section of the catalogue
Hook Development
by anthropics
vendor ×2

This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.

16k tokens scripts
Hook Development
by anthropics
vendor ×2

This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.

16k tokens scripts
Copilot SDK
by christophacham
×2

Build agentic applications with GitHub Copilot SDK. Use when embedding AI agents in apps, creating custom tools, implementing streaming responses, managing sessions, connecting to MCP servers, or creating custom agents. Triggers on Copilot SDK, GitHub SDK, agentic app, embed Copilot, programmable agent, MCP server, custom agent.

6k tokens
Cass
by Dicklesworthstone
×2

Coding Agent Session Search - unified CLI/TUI to index and search local coding agent history from Claude Code, Codex, Gemini, Cursor, Aider, ChatGPT, Pi-Agent, Factory, and more. Purpose-built for AI agent consumption with robot mode.

6k tokens
Dcg
by Dicklesworthstone
×2

Destructive Command Guard - High-performance Rust hook for Claude Code that blocks dangerous commands before execution. SIMD-accelerated, modular pack system, whitelist-first architecture. Essential safety layer for agent workflows.

4k tokens
Makepad Skills
by ComeOnOliver
×2

Makepad UI development skills for Rust apps: setup, patterns, shaders, packaging, and troubleshooting.

2k tokens
Varlock Claude Skill
by ComeOnOliver
×2

Secure environment variable management ensuring secrets are never exposed in Claude sessions, terminals, logs, or git commits

3k tokens
Create Agentsmd
by github
vendor ×1

Prompt for generating an AGENTS.md file for a repository

2k tokens

How to use it

Copy the folder

Take xuzhougeng/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.