skill-builder

Guides creation, optimization, and auditing of Claude Code skills following official best practices.

Updated Jul 27, 2026
One-click install
npx skills add https://github.com/sebaperiesdigit-create/Peries-Skills-Master --skill skill-builder-sebaperiesdigit-create
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: skill-builder
Source: https://github.com/sebaperiesdigit-create/Peries-Skills-Master/tree/main/.claude/skills/skill-builder
Command: npx skills add https://github.com/sebaperiesdigit-create/Peries-Skills-Master --skill skill-builder-sebaperiesdigit-create

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Writing effective Claude Code skills requires knowing frontmatter fields, invocation controls, and content conventions; this Skill provides a structured discovery interview, build process, and audit checklist so skills are consistent and trigger reliably. ## Core Features & Use Cases - Guided Skill Creation: Runs a six-round discovery interview covering goal, triggers, process, inputs/outputs, and guardrails before writing any files. - Skill Auditing: Provides frontmatter, content, integration, and quality checklists to review and fix existing skills. - Technical Reference: Ships a complete reference covering frontmatter fields, argument substitution, subagent execution, hooks, and troubleshooting. - Use Case: When you want to automate a recurring workflow like generating PR summaries, invoke this Skill to interview you about the workflow, then produce a complete SKILL.md with correct frontmatter and step-by-step instructions. ## Quick Start Ask Claude to help you build a new skill for a workflow you want to automate, and it will start the discovery interview.

Frequently Asked Questions about skill-builder

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

FAQPage Schema
How do I create a new Claude Code skill?▼

Create a SKILL.md file in .claude/skills/[skill-name]/ with YAML frontmatter containing a name and description, followed by step-by-step instructions. This Skill walks you through a discovery interview to define the goal, triggers, process, and guardrails before writing the file.

How do I write a good skill description for auto-invocation?▼

Write the description as 'Use when someone asks to [action], [action], or [action]' with natural keywords users would actually say. Claude uses this field to decide when to load the skill, so include 2-3 realistic trigger phrases.

What frontmatter fields can a Claude Code skill use?▼

Skills support name, description, argument-hint, disable-model-invocation, user-invocable, allowed-tools, model, context, agent, and hooks. Only set fields you actually need; description is the key field for discovery.

Why is my Claude Code skill not triggering?▼

Check that the description contains keywords users naturally say, verify the skill is visible by asking what skills are available, and confirm disable-model-invocation is not set to true. You can also invoke it directly with /skill-name to confirm it works.

When should I use context: fork in a skill?▼

Use context: fork when the task is self-contained, produces verbose output you want out of the main context, or needs tool restrictions via an agent type. Avoid it for conversational skills or guideline-only content without a concrete task.