Celiq
v0.12Open app โ†—
Docs/Context Studio/Skill Registry

Skill Registry

Browse the read-only catalog of every capability Orion can invoke โ€” live compute skills and authored knowledge skills โ€” with parameters, role gating, and source.

LuminaryWeaverTracerUpdated June 2026 ยท 6 min read
โœฆ
In this section
Part of Celiq's semantic layer platform. Connect your warehouse, model your data once, query it everywhere.
๐Ÿ’ก
Tip
What it is โ€” A read-only catalog of every capability Orion (and every other AI surface) can invoke, split into compute skills and knowledge skills.
When to use it โ€” When you want to see exactly what Orion is able to do, inspect a skill's parameters or required role, or confirm a Domain Skill has been registered.
Where to find it โ€” Context Studio โ†’ AI Context group โ†’ Skill Registry.
Who can use it โ€” Tracer, Weaver, and Luminary. The list is role-filtered, so you only see skills your role is allowed to run.

The Skill Registry is the single, shared catalog of capabilities behind Orion. Anything Orion can do at runtime is enumerated here, so you can understand and audit Orion's reach without reading code. The same registry powers every AI surface โ€” Orion chat, AI Analysts, MCP, Slack, Sheets, and Embedded all reach the same skills โ€” which means what you see here is exactly what those surfaces use.

The page is a viewer, not an editor. You cannot create or delete skills here. Compute skills appear automatically from the platform's tool engine, and knowledge skills are authored on the Domain Skills page.

Overview

Open Skill Registry and you get a flat list of skill cards. Each card shows a type badge (compute or knowledge), the skill's title, its slug, and โ€” when access is gated above the default โ€” a role badge such as weaver+. A short description sits under the heading.

At the top right is a type filter with three pills: All, Compute, and Knowledge. Selecting a pill refetches the list filtered to that type. Click any card to expand it and reveal its execution reference, parameter list, status, and source.

The registry is consumer-agnostic by design: it wraps the existing execution engine rather than forking it. Compute skills are derived live from the tool engine every time the list loads, so the catalog can never drift from what Orion actually runs.

When to use it

  • You want a complete inventory of what Orion is capable of in this workspace.
  • You need to check which parameters a skill accepts before relying on it in a question or an automation.
  • You want to confirm that a Domain Skill you authored is now registered as a knowledge skill.
  • You are auditing access and need to see the minimum role required to run a given capability.
  • You are debugging why Orion did not use an expected capability, and want to verify the skill exists and is active.

Concepts

TermWhat it means
Compute skillA live tool from the platform's tool engine (for example, querying the warehouse). These are executable, derived automatically, and never authored by hand. Their source is builtin.
Knowledge skillAn authored Domain Skill โ€” business context and instructions that teach Orion how to think about an area. These add knowledge rather than execution. Their source is workspace.
Execution refThe underlying engine entry a compute skill maps to. Knowledge-only skills have no execution ref and cannot be invoked directly.
ParametersThe input fields a skill accepts, shown as name : type chips when a card is expanded.
StatusWhether the skill is active. The registry only lists active skills.
SourceWhere the skill comes from: builtin (the tool engine) or workspace (authored in this workspace).
Min roleThe minimum role allowed to run the skill โ€” tracer, weaver, or luminary. The default is tracer; anything stricter shows a role+ badge.

Getting started

You need a Tracer, Weaver, or Luminary role to open Context Studio. No setup is required for compute skills โ€” they populate themselves. Knowledge skills appear here only after they have been authored and saved on the Domain Skills page.

To open the registry:

1

Open Context Studio

Navigate to Context Studio from the main app navigation.

2

Go to the AI Context group

In the left navigation, find the AI Context group.

3

Select Skill Registry

Click Skill Registry. The catalog loads with the All filter selected.

Step-by-step

1

Choose a type

Use the All / Compute / Knowledge pills at the top right to narrow the list. Compute shows live tools; Knowledge shows authored Domain Skills; All shows both.

2

Scan the cards

Each card shows the type badge, the title, the slug (in monospace), and an optional role badge. Read the one-line description to understand what the skill does.

3

Expand a skill

Click a card to expand it. The card border highlights and a detail panel opens below.

4

Read the details

In the expanded panel you can see the Execution ref, the number of Parameters, the Status, and the Source. Parameters are listed individually as name : type chips.

5

Collapse

Click the card again to collapse it. Only one card is expanded at a time.

Examples

Suppose you want to confirm Orion can query the warehouse and check what that capability requires.

1

Filter to compute

Click the Compute pill. The list narrows to live tools only โ€” these have the source builtin.

2

Find the tool

Locate the SQL/query tool card. Its type badge reads compute and its slug is shown in monospace next to the title.

3

Expand and inspect

Click the card. You will see an Execution ref matching the tool, a Parameters count with chips such as sql : string, Status of active, and Source of builtin.

A compute skill is presented to the registry roughly like this โ€” title is derived from the slug, and the parameters come straight from the tool's input schema:

json
{
  "slug": "run_sql",
  "type": "compute",
  "title": "Run Sql",
  "description": "Run a read-only SQL query against the connected warehouse.",
  "execution_ref": "run_sql",
  "parameters": { "properties": { "sql": { "type": "string" } } },
  "min_role": "tracer",
  "status": "active",
  "source": "builtin"
}

A knowledge skill authored as a Domain Skill appears with the knowledge type and a workspace source, and has no execution ref because it adds context rather than running anything.

Best practices

  • Use the Compute filter when you are reasoning about what Orion can do, and Knowledge when you are reasoning about what Orion knows.
  • Treat the registry as the source of truth for capability questions. Because compute skills are derived live, this list always reflects the real tool engine.
  • When a Domain Skill is not showing up here, fix it at the source on Domain Skills rather than expecting an edit control here.
  • Check the Min role badge before assuming a teammate can run a skill โ€” the catalog you see is filtered to your own role, so a colleague with a lower role may see fewer cards.

Tips

๐Ÿ’ก
Tip

The role badge only appears when a skill is gated above the default Tracer level โ€” for example weaver+. If a card shows no role badge, any role that can open the registry can run it. Even so, the registry's role filter is a coarse pre-filter; the real, fail-closed permission check happens at execution time.

Common mistakes

โš ๏ธ
Warning
Treating the registry as an editor. There are no create, edit, or delete controls here. Compute skills come from the tool engine automatically; knowledge skills are authored on Domain Skills.

Assuming every skill is runnable. Knowledge-only skills have no execution ref. They contribute context to Orion but cannot be invoked as a tool.

Expecting to see another role's view. The list is filtered to your role. A skill missing from your view may simply require a higher role than you hold.

Troubleshooting

SymptomCauseFix
The page shows "Loading skill registryโ€ฆ" and never finishesThe registry request failedReload the page; if it persists, confirm you are signed in with a Tracer or higher role.
"No skills found." empty stateThe current type filter matched nothingSwitch the filter back to All. Compute skills appear automatically from the tool engine; knowledge skills only appear after they are authored in Domain Skills.
A Domain Skill you wrote is not listedIt has not been saved as an active knowledge skill, or the Compute filter is activeSet the filter to Knowledge or All, then save the skill on the Domain Skills page if it is still missing.
A skill you expected is missing entirelyIts minimum role is higher than yoursThe catalog is role-filtered; ask a Weaver or Luminary to confirm, or check your role under workspace settings.
An expanded card shows no Execution refIt is a knowledge-only skillThis is expected โ€” knowledge skills add context and are not directly invokable.
  • Domain Skills โ€” author the knowledge skills that appear here.
  • Orion โ€” the AI layer that invokes these skills.
  • AI Operations โ€” monitor how skills and AI calls are actually used.
  • Context Studio overview โ€” the full intelligence layer this page belongs to.