aspens add
Add individual components from the bundled library, or create custom skills.
npx aspens add <type> [name]Agents
Section titled “Agents”npx aspens add agent all # Add all 11 AI agentsnpx aspens add agent code-reviewer # Add a specific agentnpx aspens add agent --list # Browse available agentsAfter installing agents, customize them with your project’s context:
npx aspens customize agentsnpx aspens add hook skill-activation # Auto-triggering skill hooksnpx aspens add hook graph-context # Graph context injectionnpx aspens add hook --list # Browse available hooksCommands
Section titled “Commands”npx aspens add command dev-docs # Add slash commandsnpx aspens add command --list # Browse available commandsSkills
Section titled “Skills”# Scaffold an empty custom skillnpx aspens add skill my-convention
# Generate a skill from a reference documentnpx aspens add skill release --from dev/release.md
# List existing skillsnpx aspens add skill --listWhen using --from, aspens reads the reference document and generates a focused skill from its content.
Options
Section titled “Options”| Option | Description |
|---|---|
--list | Browse available components |
--from <file> | Generate a skill from a reference document (skills only) |
--force | Overwrite existing files |
--model <model> | Model for skill generation |
--timeout <seconds> | Backend timeout |
--verbose | Show backend activity |