Source:Documentation Index
Fetch the complete documentation index at: https://docs.ixo.world/llms.txt
Use this file to discover all available pages before exploring further.
packages/oracle-runtime/src/plugins/skills/
| Attribute | Value |
|---|---|
| Visibility | always |
| Stability | stable |
| Category | data |
| Default state | On |
| Depends on | sandbox (hard dep — boot fails without it) |
Summary
Discover IXO skill capsules. Bothlist_skills and search_skills mint an ixo:skills UCAN invocation per call so the registry surfaces the caller’s own published private skills alongside public ones. When minting fails the tools degrade to public-only — they never throw on auth issues. Pairs with sandbox for execution (see Plugin vs Skill).
Environment variables
| Var | Required | Description |
|---|---|---|
SKILLS_CAPSULES_BASE_URL | no | Defaults to https://capsules.skills.ixo.earth. |
NETWORK | no | Read but not owned (declared by the core base env schema). Forwarded as X-IXO-Network. |
What it contributes
- Tools:
list_skills,search_skills. - Sub-agents: none.
- Middleware: none.
- HTTP routes: none.
- Shared state: none.
Opt out / Opt in
When to use it
- User asks “what skills are available?” or “what can you do?”.
- User asks the agent to find a skill for a specific task (“a skill for invoices”, “is there a skill for KYC?”).
- Before running a skill via the sandbox, list or search to obtain its
cidand path.
When NOT to use it
- Executing a skill — that goes through
sandbox(sandbox_run), not the skills tools. - General web search — use
firecrawl.
Where to read next
Plugin vs Skill
Why
skills discovers and sandbox executes.Declare dependencies
Pattern used here to require
sandbox.