Anthropic Publishes Official Skills Guide — How It Compares to Soul Spec
Anthropic just released “The Complete Guide to Building Skills for Claude” — a 33-page document defining the official standard for packaging workflow knowledge into Claude agents. Soul Spec, created by ClawSouls, defines an agent’s identity and persona. The names sound similar, but they solve different problems. What Skills Do A skill is a folder: your-skill/ ├── SKILL.md # Required — workflow instructions ├── scripts/ # Optional — executable code ├── references/ # Optional — documentation └── assets/ # Optional — templates, icons The YAML frontmatter in SKILL.md is the key. Claude reads this metadata to decide when to load each skill. ...