From de66bb7d76531f845ecef5b98e31bd0090ba50b9 Mon Sep 17 00:00:00 2001 From: Lum1104 Date: Sat, 21 Mar 2026 22:25:21 +0800 Subject: [PATCH] fix: ensure core is built before launching dashboard in /understand-dashboard Co-Authored-By: Claude Opus 4.6 --- .../skills/understand-dashboard/SKILL.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/understand-anything-plugin/skills/understand-dashboard/SKILL.md b/understand-anything-plugin/skills/understand-dashboard/SKILL.md index ec0710d..b800e84 100644 --- a/understand-anything-plugin/skills/understand-dashboard/SKILL.md +++ b/understand-anything-plugin/skills/understand-dashboard/SKILL.md @@ -27,10 +27,14 @@ Start the Understand Anything dashboard to visualize the knowledge graph for the - `${CLAUDE_PLUGIN_ROOT}/packages/dashboard/` - The parent directory of this skill file, then `../../packages/dashboard/` -4. Install dependencies if needed: +4. Install dependencies and build if needed: ```bash cd && pnpm install --frozen-lockfile 2>/dev/null || pnpm install ``` + Then ensure the core package is built (the dashboard depends on it): + ```bash + cd && pnpm --filter @understand-anything/core build + ``` 5. Start the Vite dev server pointing at the project's knowledge graph: ```bash