---
name: successors-sample-skill
description: PLACEHOLDER — a sample Claude skill from the Successors Blender pipeline. Replace this file with a real skill from your library.
---

# Successors — Sample Claude Skill

> **This is a placeholder.** Replace the contents of this file with a real
> skill from your library. The download card on `/assets` points straight at
> it, so no code change is needed — just overwrite the file.

## What a skill in this pack looks like

Each skill in the Successors Creator Pack is a self-contained Markdown file
with YAML frontmatter. Claude loads it when the task matches the
`description`, and then follows the instructions in the body.

```
skills/
└── successors-sample-skill/
    └── SKILL.md
```

## Frontmatter

| Field | Purpose |
| --- | --- |
| `name` | Kebab-case identifier. Must match the folder name. |
| `description` | One line describing when the skill should fire. This is the only part Claude reads before deciding to load it, so make it concrete. |

## Body

The body is the instruction set. In practice the skills in this pack are
built around three sections:

1. **When to use it** — the specific symptoms or requests that should trigger it.
2. **The procedure** — ordered, numbered steps, with the exact `bpy` calls
   where the step is scriptable.
3. **The failure catalogue** — what goes wrong, what it looks like on screen,
   and the fix. This is usually the most valuable section, because it captures
   the thing that took an afternoon to work out the first time.

## Installing a skill

Drop the folder into your skills directory and restart Claude Code:

```bash
cp -r successors-sample-skill ~/.claude/skills/
```

---

Successors — https://successors.world
