soleri-agent-modelisted
Install: claude install-skill adrozdenko/soleri
# Agent Mode — Intent Routing & Command Reference
This skill governs how to interpret natural language directed at this agent and route it to the correct facade + op. Use it when a phrase is ambiguous, when the user addresses the agent directly, or when surfacing the command reference.
## Routing Protocol (MANDATORY)
Before executing any agent op, apply this 3-step protocol:
**Step 1 — Semantic parse**
Identify the verb + object in the user's message:
- Verb: what action? (search, save, plan, execute, remember, check, show, run, fix)
- Object: what is it about? (vault, brain, memory, plan, session, health, pattern)
**Step 2 — Confirm via route_intent (when ambiguous)**
```
YOUR_AGENT_control op:route_intent
params: { prompt: "<user's phrase>" }
```
Use this when the phrase matches 2+ intents. Skip it for obvious, unambiguous commands.
**Step 3 — Execute the mapped op**
Use the NL → Op table below to select facade + op. Pass `projectPath: "."` wherever required.
---
## Natural Language → Facade + Op Mapping
### Search & Recall
| What the user says | Facade | Op | Notes |
| ------------------------------------------ | ------------------- | -------------------- | ------------------------ |
| "search for X" / "find patterns on X" | `YOUR_AGENT_vault` | `search_intelligent` | mode: "scan" first |
| "what do we know about X" | `YOUR_AGENT_vault` | `search_intellige