From 1842541a93109256ec47f770f59274f7b3871ad7 Mon Sep 17 00:00:00 2001 From: Lum1104 Date: Thu, 9 Apr 2026 22:50:20 +0800 Subject: [PATCH] fix: include access token in dashboard URL reported to user The understand-dashboard skill now instructs agents to capture and share the full tokenized URL from the Vite server output, so users are not blocked by the token gate. Bump version to 2.2.1. Co-Authored-By: Claude Opus 4.6 (1M context) --- .claude-plugin/plugin.json | 2 +- .cursor-plugin/plugin.json | 2 +- understand-anything-plugin/package.json | 2 +- .../skills/understand-dashboard/SKILL.md | 11 +++++++++-- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 73781f5..efc2a05 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "understand-anything", "description": "AI-powered codebase understanding — analyze, visualize, and explain any project", - "version": "2.2.0", + "version": "2.2.1", "author": { "name": "Lum1104" }, diff --git a/.cursor-plugin/plugin.json b/.cursor-plugin/plugin.json index e32414b..226b7bd 100644 --- a/.cursor-plugin/plugin.json +++ b/.cursor-plugin/plugin.json @@ -2,7 +2,7 @@ "name": "understand-anything", "displayName": "Understand Anything", "description": "AI-powered codebase understanding — analyze, visualize, and explain any project", - "version": "2.2.0", + "version": "2.2.1", "author": { "name": "Lum1104" }, diff --git a/understand-anything-plugin/package.json b/understand-anything-plugin/package.json index 525c428..36c6966 100644 --- a/understand-anything-plugin/package.json +++ b/understand-anything-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@understand-anything/skill", - "version": "2.2.0", + "version": "2.2.1", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/understand-anything-plugin/skills/understand-dashboard/SKILL.md b/understand-anything-plugin/skills/understand-dashboard/SKILL.md index 4c20dbb..c0bdad3 100644 --- a/understand-anything-plugin/skills/understand-dashboard/SKILL.md +++ b/understand-anything-plugin/skills/understand-dashboard/SKILL.md @@ -60,13 +60,20 @@ Start the Understand Anything dashboard to visualize the knowledge graph for the ``` Run this in the background so the user can continue working. -6. Report to the user: +6. **Capture the access token URL from the server output.** The Vite server prints a line like: ``` - Dashboard started at http://localhost:5173 + 🔑 Dashboard URL: http://127.0.0.1:?token= + ``` + Extract the full URL including the `?token=` parameter. The token is required to access the knowledge graph data — without it the dashboard will show an "Access Token Required" gate. + +7. Report to the user, including the full tokenized URL: + ``` + Dashboard started at http://127.0.0.1:?token= Viewing: /.understand-anything/knowledge-graph.json The dashboard is running in the background. Press Ctrl+C in the terminal to stop it. ``` + **Important:** Always include the `?token=` parameter in the URL you share. If you omit it, the user will be blocked by the token gate and have to manually find the token in the terminal output. ## Notes