Skip to main content
Glama

NodeOps 技能

用于 NodeOps 生态系统的 AI 智能体技能。可通过 skills CLI 与 Claude Code、Cursor、Windsurf 及其他 40 多种 AI 编码智能体配合使用。

可用技能

技能

描述

安装

createos

将任何应用部署到 CreateOS 云平台生产环境

npx skills add https://github.com/NodeOps-app/skills --skill createos

vercel-to-createos

将 Next.js、Vite、React、Vue、Svelte 应用从 Vercel 迁移到 CreateOS

npx skills add https://github.com/NodeOps-app/skills --skill vercel-to-createos

迁移技能

vercel-to-createos 是迁移系列中首个发布的技能。netlify-to-createosrailway-to-createosheroku-to-createosrender-to-createosflyio-to-createos 的存根已预留,在正式发布前会将用户引导至人工迁移路径。完整列表和路线图请参阅 MIGRATIONS.md

Related MCP server: AppsAI MCP Server

CreateOS 身份验证

createos 技能有两种使用模式:

  • MCP 模式(推荐,如果可用):身份验证由 MCP 服务器处理(无需 API 密钥)。

  • REST/脚本模式:必须通过 CREATEOS_API_KEY 提供 API 密钥。

对于 REST/脚本使用方式:

export CREATEOS_API_KEY="<your-createos-api-key>"

切勿将 API 密钥提交到 git;建议在 shell 或智能体环境中设置它们。

安装

安装特定技能:

npx skills add https://github.com/NodeOps-app/skills --skill createos

安装到特定智能体:

npx skills add https://github.com/NodeOps-app/skills --skill createos -a claude-code

列出所有可用技能:

npx skills add https://github.com/NodeOps-app/skills --list

添加新技能

  1. skills/ 下创建一个以技能名称命名的新目录:

    skills/
    └── your-skill/
        └── SKILL.md
  2. 添加一个包含 frontmatter 的 SKILL.md

    ---
    name: your-skill
    description: What the skill does and when to activate it.
    ---
    
    # Your Skill
    
    Instructions for the agent...
  3. 可选:添加支持文件:

    skills/your-skill/
    ├── SKILL.md          # Required: skill definition
    ├── config/           # Optional: configuration files
    ├── references/       # Optional: extended documentation
    ├── scripts/          # Optional: helper scripts
    └── assets/           # Optional: templates, images

Related MCP Connectors

Related MCP Servers