smithery.ai

new-agent-skill

Creates a new agent skill. Use when agent or user needs to create a new skill for the agent.

First seen Apr 8, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,520 B
  • docs SUMMARY.md 115 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

New agent skill

GOAL: create a new skill directory, standard sub-folders, and a compliant SKILL.md template based on the local reference guide.

WHEN: you need to create a new skill for the agent.

Prerequisites

  • The skills/ directory must exist.
  • The requested skill name requires kebab-case (lowercase, alphanumeric,

dashes).

  • references/skill-reference-guide.md must exist.

Efficiency directives

  • Create all directories and files in a single pass.
  • Optimize all operations for agent, token, and context efficiency.

Workflow

Step 1: Check input

  • Verify the skill name follows kebab-case conventions.
  • Check if skills/<name> already exists.
  • If exists: emit ERROR: Skill <name> already exists.

Step 2: Create directory structure

  • Create skills/<name>/.
  • Create skills/<name>/SKILL.md.
  • Create standard subdirectories: scripts/, references/, assets/,

tests/.

Step 3: Generate SKILL.md

  • Refine, streamline and optimize the user's instructions for the new

skill.

  • Read references/skill-reference-guide.md.
  • Update SKILL.md using the reference and user's instructions. Output.

Step 4: Report completion

  • Output SUCCESS: Created skill <name> at skills/<name>/.

References

  • references/skill-reference-guide.md: The authoritative guide for

skill structure and templating.