Skip to main content
This page is for giving your own coding agent (Claude Code, Cursor, Codex, opencode, …) ongoing knowledge of Hexclave so it writes Hexclave code correctly.If you would like to use Hexclave to power your own CLI, see the CLI Authentication page.
There are three ways to give a coding agent working knowledge of Hexclave. They differ only in how the instructions reach the agent — the knowledge is the same.

Web Fetch

Paste a one-line prompt — your agent fetches the live skill on demand.

Skill

Install the Hexclave SKILL.md file so your agent loads it automatically.

MCP

Connect your agent to the Hexclave MCP server for live docs and ask_hexclave search.
Most coding agents now support web fetch out of the box, so you can simply tell your agent to use Hexclave’s skill from the internet. To do so, paste the prompt below into your coding agent:
One-shot prompt
Fetch https://skill.hexclave.com and follow it for this task.
The fetched SKILL.md indexes the entire Hexclave docs sidebar and tells the agent to pull fresh content for whichever surface you’re touching (auth, orgs/teams, payments, emails, analytics, the CLI). It is purely a reference — paste it whenever you want the agent to use Hexclave knowledge.

Option 2: Skill

Install the skill once so your agent loads it automatically every time Hexclave is relevant — no copy-paste required.
The fastest way to install the Hexclave skill for a Claude Code-style agent or similar:
Terminal
npx -y skills add hexclave/hexclave --skill stack-auth
This detects your agent and installs the skill in the correct location (per-project or global) automatically. From then on, your agent picks it up whenever the conversation touches Hexclave.

Option 3: MCP

The Hexclave MCP server (https://mcp.hexclave.com/mcp) gives your agent live access to Hexclave docs and skill via prompts, resources and an ask_hexclave tool that searches the docs with citations. Install it once per agent — it stays available across every project.

Add to Cursor

Opens Cursor and adds stack-auth to your MCP config.

Add to VS Code

Opens VS Code and adds stack-auth to your MCP config.
For the up-to-date list of one-click install buttons for every client (Cursor, VS Code, Claude Desktop, Windsurf, ChatGPT, Gemini, …), visit mcp.hexclave.com in your browser.

Project vs. global scope

The install prompts above follow the same rule for picking project-vs-global scope:
Detected in project rootSkill / MCP install scope
.claude/, .cursor/, .vscode/mcp.json, .codex/, .opencode/Project (inside the existing folder)
None of the aboveGlobal (user-level config for the detected agent)
This keeps shared repos clean (project-scoped config lives next to the code) and keeps your personal projects ergonomic (one global install, available everywhere).