/vercel-connect
Vercel Connect expert guidance — securely obtain scoped OAuth tokens for third-party services (Slack, GitHub, MCP servers, OAuth, Snowflake) on behalf of apps or users via Vercel OIDC. Use when wiring up third-party API access, connecting to MCP servers, sending Slack messages,
$ npx -y skills add vercel-labs/vercel-plugin --skill vercel-connect --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/vercel-connect
Context preview
The summary Claude sees to decide when to auto-load this skill.
Vercel Connect expert guidance — securely obtain scoped OAuth tokens for third-party services (Slack, GitHub, MCP servers, OAuth, Snowflake) on behalf of apps or users via Vercel OIDC. Use when wiring up third-party API access, connecting to MCP servers, sending Slack messages,
SKILL.md
vercel-connect.SKILL.mdname: vercel-connect
description: Vercel Connect expert guidance — securely obtain scoped OAuth tokens for third-party services (Slack, GitHub, MCP servers, OAuth, Snowflake) on behalf of apps or users via Vercel OIDC. Use when wiring up third-party API access, connecting to MCP servers, sending Slack messages, accessing GitHub APIs, receiving webhook events from Slack/Linear/GitHub and forwarding them to your agents and apps, or building eve agent connections.
metadata:
priority: 5
docs:
- "https://vercel.com/docs/connect"
sitemap: "https://vercel.com/sitemap/docs.xml"
pathPatterns:
- 'agent/connections/**'
- 'agent/channels/**'
importPatterns:
- '@vercel/connect'
- '@vercel/connect/eve'
- '@vercel/connect/authjs'
- '@vercel/connect/betterauth'
bashPatterns:
- '\bvercel\s+connect\b'
- '\bvc\s+connect\b'
- '\bnpm\s+(install|i|add)\s+[^\n]*@vercel/connect\b'
- '\bpnpm\s+(install|i|add)\s+[^\n]*@vercel/connect\b'
- '\bbun\s+(install|i|add)\s+[^\n]*@vercel/connect\b'
- '\byarn\s+add\s+[^\n]*@vercel/connect\b'
promptSignals:
phrases:
- "vercel connect"
- "slack token"
- "slack bot token"
- "post to slack"
- "send slack message"
- "github oauth token"
- "linear oauth"
- "oauth token for"
- "third-party token"
- "connect to slack"
- "connect to github"
- "connect to mcp"
- "mcp connection"
- "mcp server"
- "snowflake connection"
allOf:
- [slack, token]
- [github, token]
- [oauth, token]
- [mcp, connect]
- [mcp, server]
anyOf:
- "vercel connect"
- "@vercel/connect"
- "oauth"
- "mcp"
noneOf:
- "supabase auth"
- "clerk"
- "auth0"
minScore: 6
retrieval:
aliases:
- vercel connect
- oauth helper
- third-party tokens
- connect sdk
- mcp connector
intents:
- get slack token
- get github oauth token
- wire up third-party oauth
- add slack channel to agent
- connect to oauth provider
- obtain api credentials
- connect to mcp server
- set up mcp connection
- add snowflake connection
entities:
- Vercel Connect
- getToken
- "@vercel/connect"
- OAuth
- Slack
- GitHub
- MCP
- Snowflake
- eve
- connector
examples:
- send a slack message from my app
- get a github oauth token
- wire up Linear in my eve agent
- connect my agent to a MCP server
- add Snowflake credentials to my project
chainTo:
-
pattern: "from\\s+['\"]@vercel/connect/eve['\"]"
targetSkill: eve
message: 'eve + Vercel Connect import detected — loading eve framework guidance alongside the connect() helper and channel credential patterns.'
-
pattern: 'SLACK_(BOT|SIGNING)_(TOKEN|SECRET)|SLACK_WEBHOOK_URL|GITHUB_(APP_PRIVATE_KEY|APP_ID|INSTALLATION_ID|WEBHOOK_SECRET)|LINEAR_(API_KEY|WEBHOOK_SECRET)'
targetSkill: vercel-connect
message: 'Hand-managed Slack/GitHub/Linear secrets detected — use Vercel Connect + connectSlackCredentials() / connectGitHubCredentials() / connectLinearCredentials() to remove the need for these env vars.'
skipIfFileContains: 'connectSlackCredentials|connectGitHubCredentials|connectLinearCredentials|@vercel/connect'Vercel Connect Skill
Overview
Vercel Connect enables to securely obtain scoped tokens for accessing third-party services on behalf of apps or users. It uses Vercel OIDC tokens to authenticate and exchange for Vercel Connect tokens via the Vercel API.
When to Use Vercel Connect
Use Vercel Connect when you need to:
- Send messages via Slack (as a bot or on behalf of a user)
- Access GitHub repositories or APIs
- Connect to any third-party system that requires OAuth tokens or API credentials
- Obtain tokens for authenticated API calls
Modes of tokens
The SDK supports three subject types — pick based on what's acting:
- **`user`** — actions performed on behalf of a specific end user (e.g., post a Slack message as the user). Requires a user `id` and optional `issuer`.
- **`app`** — actions performed as the app itself (e.g., post as a Slack bot, app-level GitHub access). No consent flow — fails terminally if the connector is not installed.
- **`jwt-bearer`** — RFC 7523 JWT-bearer exchange for connectors that accept a caller-minted assertion. Pass `sub` (required), plus optional `iss`, `aud`, and `additionalClaims`. Use when the third-party expects you to vouch for the subject via a signed JWT rather than an interactive OAuth grant.
Available Tools
All tools have `--format=json` option for machine-readable output.
1. Vercel Connect CLI (for Bash/Shell)
Use the `vercel connect` CLI for command-line operations. Use `vercel connect --help` to get available commands. The user needs to be authenticated to the Vercel CLI and the commands work within the scope of the user's currently selected Vercel team. For eg it will create & list Connect connectors created within the currently selected Vercel team.
Important! Always run `vercel connect` commands from the **project or agent folder** that will consume the connection (the directory containing `package.json` / `vercel.json`). Vercel Connect reads the local project context to auto-configure the connection — for example, picking a sensible connector name and `uid`, setting up project access to the connection, configuring webhooks and triggers. Running from the repo root or an unrelated directory skips this auto-configuration and you'll have to wire things up by hand. If the user invokes a `vc connect` command from elsewhere, `cd` into the closest matching project/agent folder first (or pass `--cwd <DIR>`).
Example commands:
# Create new Connect connector
vercel connect create <service>
# List existing Connect connectors
vercel connect list
# Get token
vercel connect token <connector> --subject user|app
Important! The `vercel con
Read more
name: vercel-connect
description: Vercel Connect expert guidance — securely obtain scoped OAuth tokens for third-party services (Slack, GitHub, MCP servers, OAuth, Snowflake) on behalf of apps or users via Vercel OIDC. Use when wiring up third-party API access, connecting to MCP servers, sending Slack messages, accessing GitHub APIs, receiving webhook events from Slack/Linear/GitHub and forwarding them to your agents and apps, or building eve agent connections.
metadata:
priority: 5
docs:
- "https://vercel.com/docs/connect"
sitemap: "https://vercel.com/sitemap/docs.xml"
pathPatterns:
- 'agent/connections/**'
- 'agent/channels/**'
importPatterns:
- '@vercel/connect'
- '@vercel/connect/eve'
- '@vercel/connect/authjs'
- '@vercel/connect/betterauth'
bashPatterns:
- '\bvercel\s+connect\b'
- '\bvc\s+connect\b'
- '\bnpm\s+(install|i|add)\s+[^\n]*@vercel/connect\b'
- '\bpnpm\s+(install|i|add)\s+[^\n]*@vercel/connect\b'
- '\bbun\s+(install|i|add)\s+[^\n]*@vercel/connect\b'
- '\byarn\s+add\s+[^\n]*@vercel/connect\b'
promptSignals:
phrases:
- "vercel connect"
- "slack token"
- "slack bot token"
- "post to slack"
- "send slack message"
- "github oauth token"
- "linear oauth"
- "oauth token for"
- "third-party token"
- "connect to slack"
- "connect to github"
- "connect to mcp"
- "mcp connection"
- "mcp server"
- "snowflake connection"
allOf:
- [slack, token]
- [github, token]
- [oauth, token]
- [mcp, connect]
- [mcp, server]
anyOf:
- "vercel connect"
- "@vercel/connect"
- "oauth"
- "mcp"
noneOf:
- "supabase auth"
- "clerk"
- "auth0"
minScore: 6
retrieval:
aliases:
- vercel connect
- oauth helper
- third-party tokens
- connect sdk
- mcp connector
intents:
- get slack token
- get github oauth token
- wire up third-party oauth
- add slack channel to agent
- connect to oauth provider
- obtain api credentials
- connect to mcp server
- set up mcp connection
- add snowflake connection
entities:
- Vercel Connect
- getToken
- "@vercel/connect"
- OAuth
- Slack
- GitHub
- MCP
- Snowflake
- eve
- connector
examples:
- send a slack message from my app
- get a github oauth token
- wire up Linear in my eve agent
- connect my agent to a MCP server
- add Snowflake credentials to my project
chainTo:
-
pattern: "from\\s+['\"]@vercel/connect/eve['\"]"
targetSkill: eve
message: 'eve + Vercel Connect import detected — loading eve framework guidance alongside the connect() helper and channel credential patterns.'
-
pattern: 'SLACK_(BOT|SIGNING)_(TOKEN|SECRET)|SLACK_WEBHOOK_URL|GITHUB_(APP_PRIVATE_KEY|APP_ID|INSTALLATION_ID|WEBHOOK_SECRET)|LINEAR_(API_KEY|WEBHOOK_SECRET)'
targetSkill: vercel-connect
message: 'Hand-managed Slack/GitHub/Linear secrets detected — use Vercel Connect + connectSlackCredentials() / connectGitHubCredentials() / connectLinearCredentials() to remove the need for these env vars.'
skipIfFileContains: 'connectSlackCredentials|connectGitHubCredentials|connectLinearCredentials|@vercel/connect'Vercel Connect Skill
Overview
Vercel Connect enables to securely obtain scoped tokens for accessing third-party services on behalf of apps or users. It uses Vercel OIDC tokens to authenticate and exchange for Vercel Connect tokens via the Vercel API.
When to Use Vercel Connect
Use Vercel Connect when you need to:
- Send messages via Slack (as a bot or on behalf of a user)
- Access GitHub repositories or APIs
- Connect to any third-party system that requires OAuth tokens or API credentials
- Obtain tokens for authenticated API calls
Modes of tokens
The SDK supports three subject types — pick based on what's acting:
- **`user`** — actions performed on behalf of a specific end user (e.g., post a Slack message as the user). Requires a user `id` and optional `issuer`.
- **`app`** — actions performed as the app itself (e.g., post as a Slack bot, app-level GitHub access). No consent flow — fails terminally if the connector is not installed.
- **`jwt-bearer`** — RFC 7523 JWT-bearer exchange for connectors that accept a caller-minted assertion. Pass `sub` (required), plus optional `iss`, `aud`, and `additionalClaims`. Use when the third-party expects you to vouch for the subject via a signed JWT rather than an interactive OAuth grant.
Available Tools
All tools have `--format=json` option for machine-readable output.
1. Vercel Connect CLI (for Bash/Shell)
Use the `vercel connect` CLI for command-line operations. Use `vercel connect --help` to get available commands. The user needs to be authenticated to the Vercel CLI and the commands work within the scope of the user's currently selected Vercel team. For eg it will create & list Connect connectors created within the currently selected Vercel team.
Important! Always run `vercel connect` commands from the **project or agent folder** that will consume the connection (the directory containing `package.json` / `vercel.json`). Vercel Connect reads the local project context to auto-configure the connection — for example, picking a sensible connector name and `uid`, setting up project access to the connection, configuring webhooks and triggers. Running from the repo root or an unrelated directory skips this auto-configuration and you'll have to wire things up by hand. If the user invokes a `vc connect` command from elsewhere, `cd` into the closest matching project/agent folder first (or pass `--cwd <DIR>`).
Example commands:
# Create new Connect connector vercel connect create <service> # List existing Connect connectors vercel connect list # Get token vercel connect token <connector> --subject user|app
Important! The `vercel con
Comprehensive Vercel ecosystem plugin — relational knowledge graph, skills for every major product, specialized agents, and Vercel conventions. Turns any AI agent into a Vercel expert.
Repo: vercel-labs/vercel-plugin
Other skills on vercel.
- /benchmark-agents
Advanced AI agent benchmark scenarios that push Vercel's cutting-edge platform features — Workflow DevKit, AI Gateway, MCP, Chat SDK, Queues, Flags, Sandbox, and multi-agent orchestration. Designed to stress-test skill injection for complex, multi-system builds.
Open skill - /benchmark-e2e
End-to-end benchmark suite for vercel-plugin. Runs realistic projects through skill injection, launches dev servers, verifies everything works, analyzes conversation logs, and produces an improvement report for overnight self-improvement loops.
Open skill - /benchmark-sandbox
Run vercel-plugin eval scenarios in Vercel Sandboxes instead of local WezTerm panels. Provisions ephemeral microVMs with Claude Code + plugin pre-installed, runs benchmark prompts, extracts hook artifacts, and produces coverage reports.
Open skill - /benchmark-testing
Create and launch benchmark test projects to exercise vercel-plugin skill injection across realistic scenarios. Sets up isolated directories, installs the plugin, and spawns WezTerm panes running Claude Code with crafted prompts.
Open skill - /plugin-audit
Audit vercel-plugin performance on real-world projects. Extracts tool calls from Claude Code conversation logs, tests hook matching against actual inputs, identifies pattern coverage gaps, and checks plugin cache staleness. Use when asked to audit, test, or investigate plugin
Open skill - /release
Release vercel-plugin — run gates, bump version, generate artifacts, commit, and push. Use when asked to "release", "ship", "bump and push", or "cut a release".
Open skill

