Skip to main content

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.

The one-pager

An Agentic Oracle is an AI agent that owns a verifiable identity on IXO, talks to users through encrypted per-user Matrix rooms, authenticates every request via UCAN delegation, and composes its capabilities from plugins (compiled in) and skills (discovered at runtime). QiForge is the framework that lets you ship one. The runtime (@ixo/oracle-runtime) handles bootstrap, auth, the agent loop, the checkpointer, Matrix wiring, and 15 bundled plugins. Your oracle is a thin main.ts plus whatever custom plugins you write.

Three layers, one diagram

You write the green box (and any custom plugins). Everything else is shipped in the framework.

Plugin vs skill — the most important distinction

PluginSkill
What it isTypeScript extension to the runtimeExecutable capsule from the IXO skills registry
Where it livesInside your oracle’s bundleRemote, fetched at request time
When it loadsAt boot, via createOracleAppPer request, when the agent decides to use one
Who authors itOracle developer (you, or the framework team for bundled)Anyone — published to the public registry
How the agent uses itTools bound directly to the LLMThe agent calls search_skills + sandbox_run (plugin tools) to find and execute one
Use a plugin when only your team needs to extend the oracle and you want type safety + full host access. Use a skill when the community should be able to publish capabilities without touching your code. Read the full Plugin vs Skill comparison

What you can build

  • Domain agents — climate, MRV, carbon DAO assistants.
  • Workflow copilots — drive an AG-UI portal, fill forms, navigate browsers.
  • Integration hubs — Gmail, GitHub, Linear, Slack, Notion via the bundled composio plugin.
  • Skill runners — discover and run community-authored capsules in a per-user Linux sandbox.

Where to go next

Architecture

The three layers, bootstrap flow, and what’s pluggable vs fixed.

Quickstart

Build a working oracle in 10 minutes with the CLI.
Source: createOracleApp.