Installed vs. enabled
The registry tracks two independent states for each item:- Installed — the item is registered with the system. Installing records it and runs any install-time checks.
- Enabled — the item is active. Only enabled skills, agents, and channels are loaded and usable.
Registry changes are restart-based. Enabling or disabling an item updates its state in the database; the change takes effect when the instance reloads. Recreate the container after a change:
docker compose up -d --force-recreate curia.Required-secret gates
A skill or channel can declare credentials it cannot run without. The registry refuses to install or enable it until those secrets are present in the vault:- Skills declare
install.requires_secretsin their manifest. The bundledweb-searchskill declarestavily_api_key, so it stays disabled until you provision a Tavily key. - Channels declare required credential fields in the catalog. Email and Signal cannot be enabled until their vault keys (
channel.email.*,channel.signal.*) resolve.
Channels: always-on vs. toggleable
Channels behave like skills and agents, with one safeguard: the HTTP and CLI channels are always on and cannot be disabled or uninstalled. They are how you reach your own instance, so locking them off would lock you out. Email and Signal are toggleable — install and enable them from the Channels page once their credentials are in the vault.Managing from the console
- Skills and agents — the Settings registry lists every registered skill and agent with its installed/enabled state. Toggle items there; required-secret gates are surfaced inline so you can see what a disabled item is waiting on.
- Channels — the Channels page lists each channel, its credential fields, and its enabled state. Enter credentials there (they are written to the vault) and enable the channel.
/api/registry/* for skills and agents and /api/vault/* for credentials — see the HTTP API reference.
Related pages
Secrets vault
Where credentials are stored and how to seed them.
How skills work
The skill manifest, the lifecycle, and required-secret gates.