create-agent-skills

create-agent-skills is a skill for Claude Code, Codex from aegntic/compound-engineering. It costs 46 tokens per session (2,176 once invoked), scanned A, a copy of create-agent-skills, MIT.

Guidance for creating Claude Code skills and slash commands. These are reusable instructions that Claude Code can load to perform particular tasks.

In plain words
What is it for?
Use it to create or improve SKILL.md files, slash commands, supporting scripts, templates, and invocation settings.
Why use it?
It explains how to choose between a simple command file and a skill directory with supporting files. This helps keep reusable workflows structured and maintainable.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/aegntic/compound-engineering/create-agent-skills
Any agent
npx skills add aegntic/compound-engineering --skill create-agent-skills
Clone the repo
git clone --depth 1 https://github.com/aegntic/compound-engineering

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for create-agent-skills

README.md
[![agentmods](https://agentmods.dev/badge/skills/aegntic/compound-engineering/create-agent-skills.svg)](https://agentmods.dev/skills/aegntic/compound-engineering/create-agent-skills)
Your own site
<a href="https://agentmods.dev/skills/aegntic/compound-engineering/create-agent-skills"><img src="https://agentmods.dev/badge/skills/aegntic/compound-engineering/create-agent-skills.svg" alt="Measured on agentmods" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,176 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 92% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00046 $0.02176
Opus 5 $0.00023 $0.01088
Sonnet 5 $0.00009 $0.00435
Haiku 4.5 $0.00005 $0.00218

Measured 5d ago against content hash 6aca66a5c232, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

create-agent-skills scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

92% identical to create-agent-skills — 17 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/create-agent-skills/SKILL.md · 285 lines

How it starts

The opening of the file, as written. The whole thing — 285 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Creating Skills & Commands

This skill teaches how to create effective Claude Code skills following the official specification from code.claude.com/docs/en/skills.

Commands and Skills Are Now The Same Thing

Custom slash commands have been merged into skills. A file at .claude/commands/review.md and a skill at .claude/skills/review/SKILL.md both create /review and work the same way. Existing .claude/commands/ files keep working. Skills add optional features: a directory for supporting files, frontmatter to control invocation, and automatic context loading.

If a skill and a command share the same name, the skill takes precedence.

When To Create What

Use a command file (commands/name.md) when:

  • Simple, single-file workflow
  • No supporting files needed
  • Task-oriented action (deploy, commit, triage)

Use a skill directory (skills/name/SKILL.md) when:

  • Need supporting reference files, scripts, or templates
  • Background knowledge Claude should auto-load
  • Complex enough to benefit from progressive disclosure

Both use identical YAML frontmatter and markdown content format.

Standard Markdown Format

Use YAML frontmatter + markdown body with standard markdown headings. Keep it clean and direct.

---
name: my-skill-name
description: What it does and when to use it
---

# My Skill Name

## Quick Start
Immediate actionable guidance...

## Instructions
Step-by-step procedures...

## Examples
Concrete usage examples...

Frontmatter Reference

All fields are optional. Only description is recommended.

Field Required Description
name No Display name. Lowercase letters, numbers, hyphens (max 64 chars). Defaults to directory name.
description Recommended What it does AND when to use it. Claude uses this for auto-discovery. Max 1024 chars.
argument-hint No Hint shown during autocomplete. Example: [issue-number]
disable-model-invocation No Set true to prevent Claude auto-loading. Use for manual workflows like /deploy, /commit. Default: false.
user-invocable No Set false to hide from / menu. Use for background knowledge. Default: true.
allowed-tools No Tools Claude can use without permission prompts. Example: Read, Bash(git *)
model No Model to use. Prefer explicit IDs. In this repo, default reasoning work to claude-sonnet-4.6, GPT code/review work to gpt-5.3-codex via platform overrides, and reserve claude-haiku-4.5 / gpt-5.4-mini for lightweight search or research tasks.
context No Set fork to run in isolated subagent context.
agent No Subagent type when context: fork. Options: Explore, Plan, general-purpose, or custom agent name.

Read the full file on GitHub · 285 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 285 lines · 46 tokens per session scan A 6aca66a5c232

Subscribe to this mod's changes

create-agent-skills is a skill published in the GitHub repository aegntic/compound-engineering (2 stars, last pushed 2mo ago), licensed MIT. It adds 46 tokens to every session and 2,176 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 92% identical to create-agent-skills, differing in 17 lines, and is treated as a copy.

Related

Other skills, from other repositories

methodology

Analyzes captured HTTP traffic, designs the CLI architecture, and implements the Python CLI package (Phase 2): parse raw-traffic.json, identify the protocol, write api-spec.json, scaffold from templates, and implement endpoint methods and Click command groups. Use after a capture completes and raw-traffic.json exists.

ItamarZand88/CLI-Anything-WEB · 65 tokens

standards

Runs Phase 4 review/publish/verify for a cli-web- CLI: implementation review by 3 parallel agents, the tiered quality checklist (Tier 1 critical fail-fast, then comprehensive), pip install + smoke test, and per-CLI skill generation. Use when a CLI's tests pass and it is ready to be validated and published.

ItamarZand88/CLI-Anything-WEB · 73 tokens

testing

Writes and documents the test suite for a generated cli-web- CLI (Phase 3): unit tests with mocked HTTP, live E2E tests, subprocess tests via resolvecli, and the TEST.md plan/results record. Use after the methodology skill completes implementation.

ItamarZand88/CLI-Anything-WEB · 55 tokens

sync-check

Walks the documentation dependency web after a CLI code change and reports which downstream files (skills, SOPs, READMEs, plugin references) are out of sync. Use after fixing a bug, adding a command, changing auth behavior, refactoring, or before committing — and when the user says "sync check", "update docs"…

ItamarZand88/CLI-Anything-WEB · 95 tokens

futbin-cli

Queries FUTBIN (EA FC Ultimate Team database) via cli-web-futbin — player search, prices and price history, comparisons, SBCs, evolutions, and market analytics (index, trending, cheapest by rating, movers, fodder, buy/sell signals, undervalue scans, PS/PC arbitrage). Use when the user asks about EA FC player prices…

ItamarZand88/CLI-Anything-WEB · 116 tokens

airbnb-cli

Use cli-web-airbnb to search Airbnb stays, get listing details, check availability calendars, read guest reviews, and look up location suggestions. Invoke this skill whenever the user asks about Airbnb accommodations, vacation rentals, listing prices, availability, guest reviews, or wants to search for places to stay.…

ItamarZand88/CLI-Anything-WEB · 76 tokens