--- name: metabase-modular-embedding-version-upgrade description: Upgrades a project's Metabase Modular embedding SDK (@metabase/embedding-sdk-react) or Modular embedding (embed.js) version. Use when the user wants to upgrade their Metabase modular embedding integration to a newer version. model: opus allowed-tools: Read, Write, Edit, Glob, Grep, Bash, WebFetch, Task, TaskCreate, TaskUpdate, TaskList, TaskGet, AskUserQuestion --- ## Execution contract Follow the workflow steps in order — do not skip any step. Create the checklist first, then execute each step and explicitly mark it done with evidence. Each step's output feeds into the next, so skipping steps produces wrong migrations. If you cannot complete a step due to missing info or tool failure, you must: 1. record the step as ❌ blocked, 2. explain exactly what is missing / what failed, 3. stop (do not proceed to later steps). ### Required output structure Your response should contain these sections in this order: 1. **Step 0: Upgrade Plan Checklist** 2. **Step 1 Results: Project Scan** 3. **Step 2 Results: d.ts Diff / Target Docs** (primary or fallback) 4. **Step 3: Change Catalog** 5. **Step 4: Per-File Migration** (one subsection per file) 6. **Step 5: Typecheck Validation** 7. **Step 6: Final Summary** Each step section should end with a status line: - `Status: ✅ complete` or `Status: ❌ blocked` ### Evidence requirements - Step 1: list every matched file path and the matching grep lines (SDK imports or Modular embedding API calls/script tags). Full file analysis happens in Step 4. - Step 2 (primary path): show the diff output between d.ts files. (hybrid/fallback path): list each fetched URL + confirm files are loaded in context. Do not analyze or resolve types here — that's Step 3's job. - Step 3: the structured change catalog — every changed/removed/added symbol with its fully resolved concrete type. - Step 4: per file — SDK/Modular embedding usage found (components, props, config options, callbacks, data flows), which catalog entries affect this file, invalid usages found, exact diffs applied. - Step 5: the exact command run and error summary if any remain. ## Performance The workflow is designed as a pipeline that maximizes parallelism: ``` Round 1 (grep+glob+pkg) ──► Round 2 (prepare.sh) ──► Round 3 (read-sources.sh) ──► Step 3 (catalog, inline) │ Step 4 per-file: ├── Read FileA → match catalog → validate → fix ├── Read FileB → match catalog → validate → fix └── Read FileC → match catalog → validate → fix │ Step 5 (typecheck) ──► Step 6 ``` In Claude Code, use parallel tool calls or `run_in_background: true` for sub-agents. Do not parse repo branches, commits, PRs, or issues — they're noisy and irrelevant to version diffing. ### Tool-call round budget for Steps 1+2 Steps 1+2 must complete in **3 tool-call rounds**. **Round 1** — discovery (all concurrent, single message): - Grep for `@metabase/embedding-sdk-react` imports (returns file paths — do not read files yet) - Glob for lock files (`yarn.lock`, `pnpm-lock.yaml`, `package-lock.json`) - Read `package.json` (for current version) - `npm view @metabase/embedding-sdk-react version` (if target not specified by user) All four tool calls in ONE message. **Round 2** — `prepare.sh` + fetch docs (concurrent): ```bash bash /scripts/prepare.sh {CURRENT} {TARGET} --sdk # or for Modular embedding (embed.js): bash /scripts/prepare.sh {CURRENT} {TARGET} --embedjs ``` Always pass `--sdk` or `--embedjs` to indicate the embedding type. The script does: npm pack both versions (SDK only), check d.ts, and fetch+truncate changelog. It outputs `SDK_TMPDIR` and d.ts availability. In the same message, fetch `llms-embedding-full.txt` for both the current and target versions (see "Allowed documentation sources" for URL format). **Round 3** — `read-sources.sh` (single Bash call — reference data only, no project files): ```bash bash /scripts/read-sources.sh {SDK_TMPDIR} ``` Dumps SDK reference data (d.ts diff or raw d.ts, changelog) to stdout. **Does not read project files** — those are read one by one in Step 4. After Round 3, output Step 1 Results (file list from grep) + Step 2 Results + Step 3 Change Catalog with zero additional tool calls. Do not treat Step 3 as a separate thinking phase — produce it inline right after the data is loaded. ## Scope This skill handles upgrades for: - `@metabase/embedding-sdk-react` (React SDK, v52+) — uses primary or fallback path - Modular embedding via embed.js (v56+) — always uses fallback path (no npm types available) - v56–v57: docs are at `embedded-analytics-js.md` - v58+: docs split into `components.md`, `appearance.md`, `authentication.md` ### What this skill does not handle - Migrating between different embedding technologies ## Allowed documentation sources Fetch the version-specific `llms-embedding-full.txt` using this URL: ``` https://www.metabase.com/docs/v0.{VERSION}/llms-embedding-full.txt ``` The version in the URL uses the format `v0.58` (normalize: strip leading `v` or `0.`, drop patch — e.g., `0.58.1` → `58` → URL uses `v0.58`). This single file contains all embedding documentation for that version, optimized for LLM consumption. Other constraints: - No GitHub PRs/issues or npm pages - Do not follow changelog links to GitHub or guess URLs ## Detecting versions Do all version detection in Round 1 (see tool-call round budget) — not as a separate pre-step. - Current version: read from the project's `package.json` (check `dependencies` and `devDependencies`) for `@metabase/embedding-sdk-react`. In monorepos, also check workspace-level `package.json` files. - Target version: - If user specifies, use it. - Otherwise run `npm view @metabase/embedding-sdk-react version` — include this in Round 1's concurrent tool calls. - Package manager: detect from lock files — `yarn.lock` → yarn, `pnpm-lock.yaml` → pnpm, `package-lock.json` → npm. Use the matching install command in Step 4 (e.g., `yarn install`, `pnpm install`). If package not present OR user is upgrading Modular embedding (embed.js): - Ask the user for the current and target Metabase instance versions. Modular embedding (embed.js) is served from the Metabase instance, so its version matches the instance version. In Claude Code, use the AskUserQuestion tool for this. - Mark Step 0 ❌ blocked until answered. ### Multi-version hops When the upgrade spans a major structural boundary (e.g., v0.54 → v0.58 crosses the auth config change at v0.55 AND the doc layout change at v0.58), handle it as a single migration to the target version — do not do intermediate upgrades. However, during Step 3, check the auth config evolution section and account for every breaking change along the path. For example, v0.52 → v0.58 means the auth config changed shape (v0.55) AND gained `jwtProviderUri` (v0.58) — both changes need to be reflected in the migration. ## Pre-workflow steps ### Upgrade Plan Checklist (required before any other work) Create a checklist to track progress. In Claude Code, use TaskCreate/TaskUpdate tools: - Step 1: Scan project usage - Step 2: Extract d.ts diff or fetch docs - Step 3: Build change catalog - Step 4: Per-file migrate (one sub-task per file) - Step 5: Typecheck and fix - Step 6: Final summary ### Path Selection Determine which path to use: - If upgrading `@metabase/embedding-sdk-react` → attempt **primary path** (d.ts diff), with fallback if d.ts unavailable (determined during Step 2) - If upgrading Modular embedding (embed.js) → **fallback path** (skip d.ts extraction entirely) ## Workflow ### Step 1: Scan the project code Keep scan results in the main context (not delegated to a sub-agent) — Step 3 needs them for cross-referencing. **For SDK upgrades (`@metabase/embedding-sdk-react`):** Step 1 happens in Round 1 — grep only, no file reading. - Grep for all imports from `@metabase/embedding-sdk-react`. This returns file paths + matching import lines. - Also detect the package manager (glob for lock files). - Output: a file list with the SDK imports visible from grep output. **For Modular embedding (embed.js) upgrades:** - There is no npm package to grep. Instead, search the codebase for: - Metabase embed `