Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

setup-scalekit设置秤套件

Agent Skill

setup-scalekit 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

259

周安装

11

GitHub Stars

2

下载量

91
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:setup-scalekit(设置秤套件)
来源仓库:https://github.com/scalekit-inc/skills
仓库路径:skills/setup-scalekit
安装命令:
npx skills add https://github.com/scalekit-inc/skills --skill setup-scalekit
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/scalekit-inc/skills --skill setup-scalekit

简介

提供 ScaleKit 平台相关配置与集成能力支持。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中需要对接 ScaleKit 服务的场景。
  • 通过 npx skills add 命令从 scalekit-inc/skills 仓库安装。
  • 可能涉及 API 密钥管理和 webhook 配置,需妥善保管凭证。
  • 建议开启请求日志但关闭敏感字段记录,兼顾调试与安全。

SKILL.md

Installing Scalekit Auth Stack

Important: This skill guides you through installing Scalekit yourself. You'll execute the commands and make the choices — the AI assistant is here to provide clear instructions and answer questions along the way.

Step 1 — Identify your AI coding tool

First, identify which AI coding tool you're using. If you're not sure, check your current environment or tell the assistant what tool you're working in.

Then find the matching section below for your tool.


Step 2 — Choose your auth plugin

Review the table below and select the plugin that matches what you're building:

Plugin nameWhen to use
agent-authAI agent needs OAuth access to third-party services (Gmail, Slack, Notion, etc.)
full-stack-authWeb app needs login, signup, sessions, and RBAC
mcp-authBuilding an MCP server that needs OAuth 2.1 to secure its tools
modular-ssoAdding enterprise SSO to an existing app without replacing its auth
modular-scimAutomated user provisioning and deprovisioning via directory sync

You'll use this plugin name in the install commands in the next step.


User-driven setup process

When setting up Scalekit, you (the user) should:

  1. Review the instructions for your AI coding tool below
  2. Execute the install commands yourself in your terminal
  3. Restart your tool if required
  4. Enable the plugin for your chosen auth type
  5. Ask questions if anything is unclear

The AI assistant can:

  • Explain what each command does
  • Help you troubleshoot errors
  • Guide you to the next step
  • Answer questions about auth types and plugins

You remain in control of executing commands and making changes to your environment.


Claude Code

Run these commands inside Claude Code (the REPL prompt, not the terminal):

/plugin marketplace add scalekit-inc/claude-code-authstack

# Pick one based on your auth needs:
/plugin install agent-auth@scalekit-auth-stack
/plugin install full-stack-auth@scalekit-auth-stack
/plugin install mcp-auth@scalekit-auth-stack
/plugin install modular-sso@scalekit-auth-stack
/plugin install modular-scim@scalekit-auth-stack

After running the commands, restart Claude Code for the plugin to take effect.


GitHub Copilot CLI

Run these commands in your terminal:

copilot plugin marketplace add scalekit-inc/github-copilot-authstack

# Pick one based on your auth needs:
copilot plugin install agent-auth@scalekit-auth-stack
copilot plugin install full-stack-auth@scalekit-auth-stack
copilot plugin install mcp-auth@scalekit-auth-stack
copilot plugin install modular-sso@scalekit-auth-stack
copilot plugin install modular-scim@scalekit-auth-stack

After running the commands, the plugin will be installed and ready to use.


Codex

Run this installer script in your terminal:

curl -fsSL https://raw.githubusercontent.com/scalekit-inc/codex-authstack/main/install.sh | bash

After the script completes, you'll need to:

  1. Restart Codex
  2. Open Plugin Directory
  3. Select Scalekit Auth Stack
  4. Enable the plugin for your auth type

These manual steps are required to activate the plugin in Codex.


Cursor

Cursor marketplace review is pending — install locally by running this script in your terminal:

curl -fsSL https://raw.githubusercontent.com/scalekit-inc/cursor-authstack/main/install.sh | bash

After the script completes, you'll need to:

  1. Restart Cursor
  2. Go to Settings → Cursor Settings → Plugins
  3. Enable the plugin for your auth type

These manual steps are required to activate the plugin in Cursor.


Other Agents

For OpenCode, Windsurf, Cline, Gemini CLI, and 35+ other agents — use the Vercel Skills CLI.

First, see all available Scalekit skills:

npx skills add scalekit-inc/skills --list

Then pick one based on your auth type and run the install command:

npx skills add scalekit-inc/skills --skill integrating-agent-auth
npx skills add scalekit-inc/skills --skill implementing-scalekit-fsa
npx skills add scalekit-inc/skills --skill adding-mcp-oauth
npx skills add scalekit-inc/skills --skill modular-sso
npx skills add scalekit-inc/skills --skill implementing-scim-provisioning

Or install everything at once:

npx skills add scalekit-inc/skills --all

Run the command that matches your needs in your terminal.


Step 3 — Start implementing

Once you've installed the plugin or skill, you can start implementing. Describe your goal in natural language and the AI assistant will guide you through the process:

  • *"Add OAuth to my MCP server so Claude Desktop can connect to it"*
  • *"Implement login and signup with JWT session management"*
  • *"Connect my AI agent to Gmail and Google Calendar using OAuth"*
  • *"Add enterprise SSO to my existing app"*

The assistant will provide step-by-step instructions, code examples, and explanations. You'll implement the changes yourself with guidance.


Documentation

You can fetch these resources to learn more about Scalekit:

ResourceURLWhen to use
LLM doc indexhttps://docs.scalekit.com/llms.txtStart here — maps each Scalekit product (Agent Auth, MCP, FSA, SSO, SCIM) to its documentation set. Fetch this to understand which docs apply to your auth type before implementing.
API referencehttps://docs.scalekit.com/apis.mdFull REST API reference in Markdown (generated from OpenAPI spec). Covers Connected Accounts, Connections, Organizations, Users, Tool Execution, Admin Portal endpoints with request/response schemas.
Docs sitemaphttps://docs.scalekit.com/sitemap-0.xmlComplete index of all documentation pages. Use to discover specific guides (e.g. a framework integration, provider setup, or troubleshooting page) when you need a URL you don't have.

Recommended lookup flow:

  1. Fetch llms.txt to identify the right documentation set for your chosen auth type
  2. Fetch apis.md when you need specific endpoint details during implementation
  3. Query the sitemap only if you need to find a page not covered by the above two

You can ask the AI assistant to fetch these resources for you when needed.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.2%
按下载量换算32

Claude

29.33%
按下载量换算27

Cursor

17.98%
按下载量换算16

Gemini CLI

9.95%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/scalekit-inc/skills --skill setup-scalekit 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills