vercel-to-createos
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseVercel → CreateOS Migration
Vercel → CreateOS 迁移指南
This skill migrates a project currently deployed on Vercel to CreateOS. It reads the existing Vercel configuration, translates it into a CreateOS project, provisions environments and environment variables, and triggers the first deployment — all through the CreateOS MCP server.
本技能可将当前部署在Vercel上的项目迁移至CreateOS。它会读取现有Vercel配置,将其转换为CreateOS项目,配置环境及环境变量,并触发首次部署——所有操作均通过CreateOS MCP服务器完成。
When to use this skill
何时使用此技能
Activate this skill when any of the following is true:
- The user explicitly asks to migrate, move, or deploy from Vercel to CreateOS.
- The user expresses intent to leave Vercel (pricing, reliability, security, ownership concerns).
- The repository contains a ,
vercel.jsondirectory, or.vercel/dependencies in@vercel/*.package.json - The user asks for a "Vercel alternative" or references the April 2026 Vercel security incident.
Do NOT use this skill when:
- The user is deploying a fresh project with no prior Vercel deployment — use the standard skill instead.
createos - The project is a pure Next.js application with heavy dependencies on Vercel-specific features (Edge Middleware, Vercel KV, Vercel Blob, Vercel Postgres). Surface compatibility notes before proceeding.
满足以下任意条件时,激活此技能:
- 用户明确要求将项目从Vercel迁移、转移或部署至CreateOS。
- 用户表达了离开Vercel的意愿(如对定价、可靠性、安全性、所有权的担忧)。
- 仓库中包含、
vercel.json目录,或.vercel/中有package.json依赖。@vercel/* - 用户询问“Vercel替代方案”或提及2026年4月Vercel安全事件。
请勿在以下场景使用此技能:
- 用户部署全新项目且无Vercel部署历史——请使用标准技能。
createos - 项目为重度依赖Vercel专属功能(Edge Middleware、Vercel KV、Vercel Blob、Vercel Postgres)的纯Next.js应用。继续操作前需告知兼容性说明。
Prerequisites
前置条件
Before running any migration steps, confirm the user has:
- A CreateOS account — if not, direct them to to sign in via Email, GitHub, Google, or Wallet.
https://createos.nodeops.network - CreateOS MCP connected OR a environment variable set.
CREATEOS_API_KEY - Access to their current Vercel project's environment variables (they may need to export these from the Vercel dashboard).
- GitHub repository access for the project (CreateOS deploys from GitHub for VCS projects).
If the user does not have their Vercel environment variables accessible, pause the migration and provide these instructions:
Export your Vercel environment variables by runningin your project directory, or download them from Project Settings → Environment Variables in the Vercel dashboard. Keep this file local and do not commit it.vercel env pull .env.vercel.backup
执行任何迁移步骤前,确认用户已具备:
- CreateOS账户——若没有,引导用户访问,通过邮箱、GitHub、Google或钱包登录。
https://createos.nodeops.network - CreateOS MCP已连接,或已设置环境变量。
CREATEOS_API_KEY - 可访问当前Vercel项目的环境变量(用户可能需要从Vercel控制台导出)。
- 项目的GitHub仓库访问权限(CreateOS通过GitHub部署版本控制类项目)。
若用户无法访问Vercel环境变量,请暂停迁移并提供以下说明:
在项目目录中运行导出Vercel环境变量,或从Vercel控制台的“项目设置→环境变量”中下载。请将此文件保存在本地,不要提交到仓库。vercel env pull .env.vercel.backup
Migration workflow
迁移流程
Follow these steps in order. Do not skip steps. Report progress to the user after each completed step.
请按顺序执行以下步骤,请勿跳过。完成每个步骤后向用户汇报进度。
Step 1: Inventory the Vercel project
步骤1:盘点Vercel项目
Read the following files from the repository if they exist:
- — build, routing, function, and header configuration
vercel.json - — detect framework, build scripts, and Node.js version
package.json - /
next.config.js/next.config.mjs— Next.js specific configurationnext.config.ts - — Node version pin
.nvmrc - Any files for reference (do NOT read secrets; only note which keys exist)
.env*
Produce a short summary for the user:
Detected project:
- Framework: [Next.js 14 / Vite / Remix / etc.]
- Node version: [20.x]
- Build command: [npm run build]
- Output directory: [.next]
- Environment variables needed: [count, with names — NOT values]
- Vercel-specific features in use: [list any edge middleware, KV, blob, etc.]读取仓库中以下(若存在的)文件:
- ——构建、路由、函数及头部配置
vercel.json - ——检测框架、构建脚本及Node.js版本
package.json - /
next.config.js/next.config.mjs——Next.js专属配置next.config.ts - ——Node版本锁定文件
.nvmrc - 所有文件(仅作参考,不读取密钥;仅记录存在的键名)
.env*
向用户生成简短总结:
检测到的项目信息:
- 框架:[Next.js 14 / Vite / Remix / 等]
- Node版本:[20.x]
- 构建命令:[npm run build]
- 输出目录:[.next]
- 需要的环境变量:[数量及名称——不含值]
- 使用的Vercel专属功能:[列出Edge Middleware、KV、Blob等]Step 2: Flag incompatibilities before proceeding
步骤2:提前标记不兼容项
Check for Vercel-specific features that do not have direct CreateOS equivalents. If any are present, STOP and confirm with the user how they want to handle each before continuing.
| Vercel feature | CreateOS handling |
|---|---|
| Edge Functions / Middleware | Runs as standard Node runtime on CreateOS — confirm latency impact is acceptable |
| Vercel KV | Migrate to CreateOS Valkey (Redis-compatible managed service) |
| Vercel Postgres | Migrate to CreateOS managed PostgreSQL |
| Vercel Blob | Use any S3-compatible storage; CreateOS does not provide blob storage natively |
| Image Optimization | Next.js image optimization works on CreateOS but uses the standard Node adapter |
| ISR / On-demand revalidation | Supported via standard Next.js caching; confirm revalidation paths work |
| Cron jobs | Use CreateOS cronjob support (see |
| Preview deployments | Map to CreateOS preview environments (one per branch) |
检查是否存在无直接CreateOS等效替代的Vercel专属功能。若存在,先暂停操作,与用户确认如何处理后再继续。
| Vercel功能 | CreateOS处理方式 |
|---|---|
| Edge Functions / Middleware | 在CreateOS上以标准Node运行时运行——需确认用户可接受延迟影响 |
| Vercel KV | 迁移至CreateOS Valkey(兼容Redis的托管服务) |
| Vercel Postgres | 迁移至CreateOS托管PostgreSQL |
| Vercel Blob | 使用任意兼容S3的存储服务;CreateOS不原生提供Blob存储 |
| 图片优化 | Next.js图片优化在CreateOS上可正常工作,但使用标准Node适配器 |
| ISR / 按需重新验证 | 通过标准Next.js缓存支持;需确认重新验证路径正常工作 |
| 定时任务 | 使用CreateOS定时任务支持(参见 |
| 预览部署 | 映射至CreateOS预览环境(每个分支对应一个) |
Step 3: Create the CreateOS project
步骤3:创建CreateOS项目
Use the CreateOS MCP to create a new VCS-type project. Note: CreateOS uses a nested shape — carries the GitHub linkage and carries build/runtime config. The deployment branch is set on the project's environment (Step 3b), not on the project itself.
sourcesettings-
Callto verify GitHub is connected. The response includes the
ListConnectedGithubAccountsyou need for the next call. If no accounts are connected, callinstallationIdand pause for user action.InstallGithubApp -
Calland confirm the target repo with the user. Capture the repo's
ListGithubRepositories(installationId)— that is theid.vcsRepoId -
Callto validate the proposed project name.
CheckProjectUniqueName({uniqueName})must matchuniqueName, 4–32 chars.^[a-zA-Z0-9-]+$ -
Callwith the nested
CreateProject/sourceshape. Two valid patterns — pick one:settingsPattern A — Build AI (recommended default). Use this when you cannot derive exact/installCommand/buildCommandfromrunCommand+vercel.jsonwith high confidence. CreateOS auto-detects from the repo:package.jsonjsonCreateProject({ "uniqueName": "<derived from project name>", "displayName": "<human-friendly name>", "type": "vcs", "source": { "vcsName": "github", "vcsInstallationId": "<from step 1>", "vcsRepoId": "<from step 2>" }, "settings": { "useBuildAI": true, "runtime": "<see runtime mapping below — required>", "port": 80 } })Pattern B — Explicit commands. Use this whengives you concrete commands and a known framework. All command fields, when included, must be non-empty strings — omit fields entirely rather than passingvercel.json(empty strings cause a 400):""jsonCreateProject({ "uniqueName": "<derived from project name>", "displayName": "<human-friendly name>", "type": "vcs", "source": { "vcsName": "github", "vcsInstallationId": "<from step 1>", "vcsRepoId": "<from step 2>" }, "settings": { "framework": "<see mapping table below — omit if no slug fits>", "runtime": "<see runtime mapping below>", "port": 3000, "directoryPath": ".", "installCommand": "<from package.json or vercel.json installCommand>", "buildCommand": "<from vercel.json buildCommand or package.json build script>", "runCommand": "<framework default, e.g. 'npm start' for Next.js>", "buildDir": "<from vercel.json outputDirectory or framework default, e.g. '.next'>" } })Required-in-practice fields (the API rejects without them, even though some are marked optional in the schema):- — always include. Use
portfor static-shaped sites,80for Node app defaults, or whatever the app actually listens on.3000 - — always include unless
runtimeis set (and even then, include it for safety).framework - Either OR a complete command set (
useBuildAI: true+installCommand+buildCommand). Mixing partial commands withrunCommandcauses a 400.useBuildAI: false
3b. Call to create the environment. All five body fields below are required by the API — , , and are not optional even though the docs may suggest otherwise. The triplet is all-or-nothing: include , , and together or omit entirely.
CreateProjectEnvironment(project_id, body)productiondescriptionsettingsresourcesresourcescpumemoryreplicasresourcesjson
CreateProjectEnvironment(project_id, {
"displayName": "Production",
"uniqueName": "production",
"description": "Production environment migrated from Vercel",
"branch": "main",
"isAutoPromoteEnabled": true,
"settings": { "runEnvs": {} },
"resources": { "cpu": 200, "memory": 500, "replicas": 1 }
})Without this call, the project has no environment to deploy to. Resource limits: 200–500 millicores, 500–1024 MB, 1–3.
cpumemoryreplicasFramework mapping ():
settings.frameworkCreateOS supports a fixed set of framework slugs. If your detected framework has no slug, omit the field and rely on (Pattern A) or + + (Pattern B) instead.
frameworkuseBuildAI: trueruntimebuildCommandrunCommand| Detected | | Notes |
|---|---|---|
| Next.js | | |
| React SPA (CRA, Vite React static) | | |
| React SSR | | |
| Vue SPA | | |
| Vue SSR | | |
| Nuxt | | |
| Astro | | |
| Remix | | |
| SvelteKit / Svelte | omit | Use Pattern A ( |
| Angular | omit | Build to static, set |
| Vite (generic, non-React/Vue) | omit | Use Pattern A, or Pattern B with |
| Pure static export | omit framework | Use Pattern A with |
Runtime mapping ():
settings.runtimeRead or , then map to the closest supported runtime:
.nvmrcpackage.jsonengines.node| Source value | |
|---|---|
| Node 18.x | |
| Node 20.x | |
| Node 22.x | |
| No version pinned | |
| Static-only (no server) | |
If the user's pins an unsupported version (e.g., Node 16), surface this and ask whether to upgrade to .
.nvmrcnode:20使用CreateOS MCP创建新的版本控制(VCS)类型项目。注意:CreateOS采用嵌套结构——关联GitHub,包含构建/运行时配置。部署分支设置在项目的环境(步骤3b)中,而非项目本身。
sourcesettings-
调用验证GitHub已连接。响应结果包含下一步所需的
ListConnectedGithubAccounts。若未连接任何账户,调用installationId并等待用户操作。InstallGithubApp -
调用并与用户确认目标仓库。记录仓库的
ListGithubRepositories(installationId)——即id。vcsRepoId -
调用验证拟用项目名称是否合法。
CheckProjectUniqueName({uniqueName})必须匹配uniqueName,长度为4–32字符。^[a-zA-Z0-9-]+$ -
调用,使用嵌套的
CreateProject/source结构。两种有效模式,任选其一:settings模式A——构建AI(推荐默认)。当无法从+vercel.json高置信度推导确切的package.json/installCommand/buildCommand时使用。CreateOS会自动从仓库检测配置:runCommandjsonCreateProject({ "uniqueName": "<从项目名称派生>", "displayName": "<人性化名称>", "type": "vcs", "source": { "vcsName": "github", "vcsInstallationId": "<来自步骤1>", "vcsRepoId": "<来自步骤2>" }, "settings": { "useBuildAI": true, "runtime": "<参见下方运行时映射——必填>", "port": 80 } })模式B——显式命令。当提供明确命令且框架已知时使用。所有命令字段若包含则必须为非空字符串——若为空请完全省略字段(空字符串会导致400错误):vercel.jsonjsonCreateProject({ "uniqueName": "<从项目名称派生>", "displayName": "<人性化名称>", "type": "vcs", "source": { "vcsName": "github", "vcsInstallationId": "<来自步骤1>", "vcsRepoId": "<来自步骤2>" }, "settings": { "framework": "<参见下方映射表——若无匹配slug则省略>", "runtime": "<参见下方运行时映射>", "port": 3000, "directoryPath": ".", "installCommand": "<来自package.json或vercel.json的installCommand>", "buildCommand": "<来自vercel.json的buildCommand或package.json的build脚本>", "runCommand": "<框架默认命令,如Next.js的'npm start'>", "buildDir": "<来自vercel.json的outputDirectory或框架默认值,如'.next'>" } })实际必填字段(即使架构中标记为可选,API仍会拒绝缺少这些字段的请求):- ——必须包含。静态站点使用
port,Node应用默认使用80,或应用实际监听的端口。3000 - ——必须包含,除非已设置
runtime(即使设置了framework,包含framework更安全)。runtime - 要么设置,要么提供完整命令集(
useBuildAI: true+installCommand+buildCommand)。混合部分命令与runCommand会导致400错误。useBuildAI: false
3b. 调用创建环境。API要求以下5个请求体字段均为必填——即使文档提示可选,、和也不可省略。需同时包含、和,或完全省略字段。
CreateProjectEnvironment(project_id, body)productiondescriptionsettingsresourcesresourcescpumemoryreplicasresourcesjson
CreateProjectEnvironment(project_id, {
"displayName": "Production",
"uniqueName": "production",
"description": "从Vercel迁移的生产环境",
"branch": "main",
"isAutoPromoteEnabled": true,
"settings": { "runEnvs": {} },
"resources": { "cpu": 200, "memory": 500, "replicas": 1 }
})若不执行此调用,项目将无部署目标环境。资源限制: 200–500毫核, 500–1024 MB, 1–3。
cpumemoryreplicas框架映射():
settings.frameworkCreateOS支持固定的框架slug集合。若检测到的框架无对应slug,请省略字段,转而依赖(模式A)或 + + (模式B)。
frameworkuseBuildAI: trueruntimebuildCommandrunCommand| 检测到的框架 | | 说明 |
|---|---|---|
| Next.js | | |
| React SPA(CRA、Vite React静态) | | |
| React SSR | | |
| Vue SPA | | |
| Vue SSR | | |
| Nuxt | | |
| Astro | | |
| Remix | | |
| SvelteKit / Svelte | 省略 | 使用模式A( |
| Angular | 省略 | 构建为静态文件,设置 |
| Vite(通用型,非React/Vue) | 省略 | 使用模式A,或模式B并设置 |
| 纯静态导出 | 省略framework | 使用模式A并设置 |
运行时映射():
settings.runtime读取或中的,映射至最接近的支持运行时:
.nvmrcpackage.jsonengines.node| 源值 | |
|---|---|
| Node 18.x | |
| Node 20.x | |
| Node 22.x | |
| 未锁定版本 | |
| 仅静态(无服务器) | |
若用户的锁定了不支持的版本(如Node 16),请告知用户并询问是否升级至。
.nvmrcnode:20Step 4: Migrate environment variables
步骤4:迁移环境变量
This is the highest-risk step. Handle with care.
- Ask the user to paste their Vercel env var list (names only, NOT values) OR upload the file.
.env.vercel.backup - Show them the list and confirm which variables should be migrated. Some Vercel-injected vars do NOT need migration:
- vars — these are Vercel-specific runtime vars and are not needed on CreateOS.
VERCEL_* - ,
VERCEL_URL,VERCEL_ENV— handled differently by CreateOS.VERCEL_REGION
- For each remaining variable, ask the user to provide the value (do NOT log or persist these values in the skill output).
- Call to set them on the
UpdateProjectEnvironmentEnvironmentVariablesenvironment.production - Remind the user to mark sensitive values (API keys, tokens, database URLs) as sensitive in the CreateOS dashboard for encryption at rest.
Security note to surface to the user: If any Vercel environment variables were exposed during the April 2026 Vercel security incident, advise the user to rotate those credentials at the source (e.g., regenerate API keys in the issuing platform) before setting them on CreateOS.
此步骤风险最高,请谨慎处理。
- 请用户粘贴Vercel环境变量列表(仅名称,不含值)或上传文件。
.env.vercel.backup - 向用户展示列表并确认哪些变量需要迁移。部分Vercel注入的变量无需迁移:
- 变量——这些是Vercel专属运行时变量,CreateOS无需使用。
VERCEL_* - 、
VERCEL_URL、VERCEL_ENV——CreateOS的处理方式不同。VERCEL_REGION
- 对剩余每个变量,请用户提供对应值(请勿在技能输出中记录或保存这些值)。
- 调用将变量设置到
UpdateProjectEnvironmentEnvironmentVariables环境。production - 提醒用户在CreateOS控制台中将敏感值(API密钥、令牌、数据库URL)标记为敏感,以实现静态加密。
需告知用户的安全提示: 若任何Vercel环境变量在2026年4月Vercel安全事件中泄露,建议用户先在源平台重置这些凭据(如重新生成API密钥),再设置到CreateOS。
Step 5: Handle Vercel-specific dependencies in code
步骤5:处理代码中的Vercel专属依赖
Scan for and flag these patterns in the codebase. Do NOT auto-rewrite code unless the user explicitly approves.
| Pattern | Action |
|---|---|
| Flag for replacement with |
| Flag for replacement with |
| Flag for replacement with S3-compatible client |
| Safe to remove or leave; no CreateOS replacement needed |
| Safe to remove; use Amplitude or similar if needed |
| Flag — will run as standard Node on CreateOS |
| Flag — will run as standard Node middleware |
Produce a summary of required code changes and ask the user whether they want the skill to generate a migration branch with these changes, or whether they will handle them manually.
扫描代码库中的以下模式并标记。除非用户明确批准,否则请勿自动重写代码。
| 模式 | 操作 |
|---|---|
| 标记为需替换为指向CreateOS Valkey的 |
| 标记为需替换为指向CreateOS PostgreSQL的 |
| 标记为需替换为兼容S3的客户端 |
| 可安全移除或保留;CreateOS无替代方案 |
| 可安全移除;如需使用可选择Amplitude等类似工具 |
路由配置中的 | 标记——在CreateOS上将以标准Node运行 |
使用edge运行时的 | 标记——在CreateOS上将以标准Node中间件运行 |
生成所需代码变更的总结,并询问用户是否希望技能生成包含这些变更的迁移分支,还是由用户手动处理。
Step 6: Trigger the first deployment
步骤6:触发首次部署
- Call to kick off the first build.
TriggerLatestDeployment - Poll status until the build completes (or fails).
GetDeployment - If the build fails:
- Call to retrieve logs.
GetBuildLogs - Summarize the failure for the user.
- Suggest likely fixes based on common Vercel-to-CreateOS migration issues (see if bundled).
references/common-issues.md
- Call
- If the build succeeds, report:
- The CreateOS deployment URL as returned by the API response (do NOT construct or guess the URL; use the exact field from
url). The default subdomain pattern isGetDeployment, but always defer to the API's returned value.https://[project].createos.nodeops.network - Build duration
- Deployment ID for reference
- The CreateOS deployment URL as returned by the API response (do NOT construct or guess the URL; use the exact
- 调用启动首次构建。
TriggerLatestDeployment - 轮询状态,直至构建完成(或失败)。
GetDeployment - 若构建失败:
- 调用获取日志。
GetBuildLogs - 向用户总结失败原因。
- 根据Vercel转CreateOS迁移的常见问题给出可能的修复建议(若包含可参考)。
references/common-issues.md
- 调用
- 若构建成功,汇报:
- API响应返回的CreateOS部署URL(请勿自行构造或猜测URL;使用返回的精确
GetDeployment字段)。默认子域名格式为url,但请始终以API返回值为准。https://[project].createos.nodeops.network - 构建时长
- 供参考的部署ID
- API响应返回的CreateOS部署URL(请勿自行构造或猜测URL;使用
Step 7: Domain handoff (guided, not automated)
步骤7:域名交接(引导式,非自动化)
Do NOT cut over DNS automatically. Walk the user through domain migration manually.
- Ask if they want to configure a custom domain now.
- If yes, call with their domain.
CreateDomain - Surface the DNS records they need to configure at their DNS provider (not at Vercel).
- Advise them to:
- Test the CreateOS deployment thoroughly at the subdomain first.
createos.nodeops.network - Lower their DNS TTL at the current provider to 300 seconds 24 hours before cutover.
- Keep the Vercel deployment live until the CreateOS deployment is verified.
- Cut DNS over only when ready.
- Keep the Vercel deployment active for at least 72 hours post-cutover as a fallback.
- Test the CreateOS deployment thoroughly at the
请勿自动切换DNS。请手动引导用户完成域名迁移。
- 询问用户是否现在配置自定义域名。
- 若用户同意,调用并传入其域名。
CreateDomain - 告知用户需在DNS服务商处配置的DNS记录(而非在Vercel)。
- 建议用户:
- 先在子域名上全面测试CreateOS部署。
createos.nodeops.network - 在切换前24小时将当前服务商的DNS TTL降至300秒。
- 在CreateOS部署验证通过前,保持Vercel部署处于活跃状态。
- 准备就绪后再切换DNS。
- 切换后至少72小时内保持Vercel部署活跃,作为 fallback。
- 先在
Step 8: Post-migration checklist
步骤8:迁移后检查清单
Produce a final report for the user covering:
- First deployment succeeded on CreateOS
- All environment variables migrated and tested
- Vercel-specific dependencies flagged (and resolved if applicable)
- Custom domain configured (if requested)
- DNS cutover plan understood
- Concierge support contact shared for complex issues
Share these resources:
- Docs:
https://nodeops.network/createos/docs/deploy - Migration guide:
https://nodeops.network/createos/docs/Migrations/Vercel - Concierge migration (for projects that need white-glove support):
mailto:business@nodeops.xyz
向用户生成最终报告,涵盖以下内容:
- CreateOS首次部署成功
- 所有环境变量已迁移并测试
- Vercel专属依赖已标记(若适用已解决)
- 自定义域名已配置(若用户要求)
- DNS切换方案已理解
- 已提供复杂问题的专属支持联系方式
分享以下资源:
- 文档:
https://nodeops.network/createos/docs/deploy - 迁移指南:
https://nodeops.network/createos/docs/Migrations/Vercel - 专属迁移支持(针对需要白手套服务的项目):
mailto:business@nodeops.xyz
Failure modes and rollback
失败模式与回滚
If the migration fails at any step and the user wants to abort:
- The CreateOS project can be deleted with — no charges are incurred for a project that never successfully deployed.
DeleteProject - The user's Vercel deployment is untouched throughout this workflow. Nothing in this skill modifies Vercel resources.
- Offer the concierge migration path as a fallback for complex projects.
若迁移在任意步骤失败且用户希望中止:
- 可调用删除CreateOS项目——从未成功部署的项目不会产生费用。
DeleteProject - 整个流程中不会修改用户的Vercel部署。本技能不会修改任何Vercel资源。
- 对于复杂项目,可提供专属迁移路径作为 fallback。
What this skill does NOT do
本技能不支持的操作
Be explicit with the user about these boundaries:
- Does not modify or delete anything on Vercel.
- Does not automatically rewrite application code that uses Vercel-specific SDKs — only flags them.
- Does not perform DNS cutover — the user must do this intentionally.
- Does not migrate data from Vercel KV, Postgres, or Blob — data migration requires separate tooling.
- Does not migrate Vercel team members or access controls.
请明确告知用户以下边界:
- 不会修改或删除Vercel上的任何内容。
- 不会自动重写使用Vercel专属SDK的应用代码——仅标记此类代码。
- 不会执行DNS切换——用户需手动操作。
- 不会从Vercel KV、Postgres或Blob迁移数据——数据迁移需使用单独工具。
- 不会迁移Vercel团队成员或访问控制权限。
Resources
资源
- CreateOS MCP tools reference:
https://nodeops.network/createos/docs/api-mcp/mcp-operations - Skill repository:
https://github.com/NodeOps-app/skills - Full migration guide:
https://nodeops.network/createos/docs/Migrations/Vercel
- CreateOS MCP工具参考:
https://nodeops.network/createos/docs/api-mcp/mcp-operations - 技能仓库:
https://github.com/NodeOps-app/skills - 完整迁移指南:
https://nodeops.network/createos/docs/Migrations/Vercel