Skip to content
Scalekit Docs
Talk to an Engineer Dashboard

Scalekit CLI

Install and manage the authstack plugin for AI coding agents with the Scalekit CLI.

The Scalekit CLI (@scalekit-inc/cli) installs the authstack plugin for your AI coding agents. Run one command and the CLI detects your active tools (Cursor, Claude Code, GitHub Copilot, Codex) and sets each one up automatically.

Terminal window
npm install -g @scalekit-inc/cli
scalekit setup

Running setup with no arguments launches an interactive wizard that detects your installed tools and installs the authstack plugin for each one.

Pass the tool name to skip the wizard and install directly:

Terminal window
scalekit setup cursor
scalekit setup claude # aliases: claude-code, cc
scalekit setup codex # alias: opencode
scalekit setup copilot # aliases: github-copilot, ghcp

Installs the authstack plugin for one or all detected coding agents.

Argument / flagDescription
[tool]Target a specific agent: cursor, claude, codex, copilot (and their aliases). Omit to run the interactive wizard.
-y, --yesSkip confirmation prompts. Useful in scripts.
--dry-runPrint the commands that would run without executing them.
--skip-skillsSkip installing generic Scalekit skills (installs the plugin only).
ToolIDAliases
Cursorcursor
Claude Codeclaudeclaude-code, cc
GitHub Copilotcopilotgithub-copilot, ghcp
Codex / OpenCodecodexopencode

For each detected tool, the CLI installs two kits from the authstack plugin:

  • AgentKit - skills for building agents with delegated auth, scoped permissions, and tool calls
  • SaaSKit - skills for adding SSO, SCIM, MFA, sessions, and API auth to SaaS apps

For Cursor and Codex, the CLI downloads the plugin and copies it to the tool’s local plugin directory. For Claude Code and GitHub Copilot, it runs the tool’s native plugin marketplace commands.

After setup, tell your coding agent what you’re building. The authstack plugin routes you to the right skill.

I want to add agent auth to my project. Help me get started with AgentKit.
Add enterprise SSO to my Next.js app using SaaSKit.

The authstack plugin picks up the prompt and routes to the right skill: AgentKit for agent auth, SaaSKit for app auth.