Rebrand skills route page to Hexclave#1494
Conversation
- Install command: @stackframe/stack-cli → @hexclave/cli - Brand, title, h1, lede, footer: Stack Auth → Hexclave - Docs/MCP links: stack-auth.com → hexclave.com - CLI references: stack-cli → hexclave-cli - GitHub link: hexclave/stack-auth → hexclave/hexclave
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe ChangesHexclave Branding Update
Possibly Related PRs
Estimated Code Review Effort🎯 2 (Simple) | ⏱️ ~8 minutes Poem
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Greptile SummaryThis PR rebrands the skills-site landing page from Stack Auth to Hexclave by updating every user-visible string and outbound URL in
Confidence Score: 5/5Safe to merge — the change is a mechanical text substitution with no logic modifications. Every changed line is a string literal replacement (brand names, URLs, CLI package). The install command (@hexclave/cli) matches the value used in ai-setup-prompt.ts, the GitHub URL matches package.json's repository field, and the markdown body served to non-browser clients is untouched. No runtime behavior changes. No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[GET /] --> B{wantsHtml?}
B -- "Yes (browser)" --> C[renderHtml]
C --> D["title: Hexclave Skill\nbrand: Hexclave\ninstall: npx @hexclave/cli@latest init\ndocs: docs.hexclave.com\nmcp: mcp.hexclave.com\ngithub: hexclave/hexclave"]
B -- "No (curl / agent)" --> E[SKILL_MD from skillSitePrompt]
E --> F["text/markdown response (unchanged)"]
Reviews (1): Last reviewed commit: "Rebrand skills route page to Hexclave" | Re-trigger Greptile |
Updates apps/skills/src/app/route.ts — the HTML rendered at the skills site root — so it matches the Hexclave branding used everywhere else in the app.
Changes
npx @stackframe/stack-cli@latest init→npx @hexclave/cli@latest init(the package is published as@hexclave/cliperskill-site-prompt-parts/ai-setup-prompt.ts, not@hexclave/stack-cli)<title>, meta description, header brand, h1, and lede all switch from Stack Auth → Hexclavestack-cli→hexclave-clidocs.stack-auth.com→docs.hexclave.com(header link + AI Integration + CLI Reference cards)mcp.stack-auth.com→mcp.hexclave.comhexclave/stack-auth→hexclave/hexclave(matchesapps/skills/package.json'srepositoryfield)The markdown body served to non-browser clients comes from
skillSitePromptand was already on-brand — no change there.Verification
pnpm --filter @stackframe/skills run typecheckpasses.Summary by cubic
Rebrands the skills route root page to Hexclave to match app-wide branding. Updates the one-command install from
npx @stackframe/stack-cli@latest inittonpx @hexclave/cli@latest init, and switches titles/copy, CLI references (stack-cli→hexclave-cli), docs/MCP links to hexclave.com, and the footer GitHub link tohexclave/hexclave.Written for commit 821cf65. Summary will update on new commits. Review in cubic
Summary by CodeRabbit