| name | lemma-widget |
| description | Create lightweight inline Lemma widgets for conversations via display_resource(type="WIDGET"): self-contained HTML/CSS/JS for metrics, lists, comparisons, timelines, record details, previews, and charts, optionally powered by live pod data through the browser Lemma SDK. Use an app, not a widget, when the UI needs React, routing, or substantial application state. |
Lemma Widget
A widget is the default way to show an answer that is more than short prose.
Use display_resource(type="WIDGET") whenever the useful result has structure or
visual hierarchy: several values, records, statuses, steps, comparisons, a timeline,
a compact table, a preview, or a chart.
Use plain text only for a single fact, a short explanation, or narration around the
widget. If an existing FILE, TABLE, APP, or other pod resource already represents the
answer, display that resource directly instead of recreating it as a widget.
Widget or app?
- Widget: one compact inline view; plain HTML/CSS/JS; quick to render in
the conversation; little local state.
- Vite app: React, routing, multiple screens, reusable components, substantial
interaction/state, or a UI people will return to as a product.
React, ReactDOM, Tailwind, and the agent web-component bundle belong in a Vite
app — Lemma has full app support for that class of UI. A widget stays lightweight,
and can be saved as an HTML app later.
Widgets are display surfaces. ask_user collects fixed choices; prose collects
free-form input.
Build one
-
If the widget uses pod data, inspect the real table and column names first:
lemma tables list
lemma tables get <table>
lemma query run "select * from <table> limit 5"
-
Load the closest maintained starter with load_skill, using
name="lemma-widget" and one of these resource_path values:
| Answer shape | Starter |
|---|
| Metrics grouped by one field | assets/widget-starter-v1.html |
| Compact record list | assets/widget-list-v1.html |
| Bar chart grouped by one field | assets/widget-chart-v1.html |
| One record with selected fields | assets/widget-detail-v1.html |
-
Replace every uppercase __PLACEHOLDER__ with inspected names and useful labels.
For __FIELD_CONFIG__, insert a JSON array such as
[{"label":"Owner","field":"owner"}].
-
Adapt the content and styling, then call display_resource with type="WIDGET".
The starter's SDK loader and loading/empty/error scaffolding carry over as-is.
The backend rejects unresolved placeholders, broken SDK loaders, and malformed
markup before display.
The display_resource call
type="WIDGET" takes exactly one of:
content — your inline HTML fragment (the usual case), or
public_url — a URL to embed instead.
Passing both, or neither, is rejected. One more WIDGET-only field:
loading_messages — up to 4 short lines shown while the widget renders.
Setting them on any other resource type is rejected.
name, path, filters, and query belong to other types.
Fixed contract
content is an HTML fragment: raw markup, body-level tags only. A doctype,
<html>, <head>, <body>, or an encoded blob is rejected before display.
- The markup parses as what it reads. A tag that lost its
< becomes a text node:
the element never exists, everything it styled renders plain, and the tag shows
up as text. That, and a close tag with nothing open, is rejected.
- A standalone SVG image is a pod file:
lemma files upload, then
display_resource(type="FILE", path=...). Inline <svg> icons inside an HTML
fragment are part of the fragment.
- All CSS is local. The widget runs in its own iframe and inherits no frontend CSS.
- JavaScript is plain browser JS — no build step, JSX, React, or framework runtime.
- Secrets, credentials, pod ids, and environment hostnames stay out of the HTML.
- Loading, empty, error, and narrow-screen states are all deliberate.
- Values reach the DOM through
textContent, or escaped before innerHTML.
- The view stays compact: no fixed positioning, no nested scrolling.
- Height is capped. The inline view clips at 480px with a fade and an
Expand control, and a self-reported height above 2400px is ignored. Design for
the fold: put the answer at the top, not below a long table.
- Widgets are display-only — they cannot send anything back into the
conversation. The host accepts one message from the frame, a height report.
Use
ask_user when you need an answer.
The starters are platform-themed and system-aware: their
prefers-color-scheme: dark rules and semantic fallbacks carry over intact. They
consume the public token layer — --lemma-widget-bg, surface, subtle, text,
muted, border, accent, danger, danger-soft, radius, font, and
color-scheme (each with the full --lemma-widget- prefix). Chart starters also
expose chart-1 through chart-5.
That list is exhaustive — the host injects only these. The frontend posts a
larger palette (success, warning, info, accent-hover, …), and anything
outside the published set is filtered out before it reaches your iframe, so
--lemma-widget-success resolves to nothing. Frontend variables such as
--text-primary never cross the iframe boundary either.
Every token reference carries a fallback — var(--lemma-widget-surface, #fff),
not var(--lemma-widget-surface). The host delivers the palette by postMessage,
so it arrives after first paint, and it never arrives at all when the widget is
opened outside the conversation frame. A bare reference resolves to nothing there
and the widget renders colorless.
For a data-backed widget, preserve the starter's browser SDK loader:
- Build the SDK URL from
window.__LEMMA_CONFIG__.apiUrl.
- Load
/public/sdk/lemma-client.js dynamically and start in sdk.onload.
- Construct
new window.LemmaClient.LemmaClient() with no arguments.
- Call
client.initialize() and handle a non-authenticated state.
- SDK calls run as the signed-in user under normal RLS and grants.
unauthenticated does not mean "signed out." The widget is a cross-site
iframe and the browser SDK authenticates by cookie, which some browsers and
local HTTP setups withhold. So write that branch as "this view can't load your
data here", not "sign in to Lemma" — the user usually is signed in. Keep the
widget useful without data where you can.
- Shared files use
/…, personal files use /me. There is no /pod/... prefix.
Common calls:
await client.records.list("tickets", { limit: 50 });
await client.records.get("tickets", "record-id");
await client.datastore.query(
"select status, count(*) as total from tickets group by status"
);
await client.files.search("quarterly planning", { limit: 10 });
await client.files.children.markdown("/knowledge/report.pdf");
await client.files.children.content(
"/knowledge/report.pdf/pages/page_0001.jpg"
);
Prefer datastore.query for aggregates. A widget that stays live opens the change
stream rather than polling with setInterval:
const handle = client.datastore.watchChanges({
table: "tickets",
onChange: (f) => { },
});
It is a WebSocket with its own auth, so it is subject to the same cross-site
constraint as initialize() above — always keep the non-live render working.
Visual standard
- Lead with the answer, not a title-heavy dashboard shell.
- Follow Lemma's neutral surfaces, near-black/near-white text, indigo action color,
restrained borders, and compact radii unless the content needs a distinct visual
language.
- For a very small widget, the token-light set is just
surface, text, muted,
border, and accent.
- Format numbers and dates for humans.
- Use a list for repeated records, cards for a handful of metrics, a detail layout
for one record, and a chart only when shape or comparison matters.
- For Chart.js, give the canvas wrapper an explicit height and read chart/text/grid
colors from the starter's semantic variables.
- Keep explanation outside the widget in the assistant response.
Before display
- The chosen view is genuinely more useful than short prose.
- The closest versioned starter was used and all placeholders were replaced.
- Every tag opens with
< and closes once; the fragment carries no full-document
tags, secrets, hardcoded hosts, or pod ids.
- Every
--lemma-widget-* reference has a fallback value.
- SDK code uses injected config and boots from the script load handler.
- Loading, empty, error, and mobile states are present.
For React or a full product UI, load lemma-builder and follow
references/apps.md. For interaction-tool behavior, see
lemma-builder/references/agent-tools.md.