/ Verzeichnis / Playground / prismatic-skills
● Community prismatic-io ⚡ Sofort

prismatic-skills

von prismatic-io · prismatic-io/prismatic-skills

First-party Prismatic.io skills for building code-native integrations and custom connectors — spin up connectors without clicking through the UI.

Prismatic publishes these skills for their integration platform. They teach Claude Code how to build code-native Prismatic integrations: scaffolding connectors, writing action handlers, testing locally with their SDK, and deploying. Official source, focused scope.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

prismatic-skill.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren Client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "prismatic-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/prismatic-io/prismatic-skills",
        "~/.claude/skills/prismatic-skills"
      ],
      "_inferred": true
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "prismatic-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/prismatic-io/prismatic-skills",
        "~/.claude/skills/prismatic-skills"
      ],
      "_inferred": true
    }
  }
}

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "prismatic-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/prismatic-io/prismatic-skills",
        "~/.claude/skills/prismatic-skills"
      ],
      "_inferred": true
    }
  }
}

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "prismatic-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/prismatic-io/prismatic-skills",
        "~/.claude/skills/prismatic-skills"
      ],
      "_inferred": true
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "prismatic-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/prismatic-io/prismatic-skills",
        "~/.claude/skills/prismatic-skills"
      ]
    }
  ]
}

Continue nutzt ein Array von Serverobjekten statt einer Map.

~/.config/zed/settings.json
{
  "context_servers": {
    "prismatic-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/prismatic-io/prismatic-skills",
          "~/.claude/skills/prismatic-skills"
        ]
      }
    }
  }
}

In context_servers hinzufügen. Zed lädt beim Speichern neu.

claude mcp add prismatic-skill -- git clone https://github.com/prismatic-io/prismatic-skills ~/.claude/skills/prismatic-skills

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: prismatic-skills

Build a custom Prismatic connector for an internal API

👤 Integration engineers on teams using Prismatic ⏱ ~90 min advanced

Wann einsetzen: You have an internal API that your Prismatic flows need to talk to.

Voraussetzungen
  • Prismatic account + SDK — npm i -g @prismatic-io/prism; prism login
  • Skill installed — git clone https://github.com/prismatic-io/prismatic-skills ~/.claude/skills/prismatic-skills
Ablauf
  1. Scaffold the connector
    Use prismatic-skills. Scaffold a connector for our Orders API — base URL, bearer auth, actions for list, get, create.✓ Kopiert
    → Connector directory with TS entry points, manifest, test files
  2. Implement actions
    Fill in the listOrders action with pagination and error handling.✓ Kopiert
    → TS implementation with types and Prismatic input/output conventions
  3. Test locally
    Run the test harness with a mock response.✓ Kopiert
    → prism tests output; green

Ergebnis: A deployable connector with actions your flows can use.

Fallstricke
  • Missing input validation — Prismatic validates at the platform boundary; still use Zod or similar for runtime safety
Kombinieren mit: filesystem

Add a new action to an existing Prismatic connector

👤 Maintainers of deployed connectors ⏱ ~30 min intermediate

Wann einsetzen: Business needs a new action (e.g., refund flow) on an existing integration.

Ablauf
  1. Identify the pattern
    Use prismatic-skills. Look at the existing actions/ and mimic the pattern for a new 'refundOrder' action.✓ Kopiert
    → Action file consistent with existing style
  2. Publish
    Bump the connector version and deploy.✓ Kopiert
    → prism integrations:publish succeeded

Ergebnis: Connector updated without breaking existing flows.

Fallstricke
  • Breaking input schema without version bump — Version the connector; old flows pin to old version until migrated

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

prismatic-skill + filesystem

Manage a multi-connector monorepo

Add connectors/widgets-api/ following the same pattern as connectors/users-api/.✓ Kopiert
prismatic-skill + github

Review connector PRs with skill context

Review this PR against Prismatic connector conventions.✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
scaffold_connector name, auth type, actions New connector 0
write_action action spec Per-action implementation 0
run_tests connector path Before publish local
publish_connector connector path Deploy Prismatic deploy

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
None in skill
Tokens pro Aufruf
Moderate
Kosten in €
Prismatic plan applies; skill is free
Tipp
Test locally with the SDK before pushing to reduce deploy churn.

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: Prismatic credentials via prism CLI (not stored in skill)
Datenabfluss: Prismatic platform + whatever APIs your connectors talk to

Fehlerbehebung

Häufige Fehler und Lösungen

prism login fails

Token scope or expiry; re-login via browser flow

Prüfen: prism me
Connector publishes but flows can't see new action

Customers may need to upgrade connector version in their flow settings

Input schema rejected

Prismatic enforces specific input shapes; consult their docs or the skill's action templates

Alternativen

prismatic-skills vs. andere

AlternativeWann stattdessenKompromiss
Prismatic low-code UISimple integrations, no custom code neededLess flexibility; not versioned in git
Raw Prismatic SDK without skillYou already know the SDK wellLess guided scaffolding

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen