From aad8b033e41148a51207e2a4ef33463c02f4efa8 Mon Sep 17 00:00:00 2001 From: Developing-Gamer Date: Tue, 23 Jun 2026 15:39:00 -0700 Subject: [PATCH] Expand recommended setup flow with MCP verification and a Done step. Co-authored-by: Cursor --- .../projects/[projectId]/(overview)/setup-page.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/(overview)/setup-page.tsx b/apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/(overview)/setup-page.tsx index 340c20588..6cb0b7da6 100644 --- a/apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/(overview)/setup-page.tsx +++ b/apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/(overview)/setup-page.tsx @@ -37,6 +37,8 @@ const SETUP_PROMPT = deindent` Do not change the dev script in package.json, even if the skill mentions doing that. + After setup finishes, verify that the Hexclave MCP server is registered in your AI client config — name: \`hexclave\`, transport: \`http\`, URL: \`https://mcp.hexclave.com/mcp\`. If it is not registered, add it manually so future agents have live access to Hexclave docs and APIs. + Once setup is done, tell me to add the Hexclave environment variables to .env.local. After that, setup is complete. `; @@ -650,6 +652,15 @@ export default function SetupPage(props: { toMetrics: () => void }) { , }, + { + step: 3, + title: "Done", + content: <> + + After starting your dev server, navigate to http://localhost:3000/handler/signup, you will see the sign-up page. + + , + }, ] : [ { step: 1,