| name | create-data-app |
| description | Scaffold a new Metabase data-app into the connected remote-sync repository's `data_apps/<app>/` directory from the `data-app-template`. Use when the user asks to start, create, scaffold, or set up a data-app from scratch. |
Create a Metabase Data App
A Metabase data-app is a single JS bundle that the host loads inside a Near Membrane sandbox and renders inside its own React tree. The scaffold is a Vite + React + TypeScript project: source under src/, a dev server that previews the app against a real Metabase through the same Near Membrane sandbox + distortion rules Metabase uses in production — so npm run dev behaves like production, including for third-party libraries the app bundles — and npm run build producing a single dist/index.js. (Because the sandbox runs a built bundle, a change rebuilds it and does a soft reload — re-evaluates the bundle in the sandbox and remounts the app, keeping auth/SDK loaded — rather than hot-swapping modules; component state resets, but there's no full browser refresh.) The dev preview also shows a corner ⚠ Diagnostics toolbar that captures runtime errors — including the sandbox's otherwise-opaque blocked-API messages — so failures surface instead of being swallowed.
Data apps are served from Git, not uploaded. A single repository is connected to Metabase via remote-sync (Admin → Settings → Remote sync). Each app lives in its own directory data_apps/<app>/ inside that repo — its source, a data_app.yml (name/slug/path), and the committed built bundle at the path its data_app.yml declares (dist/index.js by default). On each remote-sync import Metabase materializes one app per directory and serves it at /data-app/<slug>. So this skill always scaffolds into the connected repo's data_apps/<app>/ directory, never as a standalone project.
The scaffold ships inside this skill at ./template/ — a Vite + React + TypeScript project that was installed alongside the skill. Step 3 just copies it into the app directory; the skill then guides you through the customization + first-app-content steps — it never generates project files from scratch. If you find yourself writing package.json, vite.config.ts, tsconfig.json, or src/index.tsx by hand, stop — copy the template instead.
When to invoke this skill
- "scaffold a new data app" / "create a Metabase data app" / "set up a data-app project"
- "I want to build a data app" / any vague intent to author a data app
- Starting a fresh agent task that will produce a data-app bundle.
- Do not use this skill for an existing data-app project when the task is to
build screens, use Metabase data, generate or refresh schema files, wire saved
questions / tables / metrics / actions, add filters, or author data hooks.
Treat those as existing-data-app editing tasks and use the agent's normal
skill-discovery flow from the user's wording.
Step 1 — Locate the remote-sync repository
Data apps live inside the Git repository connected to Metabase via remote-sync. Find it before scaffolding:
- Ask: "Do you already have a Git repository connected to this Metabase via remote-sync?"
- Yes → ask for its local path.
- No → ask the user to create one (a plain Git repo they will connect under Admin → Settings → Remote sync) and share its path. The skill does not create or connect the repo — the user owns that.
- Verify the path exists and is a Git working tree (it has a
.git). This repo is the working directory for every step below.
Step 2 — Name the app and create its directory
- Settle on the app's slug before scaffolding — it's the directory name and the
/data-app/<slug> URL. Lowercase letters, numbers, and single dashes ([a-z0-9]+(?:-[a-z0-9]+)*). If the purpose isn't clear yet, ask a one-line "what's this app for?" and propose a slug; confirm it.
- Ensure
<repo>/data_apps/ exists; create it if missing.
- Create
<repo>/data_apps/<slug>/. If it already exists, treat it as an existing project (see below) — never overwrite without confirmation.
Detecting an existing app
If <repo>/data_apps/<slug>/ already holds a project, verify it matches the current data-app-template. Check all of:
vite.config.ts is a one-liner: export default dataAppConfig()
(from @metabase/embedding-sdk-react/data-app-dev). There is no
local config/ directory: the whole bundle contract (externals/globals, the
dev sandbox entry, CSS/SVG handling) lives inside that SDK config, not the
scaffold. dataAppConfig takes only a curated set of overrides (currently just
port); the contract plugin is always applied and can't be overridden.
src/index.tsx default-exports a DataAppFactory (type from
@metabase/embedding-sdk-react/data-app) returning { component, providerProps? }
(no args).
All checks pass → template-shaped. Ask: "Extend this app, or scaffold a new one under a different slug?" If extend → skip the copy step, edit src/. If new → pick a different slug and restart at Step 2.
Any check fails → not template-shaped (older scaffold or drift). Stop. Tell the user the structure differs from the current template, extending it risks breaking the bundle contract, and ask whether to (1) migrate it, (2) scaffold fresh under a new slug and port the code over, or (3) proceed anyway at their risk. Wait for the answer.
Never overwrite existing files without explicit confirmation.
Step 3 — Copy the template into the app directory
The template ships inside this skill at ./template/ (installed alongside the skill via skills add metabase/metabase/skills#release-x.<major>.x). Copy it into the app directory:
APP_DIR="<repo>/data_apps/<slug>"
# `<skill-dir>` = the directory this SKILL.md was loaded from
# (e.g. `.claude/skills/create-data-app`); the template is its `template/` subfolder.
cp -R "<skill-dir>/template/." "$APP_DIR/"
A data app is a subdirectory of the remote-sync repo, not its own repository — so this is a plain copy, never a nested git clone / git init. Everything below runs inside $APP_DIR.
Step 4 — Customize
Once the template is in <repo>/data_apps/<slug>/ (run everything below from that directory):
-
Edit package.json name to match the slug.
-
Pin @metabase/embedding-sdk-react to the published data-apps tag (the template ships with *):
npm install @metabase/embedding-sdk-react@63-data-apps
This resolves to the current internal-testing SDK build with the @metabase/embedding-sdk-react/data-app entrypoint (the app's APIs) and the @metabase/embedding-sdk-react/data-app-dev entrypoint vite.config.ts uses (the dev/build preset, which serves the sandbox entry). Do not use latest, 63-stable, or a generic ^0.63.x range for data apps until the data-app SDK surface is promoted out of the internal tag.
-
Ensure the repo-root .gitignore ignores .env.local — do this before creating any credentials file so the secret can never be committed. Create the .gitignore if the repo doesn't have one, then add the entry if it's missing:
ROOT="$(git rev-parse --show-toplevel 2>/dev/null)"
if [ -z "$ROOT" ]; then
echo "MISSING (run this from inside the connected git repo)"
else
GITIGNORE="$ROOT/.gitignore"
# Create the repo-root .gitignore if absent, then ensure `.env.local` is
# ignored so the credentials file (next step) can never be committed.
[ -f "$GITIGNORE" ] || : > "$GITIGNORE"
grep -qxF ".env.local" "$GITIGNORE" || echo ".env.local" >> "$GITIGNORE"
fi
-
Set up the Metabase credentials at the repository root — <repo>/.env.local (usually two levels up from the app dir), not the app dir. One .env.local there serves every data app in the repo.
Create it from the example if absent, then verify the two vars are set without printing the file (it may hold other secrets) — source it and echo only a pass/fail signal, never the values:
# Resolve the repo root first; an unguarded $(git ...) would expand to
# "/.env.local" outside a repo and touch a system-level file.
ROOT="$(git rev-parse --show-toplevel 2>/dev/null)"
if [ -z "$ROOT" ]; then
echo "MISSING (run this from inside the connected git repo)"
else
ENV_FILE="$ROOT/.env.local"
[ -f "$ENV_FILE" ] || cp .env.local.example "$ENV_FILE"
# Source inside a subshell so the vars never leak into your environment.
( source "$ENV_FILE" 2>/dev/null
[ -n "$DATA_APP_MB_URL" ] && [ "$DATA_APP_MB_URL" != "mb_replace_me" ] &&
[ -n "$DATA_APP_MB_API_KEY" ] && [ "$DATA_APP_MB_API_KEY" != "mb_replace_me" ]
) && echo "creds present" || echo "MISSING"
fi
Step 5 — Verify the starter app
At this point the data app exists. Keep this workflow focused on creating the
project scaffold and proving the starter bundle works.
- Run
npm run typecheck.
- Run
npm run build.
- Confirm
git status shows the app source, lockfile, data_app.yml, and the
built bundle (dist/index.js by default) as committable files.
- If the user asked for a live preview, run
npm run dev and confirm the
starter "Hello, data app" screen renders through the sandbox preview.
Stop here if the user only asked to create, scaffold, or set up a data app.
If the next task is to build or iterate on the actual app UI — especially if it
mentions an existing data app, Metabase data, generated schema files, saved
questions, tables, metrics, actions, filters, semantic-layer entities, or data
hooks — treat it as a separate existing-data-app editing task. Use the agent's
normal skill-discovery flow from those terms. Do not expand this scaffold skill
with data-layer authoring rules.
Do not modify src/index.tsx or tsconfig.json unless the change is genuinely required. The whole build/dev setup lives in the SDK behind dataAppConfig() (which also serves the dev HTML shell — there's no index.html to edit), so vite.config.ts is just:
import { dataAppConfig } from "@metabase/embedding-sdk-react/data-app-dev";
export default dataAppConfig();
dataAppConfig exposes only a curated set of overrides (currently just port). The whole contract — factory shape, externals/globals, the dev sandbox entry, CSS inlining, and SVG-as-component support — is baked in and can't be overridden; that's deliberate, so a data app can't drift from what Metabase loads. There's no local build config to touch (and no index.html — the SDK's dev server serves the HTML shell), and tweaks to src/index.tsx still risk breaking the factory shape and silently break drill popups and routing.
There is intentionally no escape hatch for extra Vite plugins, aliases, or defines — port is the only knob. If you think you need more, you almost certainly don't; solve it in src/ instead.
After every meaningful round of edits, run npm run typecheck. It runs tsc --noEmit over src/ and vite.config.ts — catches wrong prop shapes against the SDK types, broken refactors, missing imports, etc. The Vite dev server does NOT typecheck (it only transpiles), so errors that would fail a production CI run can sit invisibly in a passing npm run dev session. Run it before declaring a task complete.
Before handoff, re-check package hygiene. @metabase/embedding-sdk-react should use the expected data-app SDK source/tag for the target environment, and @types/react-datepicker should not be installed unless the chosen react-datepicker version actually needs it.
Source conventions
1. Write TSX
Plain ESM + TSX, normal package imports:
// src/components/CustomerCard.tsx
import { StaticQuestion } from "@metabase/embedding-sdk-react";
type Customer = { name: string; questionId: number };
export default function CustomerCard({ customer }: { customer: Customer }) {
return (
<article>
<h3>{customer.name}</h3>
<StaticQuestion questionId={customer.questionId} height={300} width="100%" />
</article>
);
}
2. Structure from the start
Default project layout once the starter app is extended:
src/
├── index.tsx (template — the factory; don't edit)
├── App.tsx (routing + composition only)
├── theme.ts
├── pages/ (one file per screen)
│ ├── Overview.tsx
│ └── CustomerDetail.tsx
├── components/ (shared UI)
│ └── Card.tsx
├── hooks/ (data-fetching wrappers, custom hooks)
│ └── useCustomers.ts
├── lib/ (pure helpers / derivations)
│ └── format.ts
└── types/ (shared TS types)
└── customer.ts
Vite bundles everything reachable from src/index.tsx into a single dist/index.js IIFE — the folder layout is purely for your own readability.
The build output is one self-contained .js file — nothing else. The backend serves a single bundle, so there are no sidecar files: CSS is inlined into the JS, and every imported asset (images, fonts, SVGs-as-URLs) is base64-inlined as a data URI. So import logo from "./logo.png" / import iconUrl from "./icon.svg" give you a ready-to-use data-URI string, and SVGs can also be imported as React components with the ?react suffix (built-in svgr): import Icon from "./icon.svg?react". Everything gets baked into dist/index.js — just keep large binaries out, since inlining inflates the bundle. (If your editor doesn't recognize a ?react import, add declare module "*.svg?react"; to a .d.ts in src/.)
3. Import SDK values from the correct SDK entrypoint
The build externalizes React, the JSX runtimes, @metabase/embedding-sdk-react, and @metabase/embedding-sdk-react/data-app to sandbox globals in both production and npm run dev — in dev the sandbox entry endows them from the npm package, so the bundle runs identically in both. Just import from the entrypoints normally:
// ✅ correct
import { StaticQuestion } from "@metabase/embedding-sdk-react";
import {
DataAppRouter,
DataAppLink,
useMetabaseQuery,
} from "@metabase/embedding-sdk-react/data-app";
// ❌ wrong — no globalThis pattern; you'd be reading nothing
const { MetabaseProvider, StaticQuestion } = globalThis;
Do NOT render <MetabaseProvider> in App.tsx. The dev entry (served by the SDK's dev preset) and the production host both wrap your tree in a provider that lives in their own realm — wrapping inside the bundle would route the SDK's setState-via-listener paths through the Near Membrane sandbox and silently break drill popups, plugin init, and similar.
4. Import react normally too
The build externalizes react and react-dom, so plain imports resolve the same way in both modes — the production host and the dev sandbox both endow them as sandbox globals:
import { useState, useEffect, useMemo } from "react";
No import React from "react" needed in TSX files — the template uses the automatic JSX runtime (jsx: "react-jsx" in tsconfig.json; dataAppConfig() includes the React plugin). The compiler injects the JSX-runtime imports it needs (react/jsx-runtime in production, react/jsx-dev-runtime in dev — both externalized and endowed by the sandbox). Just write JSX and named imports — that's it.
For React types (e.g. ComponentType, ReactNode, RefObject), use named type imports rather than the React. namespace:
import type { ComponentType, ReactNode } from "react";
Theme rules
MetabaseProvider's theme (defined in src/theme.ts) is the only way SDK component appearance changes. It is NOT a stylesheet for the bundle's own chrome.
| Field | Purpose | Notes |
|---|
colors.brand | Accent for SDK widgets | Use the data app's primary color. |
colors.brand-hover, colors.brand-hover-light | Hover/accent backgrounds for SDK widgets | Use a subtle surface tint that contrasts with hover text. Do not use the same saturated color as brand. |
colors.charts | Chart palette | Array of strings. Use vivid brand-shade colors only; never pale tints — palette index 1+ may render labels and pale-on-white is invisible. |
colors.positive / colors.negative | Semantic indicators | |
colors.background, colors.background-secondary | SDK component surface | MUST match the immediate parent container of the SDK component. If the chart sits inside a white card, use "white". If it sits on a tinted page, use that tint. |
colors.text-primary, text-secondary, text-tertiary | Text on SDK surfaces | MUST contrast with background. For white bg: use #1f2937 or similar dark color. The SDK's default text-primary resolves to ~white, so leaving it unset on a white surface produces invisible white text. Always pair background and text-primary when overriding. |
fontFamily | SDK widget typography | |
Hover colors are a contrast pair. If you set colors.text-hover, verify it
contrasts with colors.brand-hover / colors.brand-hover-light in open menus,
chart type selectors, and visualization settings dropdowns. For a blue brand,
use a pale hover surface like #EAF4FF, not the brand blue itself.
The theme only styles SDK widgets — never your own UI. For your page background, headers, card wrappers, etc., use inline style={{ background: "#f5f5f7" }} or CSS modules on your own elements.
Don't expect per-subtree theming. Multiple <MetabaseProvider>s on the page fight for the single CSS-variable slot. If the look needs to change with state, recompute sdkTheme at the App level and re-render — the whole tree re-themes.
Available SDK surface
The bundle imports React hooks/JSX, SDK components from @metabase/embedding-sdk-react, and data-app-specific routing/query APIs from @metabase/embedding-sdk-react/data-app. dataAppConfig() externalizes these packages at build time, so production references the host's copies at runtime (globalThis.__metabase_sdk__ / globalThis.__metabase_data_app__ for SDK packages), and the Vite dev sandbox endows the same globals from the installed npm package.
<MetabaseProvider> is not rendered by the bundle's App.tsx — the dev entry and the host wrap it for their respective modes. Bundle author only renders the content below.
| Import | Purpose |
|---|
React (from "react") | Hooks (useState, useEffect, etc.), JSX runtime. Externalized to the host's React via react: "React". |
StaticQuestion | Non-drillable question. Props include questionId, card, withChartTypeSelector, height, width. |
InteractiveQuestion | Drillable question. Same props as StaticQuestion plus drill behaviors. Use card={{ query }} for ad hoc SDK-rendered questions. Add visualization when the request calls for a specific chart type, and add visualizationSettings only for explicit setting-level presentation changes; use skill discovery for schema-backed query and card type guardrails. |
MetabaseCard | Type-only import from @metabase/embedding-sdk-react for ad hoc SDK-rendered cards with visualization or visualizationSettings; use skill discovery for the full generated-query card contract before authoring data-layer code. |
CreateQuestion, MetabotQuestion | More question variants. |
StaticDashboard, InteractiveDashboard, EditableDashboard | Dashboard variants. |
CreateDashboardModal | Modal for new-dashboard flow. |
CollectionBrowser | Collection picker. |
@metabase/embedding-sdk-react/data-app exports | Data-app-only helpers for routing, schema-backed data reads, actions, clipboard, and sandbox-safe integration. Treat schema-backed queries, generated schema files, filters, metrics, actions, and other data-layer behavior as existing-data-app editing work; use skill discovery before authoring that code. |
Blocked APIs
The Near Membrane sandbox throws at runtime on these globals. Use the endowed replacement instead:
| Blocked | Use instead |
|---|
Network — fetch, XMLHttpRequest, WebSocket | Use the SDK/data-app APIs for Metabase reads and writes — never raw fetch. Raw fetch/XHR reach only the external origins listed in data_app.yml's allowed_hosts (Step 4); everything else (including the Metabase origin) throws. WebSocket is always blocked. |
UI dialogs — alert, confirm, prompt | Render a React modal in your own tree. |
Storage — localStorage, sessionStorage, indexedDB, document.cookie | Treat the data app as stateless across reloads; persist via a Metabase action. |
Window / history navigation — window.open, history.pushState, history.replaceState | useDataAppLocation().navigate for in-app; <a target="_blank" rel="noopener"> for external. |
Clipboard — document.execCommand("copy"), navigator.clipboard | copy (write-only): import { copy } from "@metabase/embedding-sdk-react/data-app", then await copy(text) from a user event. There is no read/paste API — that would let a bundle exfiltrate whatever the user copied. |
Other navigator.* device APIs — geolocation, etc. | Not available. |
Global document/window listeners for typing/clipboard events — keydown, keyup, keypress, beforeinput, input, paste, copy, cut, before*paste/copy/cut, , |
Rule of thumb: if you're about to touch window.X, document.X, navigator.X, history.X, or any storage global, stop and pick the endowed replacement above. The endowed surface (React + React DOM + SDK components + data hooks + useAction + DataAppRouter + copy) covers every routine need; anything outside it is intentionally unreachable.
When to use SDK charts vs useMetabaseQuery
This is a per-rendering decision, not a project-wide one:
useMetabaseQueryObject + StaticQuestion / InteractiveQuestion — default for ordinary dashboard charts: bar, line, area, row, pie, scalar/smartscalar, gauge, progress, pivot, map, sortable table, and other displays Metabase already renders well. Build the semantic query from generated schema objects, destructure the returned query, then pass only that value to the SDK component with a card object, for example <StaticQuestion card={{ query }} ... />. Never pass the whole { query, error, isLoading } hook result as card.query.
useMetabaseQuery — use when React genuinely needs row values: extracting KPI numbers, powering custom controls, composing bespoke summary cards, combining multiple queries into one UI element, or rendering a visualization Metabase cannot express.
Generated dashboards should prefer SDK-rendered charts. Do not rebuild normal bar/line/table charts in React just to match app chrome. If you choose useMetabaseQuery, keep the row handling typed.
Always render a spinner (or skeleton) while isLoading is true — never an empty slot or stale value, which causes layout shift when the data arrives. Same rule for lifted / derived queries (pass isLoading down) and for useAction's isExecuting (spinner in the button + disabled={isExecuting}).
Call each schema entry at most once per render tree. Multiple useMetabaseQuery calls on the same questionId (or same tableId + identical filters/measures/breakouts) mount independent subscriptions, fire duplicate queries, and let consumers disagree mid-load. Lift the call to the highest component that needs the data; pass data / isLoading / error down as props. Different ids — or the same id with different filters / breakouts — are different data sources; call them separately.
For the hook contract itself — generics, table sources, segments, measures, breakouts, sorting, and debugging — use skill discovery before authoring schema-backed data-layer code.
SDK component sizing
SDK components do NOT auto-fit their parent. Always pass explicit dimensions:
<div style={{ height: 360, overflow: "hidden" }}>
<StaticQuestion
questionId={1}
height="100%"
width="100%"
withChartTypeSelector={false}
/>
</div>
Without height/width, the SDK component renders at its intrinsic size and overflows.
Sync to Metabase
Data apps are delivered by Git, not uploaded — you commit the app directory and Metabase pulls it on its next remote-sync import.
npm run build → produces the bundle at your data_app.yml path (the template builds to dist/index.js).
- From the repo root, commit the app directory — its
data_app.yml, the built bundle (the file path points at), the source, and the lockfile — and push:
git add data_apps/<slug>
git commit -m "Add <slug> data app"
git push
- The app appears in Metabase on the next remote-sync import — a manual Pull changes (Admin → Data apps / Remote sync), the auto-import poll, or a restart — reachable at
/data-app/<slug>.
To update: commit a new build and pull again. To remove: delete data_apps/<slug>/, commit, and pull — Metabase prunes apps whose directory is gone from the repo.
Common pitfalls
| Symptom | Fix |
|---|
| "Failed to fetch the user, the session might be invalid." | Bad API key or CORS — check `( ROOT="$(git rev-parse --show-toplevel 2>/dev/null)"; [ -n "$ROOT" ] && source "$ROOT/.env.local" 2>/dev/null; [ -n "$DATA_APP_MB_URL" ] && [ "$DATA_APP_MB_URL" != "mb_replace_me" ] && [ -n "$DATA_APP_MB_API_KEY" ] && [ "$DATA_APP_MB_API_KEY" != "mb_replace_me" ] && curl -H "x-api-key: $DATA_APP_MB_API_KEY" "$DATA_APP_MB_URL/api/user/current" |
| Invisible chart labels. | Set text-primary in the theme (see Theme rules). |
| Chart overflows its container. | Pass height / width to the SDK component (see SDK component sizing). |
| "Invalid hook call" at runtime. | Two React copies. dataAppConfig() externalizes react — ensure react/react-dom are installed and you haven't added a second React or a mismatched version. |
| Bundle is multi-MB. | React/the SDK should be externalized by the contract plugin — confirm vite.config.ts still uses dataAppConfig() and the pinned data-apps SDK tag is installed. (A large but not multi-MB bundle can also be inlined assets — see the single-file note above.) |
dist/index.js doesn't assign to __dataAppFactory__. | src/index.tsx must export default the DataAppFactory — the preset wires that into the IIFE global. |
Cannot find module '@metabase/embedding-sdk-react'. | Run npm install (or the equivalent for your package manager). Types come from the package directly. |
| Drill popups don't open / SDK components show empty / "MetabaseProvider not found" at runtime in dev. | App.tsx is rendering its own <MetabaseProvider> — remove it. The dev entry (SDK) and the production host provide the provider; wrapping it inside the bundle routes the SDK's state paths through the sandbox and breaks them. |
Dev preview blank / Bundle did not assign a function to __dataAppFactory__ / sandbox errors in dev. | src/index.tsx isn't default-exporting the factory, or your app code throws while the sandbox evaluates the bundle — open the dev toolbar's panel for the real error. |