Skip to main content
Glama

NodeOps Skills

KI-Agenten-Skills für das NodeOps-Ökosystem. Funktioniert mit Claude Code, Cursor, Windsurf und über 40 weiteren KI-Coding-Agenten über die skills CLI.

Verfügbare Skills

Skill

Beschreibung

Installation

createos

Bereitstellung beliebiger Anwendungen in der Produktion auf der CreateOS-Cloud-Plattform

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

vercel-to-createos

Migration von Next.js-, Vite-, React-, Vue- und Svelte-Apps von Vercel zu CreateOS

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

Migrations-Skills

vercel-to-createos ist der erste veröffentlichte Skill in der Migrations-Familie. Stubs für netlify-to-createos, railway-to-createos, heroku-to-createos, render-to-createos und flyio-to-createos sind reserviert und leiten Benutzer an den Concierge-Migrationspfad weiter, bis diese veröffentlicht werden. Siehe MIGRATIONS.md für die vollständige Liste und Roadmap.

Related MCP server: AppsAI MCP Server

CreateOS-Authentifizierung

Der createos-Skill kann in zwei Modi verwendet werden:

  • MCP-Modus (bevorzugt, falls verfügbar): Die Authentifizierung wird vom MCP-Server übernommen (kein API-Schlüssel erforderlich).

  • REST/Skript-Modus: Sie müssen einen API-Schlüssel über CREATEOS_API_KEY bereitstellen.

Für die REST/Skript-Nutzung:

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

Übertragen Sie niemals API-Schlüssel an Git; legen Sie diese stattdessen in Ihrer Shell oder Ihrer Agenten-Umgebung fest.

Installation

Einen bestimmten Skill installieren:

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

Auf einem bestimmten Agenten installieren:

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

Alle verfügbaren Skills auflisten:

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

Hinzufügen eines neuen Skills

  1. Erstellen Sie ein neues Verzeichnis unter skills/ mit Ihrem Skill-Namen:

    skills/
    └── your-skill/
        └── SKILL.md
  2. Fügen Sie eine SKILL.md mit Frontmatter hinzu:

    ---
    name: your-skill
    description: What the skill does and when to activate it.
    ---
    
    # Your Skill
    
    Instructions for the agent...
  3. Fügen Sie optional unterstützende Dateien hinzu:

    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