Expand recommended setup flow with MCP verification and a Done step.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Developing-Gamer 2026-06-23 15:39:00 -07:00
parent f3daf0defc
commit aad8b033e4

View File

@ -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 }) {
<HexclaveKeys keys={keys} onGenerateKeys={onGenerateKeys} type={selectedKeyType} />
</>,
},
{
step: 3,
title: "Done",
content: <>
<Typography>
After starting your dev server, navigate to <StyledLink href="http://localhost:3000/handler/signup">http://localhost:3000/handler/signup</StyledLink>, you will see the sign-up page.
</Typography>
</>,
},
] : [
{
step: 1,