
Skill Builder
- 42 installs
- 15 repo stars
- Updated May 31, 2026
- bntvllnt/agent-skills
Skill Builder is a Claude Code skill that creates, updates, validates, renames, and deletes Agent Skills with spec-conformant SKILL.md files and safety rules.
About
Skill Builder is a Claude skill for authoring Agent Skills for any compatible agent product. It routes each request to the smallest operation - create, update, add, delete, rename, or validate - and runs a first-principles check before writing anything. Developers use it to build correct, spec-conformant SKILL.md files with clear routers, safety rules, and progressive disclosure. It returns validation evidence rather than relying on vibes.
- Six operations: CREATE, UPDATE, ADD, DELETE, RENAME, VALIDATE for Agent Skills
- Mandatory Phase 0 first-principles check (question, delete, simplify, accelerate, automate)
- Enforces progressive disclosure, unambiguous descriptions, and a safety/confirmation boundary
Skill Builder by the numbers
- 42 all-time installs (skills.sh)
- Ranked #351 of 782 Skill Development skills by installs in the Skillselion catalog
- Data as of Jul 31, 2026 (Skillselion catalog sync)
skill-builder capabilities & compatibility
- Capabilities
- skill authoring · skill validation · description design
- Use cases
- documentation
What skill-builder says it does
Build correct, consistent Agent Skills for any compatible agent product.
Uses progressive disclosure: concise `SKILL.md`, deeper docs only when needed.
Produces validation evidence instead of relying on vibes.
npx skills add https://github.com/bntvllnt/agent-skills --skill skill-builderAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 42 |
|---|---|
| repo stars | ★ 15 |
| Last updated | May 31, 2026 |
| Repository | bntvllnt/agent-skills ↗ |
What it does
Create, update, validate or rename Agent Skills with spec-conformant SKILL.md, clear descriptions, and a safety boundary.
Who is it for?
Developers authoring or refactoring Agent Skills who want spec conformance and validation evidence.
When should I use this skill?
The user is creating, updating, renaming, deleting, or validating a skill or improving a skill description or structure.
What you get
A boring, testable, spec-conformant skill with a clear router, safety rules, and a validation report.
- SKILL.md with frontmatter and router
- validation report with evidence
- smoke-test prompt
By the numbers
- 6-operation router
Files
Skill Builder
Unified, security-first skill builder.
This skill is intentionally opinionated:
- Prefer no new skill if a simpler change works.
- When you do create a skill, make it boring, testable, and hard to misuse.
- Keep one clear router and avoid overlapping descriptions across skills.
- Stay model-agnostic and harness-agnostic unless the target environment explicitly requires otherwise.
Operation Router
| User intent | Operation | Output |
|---|---|---|
| create/build/make/new skill | CREATE | new skill folder + SKILL.md + only the companion files actually needed |
| update/modify/improve skill | UPDATE | minimal diff, keep scope stable |
| delete/remove skill | DELETE | remove skill + update any dependent references |
| add content/route/workflow to skill | ADD | new router row + minimal supporting procedure |
| validate skill | VALIDATE | evidence-backed validation report + fixes |
| rename skill | RENAME | safe rename + reference updates |
Operation Selection Rules
Use the smallest operation that solves the request:
- CREATE — new user-facing capability or clearly distinct intent/description domain.
- UPDATE — improve an existing skill without changing its core scope.
- ADD — add one new route, example, or sub-workflow inside the current scope.
- RENAME — change identity/path/name while preserving mostly the same behavior.
- DELETE — remove obsolete capability because it is superseded, merged, or no longer useful.
- VALIDATE — inspect correctness without broadening scope.
If uncertain, default to UPDATE rather than CREATE.
What "Correct" Means
This skill treats "correct" as:
- Conforms to the Agent Skills spec where the spec is explicit.
- Uses progressive disclosure: concise
SKILL.md, deeper docs only when needed. - Has unambiguous activation: specific description + non-overlapping neighboring skills.
- Is safe: no secrets, no default-destructive commands, explicit confirmation boundaries.
- Produces validation evidence instead of relying on vibes.
Phase 0: First-Principles Check (Mandatory)
Run this before any CREATE or UPDATE:
1. QUESTION: what problem, for who, measured how? 2. DELETE: can an existing skill, README section, script, or template solve it? 3. SIMPLIFY: what is the smallest change that works? 4. ACCELERATE: only after (2) and (3) 5. AUTOMATE: create a new skill only if it will be reused
If the answer is "no skill", propose:
- a README section
- a small script
- a usage snippet users can copy
- a targeted update to an existing skill
Phase 1: Detect Target + Name
Required by the Agent Skills spec
- Skill directory contains
SKILL.md. SKILL.mdstarts with valid YAML frontmatter.namematches the parent directory name.descriptionexplains what the skill does and when to use it.
Recommended by this skill
- Keep
SKILL.mdfocused on router + core rules. - Add
references/,scripts/,assets/, orREADME.mdonly when they add real value. - Keep references one level deep from
SKILL.md. - Put nonstandard metadata under
metadatainstead of inventing new top-level fields.
Naming
- Use kebab-case (
my-skill-name). - Avoid generic names (
tools,helper). - Prefer names that describe a distinct job to be done.
Description design
The description field is the primary discovery surface.
Write it to cover:
- what the skill does
- when to use it
- likely user wording, domain terms, and near-synonyms
Do not depend on a custom top-level triggers field for portability. If you want trigger examples, keep them in the body, metadata, or eval fixtures.
Confirmation Boundary
Safe without confirmation:
- read-only inspection
- drafting content
- local validation
- proposing diffs
Require confirmation before:
- deleting files or folders
- renaming skill folders
- overwriting user-authored content
- changing trigger semantics in ways that may alter discovery behavior
- editing repo indexes or catalogs
- installing dependencies or using networked side effects
Phase 2: CREATE Flow
Inputs (minimum)
- Name
- Goal + non-goals
- Description draft that covers what + when
- Optional capability constraints if the target client supports them
CREATE Steps
1. Discover existing conventions in the target repo. 2. Draft a micro-spec: goal, non-goals, router, safety boundary. 3. Create /<skill-name>/SKILL.md with:
- frontmatter (
name,description, optional spec-supported fields) - router table
- safety and confirmation rules
- short workflows or links to
references/
4. Add companion files only if justified:
README.mdfor human-facing install/overviewreferences/for deep workflowsscripts/for executable helpersassets/for templates/resources
5. Validate using the evidence rules below. 6. If the repo maintains an index, update it.
Output Contract (CREATE)
Always return:
- files created/edited
- description added or changed
- whether optional fields like
compatibility,metadata, orallowed-toolswere used - one minimal smoke-test prompt
- validation report: pass/fail + evidence + remaining risks
Phase 3: UPDATE Flow
1. Read the current skill. 2. Identify the actual user goal. 3. Apply the smallest diff that solves it. 4. Re-run validation. 5. Keep scope and description stable unless a broader change is explicitly requested.
Output Contract (UPDATE)
Return:
- files changed
- behavior changed
- description change: yes/no
- validation report
- risks or follow-ups
Phase 4: DELETE Flow
1. Confirm the target skill folder. 2. Identify dependents: indexes, references, sibling skills. 3. Remove the skill and update references. 4. Provide rollback instructions.
Output Contract (DELETE)
Return:
- removed paths
- references updated
- rollback note
- validation/report of any remaining broken links
Phase 5: ADD Content to a Skill
Rules for skill growth:
- Never duplicate description intent across multiple skills in the same install.
- Route by intent first, then load deeper sections.
- Keep
SKILL.mdreadable: short tables, stable templates, deep detail inreferences/.
Add steps: 1. Add one new router row or one tightly scoped section. 2. Add the minimal new procedure. 3. If it grows, split into references/<topic>.md. 4. Add or update examples. 5. Re-check neighboring skills for overlap.
Phase 6: RENAME Flow
1. Confirm old and new names. 2. Rename the folder and update frontmatter name. 3. Update internal and repo-level references. 4. Validate links, name/path parity, and discovery wording.
Output Contract (RENAME)
Return:
- old name → new name
- moved paths
- references updated
- validation report
Validation
Validation Requirements
A skill is not validated until you produce evidence for all three layers:
1. Spec validation — structure and YAML correctness 2. Trigger validation — the description should trigger when it should, and not trigger on near-misses 3. Output validation — the skill improves or constrains the resulting work on realistic tasks
Skill Validation Checklist
- Frontmatter includes valid
nameanddescription. - Frontmatter is valid YAML, not just visually plausible Markdown metadata.
namematches the parent directory.- Description clearly states what + when.
- Any extra frontmatter stays within spec-supported fields unless the target environment explicitly supports more.
- Router is present.
- Confirmation boundary is explicit.
- No secrets; no private paths unless the target repo is intentionally private.
- No unscoped destructive instructions.
- Progressive disclosure is respected.
- Trigger hygiene has been checked against neighboring skills.
Spec Validation (Recommended)
If available:
skills-ref validate ./<skill-name>If not available, validate manually using the rules in references/validation.md.
Capability Safety
- Prefer the least-privileged capability that can complete the task.
- Inspect/search before executing commands.
- If command execution is needed, scope it tightly.
- Never recommend
rm -rf,git reset --hard, orpush --forceas defaults.
Templates
Skill Frontmatter
---
name: my-skill
description: Use this skill when you need to do X, Y, or Z. It handles A and B and is relevant when the user asks for C.
compatibility: Optional. Mention required runtimes, system tools, or environment assumptions.
metadata:
version: "0.1"
allowed-tools: Optional experimental field. Only include it when the target client supports it and the skill benefits from a constrained tool list.
---Minimum Viable Portable Skill
1. Frontmatter 2. One-paragraph purpose/activation guidance 3. Router table 4. Safety + confirmation rules 5. Short workflows 6. Optional references/ only when needed
References
references/checklist.md(authoring checklist)references/templates.md(copy/paste templates)references/validation.md(spec, trigger, and output validation)
What This Skill Is For (Practical Examples)
- "Create a skill that scaffolds new skills" → CREATE.
- "Make this skill more portable across agent products" → UPDATE.
- "Rename this skill without breaking references" → RENAME.
- "Check whether this skill will trigger reliably" → VALIDATE.
- "Make skills consistent across repos" → UPDATE or ADD, depending on scope.
Skill Builder
Build correct, consistent Agent Skills.
Quick Start
- Core doc:
skill-builder/SKILL.md - Use when you want to:
- create/update/delete a skill
- add routes/workflows to a skill
- validate skills (tool safety, trigger hygiene, structure)
References:
skill-builder/references/checklist.mdskill-builder/references/templates.mdskill-builder/references/validation.md
Install
From the repo root:
npx skills add bntvllnt/agent-skills --skill skill-builderManual install (download this folder only):
- Copy the
skill-builder/folder into your agent's skills directory. - Ensure the folder name is
skill-builderand includesSKILL.md.
Notes
- Prefer minimal viable skills; often a README section is enough.
Skill Authoring Checklist
Use this as a pre-flight checklist for any new/updated skill.
Spec Correctness
- Folder name matches frontmatter
name. nameis 1-64 chars; lowercase letters/numbers/hyphens; no leading/trailing-; no--.descriptionis non-empty, <= 1024 chars, and states both what + when.
Activation Quality
- Description contains concrete trigger phrases users will say.
- Triggers do not overlap with other skills in the same repo/install.
- Router makes the first decision quickly.
Context Efficiency
SKILL.mdis short (recommendation: < 500 lines).- Heavy details live in
references/. - Reference files are small and focused.
Safety
- No secrets, credentials, tokens, private URLs.
- No default-destructive commands.
- If you include
allowed-tools, it is minimal and scoped.
Usability
- Includes 2-3 examples.
- Includes expected outputs / formatting guidance.
- Includes troubleshooting for common failure modes.
Templates
Minimal Skill
---
name: my-skill
description: What it does and when to use it. Include trigger phrases.
compatibility: Optional. Mention required system tools or network access.
metadata:
version: "0.1"
---
# My Skill
## Router
| User says | Do |
|---|---|
| <intent> | <procedure> |
## Safety
- Define what is read-only vs state-changing.
- Require confirmation for destructive operations.
## Workflow
1. Step
2. Step
## Examples
- "<example prompt>"Skill With References
## Router
| User says | Load reference | Do |
|---|---|---|
| <intent> | `references/<topic>.md` | <action> |Skill With Scripts
Document script entrypoints and args.
## Usage
scripts/<script>.sh <args>
Validation Flow
Use this flow to produce evidence, not just a checklist.
1) Spec Validation
Preferred (if available):
skills-ref validate ./<skill-name>If skills-ref is not available, validate manually against:
- https://agentskills.io/specification
- valid YAML frontmatter parsed by a real parser
namematches the parent directorydescriptioncovers what the skill does and when to use it- only spec-supported top-level fields are used unless the target environment explicitly supports more
YAML pitfalls to check explicitly:
- Quote values containing
:followed by text. - Do not rely on permissive parsers.
- Keep extra metadata under
metadata.
2) Trigger Validation
The description is the primary discovery mechanism.
Build a realistic eval set:
- ~8-10 prompts that should trigger
- ~8-10 prompts that should not trigger
- prioritize near-misses over obviously irrelevant prompts
- vary tone, detail level, wording, typos, and indirect phrasing
Practical checks:
- Search neighboring skills for overlapping description language.
- If overlap is unavoidable, rewrite descriptions so each skill has distinct intent keywords.
- Prefer intent phrases over broad single-word cues.
Output evidence:
- which prompts should trigger
- which prompts should not trigger
- any ambiguous cases and how the description was tightened
3) Output Validation
Run at least 2-3 realistic tasks.
For each task, record:
- prompt
- expected behavior
- whether the skill improved structure, safety, or consistency
- remaining gaps
If possible, compare:
- without the skill
- with the skill
4) Structure + Progressive Disclosure
- Keep
SKILL.mdas router + core rules. - Split deep workflows into
references/*.md. - Keep references one level deep from
SKILL.md. - Avoid turning
SKILL.mdinto a giant playbook.
5) Safety
- No secrets.
- No default destructive commands.
- Make confirmation boundaries explicit.
- Prefer the least-privileged capability that can complete the task.
Validation Report Template
- Spec validation: pass/fail + evidence
- Trigger validation: pass/fail + prompt set summary
- Output validation: pass/fail + scenario summary
- Risks / follow-ups