soleri-build-skilllisted
Install: claude install-skill adrozdenko/soleri
# Build Skill — Create Skills for Soleri Agents
Create well-structured skills that follow Soleri conventions. Skills are SKILL.md files in the forge that get synced to agents as slash commands.
## Skill Anatomy
Skills live in two places:
| Location | Purpose |
| -------------------------------------------------- | -------------------------- |
| `packages/forge/src/skills/soleri-{name}/SKILL.md` | Source — ships with Soleri |
| `~/.claude/skills/{agent}-soleri-{name}/SKILL.md` | Runtime — synced per agent |
### File Structure
```yaml
---
name: soleri-{skill-name}
tier: default
description: >
Use when the user says "trigger1", "trigger2", "trigger3",
or wants to [brief purpose]. [One sentence about what the skill does].
---
# Skill Title — Short Purpose
[Core workflow instructions with numbered steps]
## Agent Tools Reference
| Op | When to Use |
|----|-------------|
| `search_intelligent` | Check vault before starting |
| `capture_knowledge` | Persist patterns worth remembering |
```
## Creation Process
### Step 1: Search Vault for Prior Art
Before creating anything, check if a similar skill or pattern exists:
```
YOUR_AGENT_core op:search_intelligent
params: { query: "<skill topic>" }
```
List existing skills to avoid duplication:
```bash
ls packages/forge/src/skills/
```
### Step 2: Check Trigger Keywords
Every skill needs 4-8 unique trigger phrases in the `description:` field. Before choos