Celiq
v0.12Open app โ†—
Docs/Building with Celiq/Workspace intelligence score

Workspace intelligence score

A single number that shows how much Orion has learned about your business โ€” your metrics, corrections, certified reveals, and monitoring.

TracerWeaverLuminaryUpdated Jun 2026 ยท 5 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 0โ€“100 score that measures how much Orion has learned about your business specifically โ€” and a panel that shows you exactly what it knows.
Why use it: See the institutional knowledge you've built up, understand why Orion's answers keep getting better, and find the fastest ways to make it smarter.
Where to find it: The Orion Intelligence widget on your home page. Admins get a fuller breakdown in Lumen.
Who can use it: All roles can view the score. Editing workspace memory is an admin action.

Every question you ask, every correction you make, and every reveal you certify teaches Orion something about how your business works. The Workspace Intelligence Score makes that accumulated knowledge visible. As the score rises, Orion needs less hand-holding to get your metrics right โ€” and you can see precisely what it has learned.

What the score measures

The score is a number from 0 to 100, aggregated from five sources of workspace knowledge. Each source contributes points up to a cap:

ComponentWhat it countsPointsCap
Key metricsCanonical metric definitions in Orion's memory3 pts each30
CorrectionsCorrections you've applied to Orion's answers2 pts each20
Certified revealsReveals certified in this workspace5 pts each25
Queries runTotal questions asked1 pt per 10 queries15
KPIs monitoredDistinct KPIs being tracked2 pts each10

The caps add up to a maximum of 100. A high score means Orion has a rich, governed understanding of your business โ€” not just that you've used it a lot.

Levels

Your score maps to one of four levels:

LevelScore rangeWhat it means
Learning0โ€“25Orion is still getting to know your workspace.
Familiar26โ€“50Orion knows your core metrics and a few gotchas.
Expert51โ€“75Orion reliably uses your governed definitions.
Trusted76โ€“100Orion has deep, governed knowledge of your business.

The intelligence widget

The home page shows a compact Orion Intelligence widget:

  • The current level badge (e.g. Trusted)
  • The score out of 100, with a progress bar
  • A plain-language summary, such as "Orion has learned 47 things about your business"
  • A See what Orion knows โ†’ link that opens the full breakdown

What Orion knows

Click See what Orion knows to open the expanded panel. It shows:

  • A breakdown by component, each with its count and points, drawn as mini bars โ€” so you can see which source is contributing most.
  • Highlights โ€” a human-readable list of the most important things Orion has learned, phrased as "Orion knows thatโ€ฆ". For example:

> Orion knows thatโ€ฆ

> - Revenue is your primary KPI

> - CAC calculation excludes brand spend

> - Order counts always exclude cancelled orders

  • A Teach Orion more action that opens Orion pre-filled with "Remember thatโ€ฆ", so you can add a fact directly.

How to improve your score

Because each component is capped, the fastest way to raise a low score is to broaden across components rather than maxing out one:

  • Certify your reveals (5 pts each, up to 25) โ€” the highest-value action. Certify metric definitions in Forge.
  • Correct Orion when it's wrong (2 pts each, up to 20). Each correction is stored in memory and applied to future answers.
  • Teach Orion key metrics (3 pts each, up to 30). Tell Orion your canonical definitions and gotchas via "Remember thatโ€ฆ".
  • Set up KPI monitoring (2 pts each, up to 10) so Orion tracks snapshots of your most important numbers.
  • Keep asking questions (1 pt per 10 queries, up to 15) โ€” this accrues naturally with use.

Corrections and remembered facts feed Orion's workspace memory, which is loaded silently at the start of every session.

For admins (Lumen)

Admins get an expanded intelligence panel in Lumen, on the queries page below the Corrections panel. It includes the full component breakdown and the ability to edit workspace memory directly โ€” add, fix, or remove the facts Orion relies on.

API

The score is exposed through a single workspace-scoped, authenticated endpoint:

MethodEndpointPurpose
GET/api/intelligence/scoreReturns the score, level, per-component breakdown, and highlights for the current workspace.

A typical response:

json
{
  "score": 73,
  "level": "expert",
  "components": {
    "key_metrics":      { "count": 8,  "points": 24 },
    "corrections":      { "count": 6,  "points": 12 },
    "certified_reveals":{ "count": 4,  "points": 20 },
    "queries_run":      { "count": 90, "points": 9 },
    "kpis_monitored":   { "count": 4,  "points": 8 }
  },
  "highlights": [
    "Revenue is your primary KPI",
    "CAC calculation excludes brand spend"
  ],
  "last_updated": "2026-06-09T08:00:00Z"
}

Limitations

  • The score is cached for about 10 minutes per workspace. It is not real-time โ€” actions you take (a correction, a new certified reveal) may take a few minutes to be reflected.
  • It measures governed knowledge, not raw activity. Running thousands of queries alone can't push you past the queries cap of 15 points. To reach Trusted, you need certified reveals, corrections, and remembered metrics.
  • The score is workspace-scoped. Each workspace builds its own intelligence; knowledge does not transfer between workspaces.
  • A high score does not guarantee correctness. It reflects how much Orion has learned, not that every learned fact is still accurate. Review workspace memory periodically in Lumen and remove anything stale.