skill-creator

Generates token-efficient SKILL.md files with frontmatter, instructions, and deduplication rules.

Updated Aug 21, 2026
One-click install
npx skills add https://github.com/TylerSimons1127/vibe --skill skill-creator-tylersimons1127
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: skill-creator
Source: https://github.com/TylerSimons1127/vibe/tree/main/skills/skill-creator
Command: npx skills add https://github.com/TylerSimons1127/vibe --skill skill-creator-tylersimons1127

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Writing new agent skills often leads to bloated, duplicated, or poorly structured SKILL.md files that waste context tokens on every turn. This Skill provides a rule book for creating concise, well-structured Hermes skills that follow best practices. ## Core Features & Use Cases - Standardized Structure: Enforces frontmatter with name, description, and trigger phrases, plus tight instruction bodies with heavy content offloaded to references, templates, and scripts. - Deduplication & Pruning: Checks whether an existing skill covers 80%+ of the need and expands, merges, or trims instead of creating duplicates. - Reusable Workflow Skeleton: Structures workflow skills as launch, gather evidence, decide, and handoff stages for consistent chaining. - Use Case: After a long debugging session, ask the agent to turn the conversation into a skill, and it produces a self-contained SKILL.md that a fresh session can execute without extra context. ## Quick Start Ask the agent to create a skill based on our conversation about the current workflow.

Frequently Asked Questions about skill-creator

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a new skill for an AI agent?▼

Invoke the skill creator by saying create a skill or turn this into a skill. It produces a SKILL.md with YAML frontmatter containing name, description, and trigger phrases, plus a tight instruction body following Hermes best-practice structure.

What should a SKILL.md file contain?▼

A SKILL.md needs YAML frontmatter with at least a name and description including one clear trigger phrase, followed by a concise Markdown instruction body. Heavy content belongs in references, templates, scripts, or assets directories loaded only on demand.

How do I avoid duplicate skills in my agent profile?▼

Before writing, check if an existing skill covers 80% or more of the need and expand it instead of creating a duplicate. Overlapping skills should be merged, shared logic moved into referenced files, and stale skills trimmed or quarantined.

Why should skill descriptions be kept short?▼

The description is loaded into the system prompt on every turn for skill discovery, so long descriptions bloat token usage continuously. Keep descriptions concise with one trigger phrase and put detailed content in the body or linked files.

When should I not create a new skill?▼

Defer creating a skill when the request is a one-off task that will not recur. Also avoid creating one when an existing skill already covers the need, since skill bloat reduces token efficiency across every session.