Official Prismatic plugin marketplace for Claude Code
npx claudepluginhub prismatic-io/prismatic-skillsBuild and deploy Prismatic custom components, Code Native Integrations, and embedded marketplace experiences
Claude Code plugin for building and managing Prismatic integrations through conversation. Build custom components, generate Code Native Integrations, explore your Prismatic environment, and operate the platform — all from your editor.
npm install -g @prismatic-io/prism (also provides the bundled MCP server)tsx)Add the marketplace and install the plugin in Claude Code:
/plugin marketplace add prismatic-io/prismatic-skills
/plugin install prismatic-skills@prismatic-skills
For local development, load the plugin directly:
claude --plugin-dir /path/to/prismatic-skills
/prismatic-skills:build-componentBuild and deploy a Prismatic custom component.
/prismatic-skills:build-component Canny API connector
Workflow:
/prismatic-skills:build-integrationBuild and deploy a Prismatic Code Native Integration (CNI).
/prismatic-skills:build-integration Salesforce to Slack sync
Workflow:
/prismatic-skills:orbyAsk Orby, the Prismatic platform guide, about your environment or have it perform platform operations.
/prismatic-skills:orby What integrations do I have?
/prismatic-skills:orby Deploy the Slack integration to Acme Corp
/prismatic-skills:orby How do I query execution logs in GraphQL?
/prismatic-skills:orby Show me the last 10 failed executions
Capabilities:
| Agent | Description |
|---|---|
component-builder | Builds custom components from requirements to deployment. Uses a DAG-driven questionnaire, optional API research, and per-phase scripts for scaffolding, building, and publishing. |
cni-builder | Builds Code Native Integrations from requirements to deployment. Manages component manifests, OAuth configuration, TypeScript generation, deploy, and test cycles. |
external-api-researcher | Researches external APIs by fetching and analyzing documentation. Extracts authentication methods, endpoints, data models, and webhook capabilities into a structured JSON spec. Only spawned when the requirements DAG determines research is needed. |
orby | Interactive Prismatic platform guide. Explores your environment, executes platform operations, constructs GraphQL queries, searches documentation, and orchestrates multi-step workflows. |
The plugin includes four knowledge bases that agents draw on:
| Skill | Purpose |
|---|---|
component-patterns | Reference docs, code generation patterns, and complete examples (utility, API key connector, OAuth2 connector) for building custom components |
integration-patterns | Reference docs, CNI pattern library (webhooks, state persistence, error handling, OAuth, multi-flow, etc.), and code generation guide for Code Native Integrations |
prismatic-api | GraphQL query reference, API access hierarchy (MCP tools / Prism CLI), query patterns for customers, instances, executions, logs, components, and integrations |
prismatic-docs | Documentation search strategies for prismatic.io/docs and example code navigation from the Prismatic examples repo |
Builder agents are driven by TypeScript scripts in scripts/ that handle every phase of the workflow. Agents call these scripts via npx tsx rather than performing platform operations directly.