@aeriox-co/skills
v1.0.0
Published
AERIOX skills bundle for Claude Code / Claude Desktop — image animation, character building, prism application, multi-shot composition. Wraps the @aeriox-co/mcp server.
Maintainers
Readme
@aeriox-co/skills
Pre-packaged Claude Code / Claude Desktop skills for the AERIOX public API. Each skill orchestrates one or more aeriox-mcp (the CLI command exposed by the @aeriox-co/mcp package) tool calls with sane defaults, prompting strategy, and error recovery — so the agent doesn't have to figure out the choreography from scratch every time.
Skills (4)
| Skill | What it does |
|-------|-------------|
| /aeriox:bring-to-life | Take an image, animate it via the best-fit motion preset and (optional) prism. Wraps apply_prism + generate_video. |
| /aeriox:character-builder | Guided character creation — collect 3-5 references, train, validate identity fidelity. Wraps create_character + get_job_status + retry logic. |
| /aeriox:prism-apply | Browse the prism catalog, preview top 3 candidates against your asset, apply the chosen one. Wraps list_prisms + apply_prism. |
| /aeriox:compose-film | Multi-shot video assembly — gather characters, generate per-shot videos, stitch into a single output. Wraps list_characters + generate_video (loop) + compose_video. |
Prerequisites
Each skill calls aeriox-mcp tools, so you must have:
@aeriox-co/mcpinstalled and configured in your client (Claude Desktop, Cursor, Continue, etc.) — see https://github.com/aeriox/sdk-mcp#configuration. The CLI command isaeriox-mcp.AERIOX_API_KEYset in the MCP server's env. Get a key at https://create.aeriox.co/settings/api-keys.
Install
npm install -g @aeriox-co/skillsThen point Claude Code at the installed bundle. The exact installer command is moving as the skills ecosystem matures — see the canonical Anthropic docs at https://docs.anthropic.com/en/docs/skills (or your client's skills documentation) for the current path.
The skills themselves live at node_modules/@aeriox-co/skills/skills/<name>/SKILL.md after install.
Skill anatomy
Every skill is a single SKILL.md file with YAML frontmatter:
---
name: <skill-id>
description: <one-line summary, used for trigger matching>
triggers:
- <natural-language phrase>
- <natural-language phrase>
tools:
- aeriox-mcp.<tool_name>
---The body is markdown the agent reads when the skill is invoked: prerequisites, step-by-step workflow, examples, error recovery.
Development
git clone https://github.com/aeriox/skills-aeriox
cd skills-aeriox
npm install
npm run lint # checks SKILL.md frontmatter parses + required keys presentLicense
MIT © AERIOX LLC
