claudeers.

🔓 unclaimed — this page was auto-generated from GitHub. Are you the creator?

Claim this page →
// Claude Plugins

corezoid-ai-plugin

Corezoid AI plugin marketplace for Claude Code and Codex: product knowledge, workflow skills, schemas, templates, playbooks, samples, and MCP references for…

Actively maintained
100/100
last commit 8 days ago
last release 8 days ago
releases 10
open issues 2
// install
git clone https://github.com/corezoid/corezoid-ai-plugin

Corezoid — Claude Code & Codex Plugin

A plugin for Claude Code and Codex that connects the Corezoid platform to Claude via MCP. Claude gets direct access to Corezoid processes and deep platform knowledge to create, edit, review, and deploy workflows through natural conversation.

Not just an MCP wrapper over the Corezoid API — an AI-Native management layer for the platform.

What it does

The plugin bundles a Go MCP server that exposes Corezoid operations as MCP tools and provides specialist skills that teach Claude the platform model and common workflows:

SkillActivate withCovers
corezoid"Corezoid", "process", "conv.json"Full platform overview, all node types, MCP tools
corezoid-init"set up", "login", "pull workspace"OAuth login, workspace pull, environment setup
corezoid-create"create a process", "new process"Building processes from scratch
corezoid-edit"edit", "modify", "update" a processModifying existing .conv.json files
corezoid-review"review", "audit", "check" a processAnalysis, dead code, best-practice violations
corezoid-project-review"review project", "audit folder"Cross-process audit of an entire folder
corezoid-dashboard-manager"create dashboard", "add chart", "visualize metrics"Dashboards, charts, node metrics, real-time monitoring
corezoid-process-tech-writer"document", "write docs", "describe process"Markdown docs + enriched JSON with node descriptions

Design philosophy

This plugin is not simply an MCP wrapper over the Corezoid API. It is an attempt to build an AI-Native management layer — one that understands process structure, validation rules, and platform conventions deeply enough to create, audit, and deploy workflows through natural conversation.

Requirements

Installation

Claude Code

From the GitHub marketplace:

claude plugin marketplace add corezoid/corezoid-ai-plugin
claude plugin install corezoid@corezoid

Or from a local clone:

git clone https://github.com/corezoid/corezoid-ai-plugin
claude plugin marketplace add ./corezoid-ai-plugin
claude plugin install corezoid@corezoid

Codex

From the GitHub marketplace:

codex plugin marketplace add corezoid/corezoid-ai-plugin
codex plugin install corezoid@corezoid

Or from a local clone:

git clone https://github.com/corezoid/corezoid-ai-plugin
codex plugin marketplace add ./corezoid-ai-plugin
codex plugin install corezoid@corezoid

No build step, no extra setup. The MCP server starts automatically on first use.

Telemetry: the plugin collects anonymous usage data (tool name, duration, error type, transport version) to improve reliability. No tokens, workspace IDs, or process content are ever sent. To opt out:

export COREZOID_ANALYTICS_DISABLED=1   # add to ~/.zshrc or ~/.bashrc to persist

Updating

claude plugin update corezoid@corezoid   # Claude Code
codex plugin update corezoid@corezoid    # Codex

Restart Claude Code / Codex after updating to apply the new version.

Authentication

On the first Corezoid operation Claude detects that no token is present and runs the login tool automatically — your browser opens for OAuth2 sign-in and the session continues without interruption.

The token is saved to ~/.corezoid/credentials and reused on every subsequent session across all projects. When it expires, the login flow triggers again automatically.

You can also trigger login manually at any time:

log in to Corezoid

Static token (optional)

If you prefer to manage the token yourself, write it to ~/.corezoid/credentials:

ACCESS_TOKEN=your_token_here

Or export it as an environment variable before starting Claude Code or Codex:

export ACCESS_TOKEN=your_token_here

Configuration

Environment variableRequiredDescription
ACCESS_TOKENNoStatic token — overrides OAuth2 saved credentials
COREZOID_API_URLNoOverride the default Corezoid API base URL
WORKSPACE_IDNoDefault workspace ID
COREZOID_STAGE_IDNoDefault stage ID
COREZOID_APIGW_URLNoOverride the API Gateway URL
COREZOID_OAUTH_CLIENT_IDNoOAuth2 client ID — on-prem deployments with a custom authorization server should set this to their own client ID; cloud (account.corezoid.com) users do not need it
COREZOID_HTTP_PORTNoActivate the Streamable HTTP transport on this port (e.g. 8080). When set the server listens for MCP over HTTP instead of stdio — intended for hosted marketplace deployments. Credentials must be pre-configured via env vars; the browser OAuth login flow is not available in HTTP mode

Telemetry

The MCP server collects anonymous usage data (tool name, duration, error type, API hostname) to help improve the plugin. Tokens, workspace identifiers, process content, and personal data are never sent.

To opt out, set the environment variable before starting Claude Code:

export COREZOID_ANALYTICS_DISABLED=1

See SECURITY.md for the full list of collected fields.

Usage

Once installed, just talk to Claude naturally:

Pull my Corezoid workspace and show me what processes are in the Payments folder.
Create a process that calls any weather API, handles errors,
and sends the forecast back to the caller.
Create a folder named "Services" in Corezoid.
Edit the "payment" process — add retry logic on API timeout
with exponential backoff up to 3 attempts.
Edit process with id 1278273  — add retry logic
on API timeout with exponential backoff up to 3 attempts.
Review process ID 2778176 for dead nodes, missing error handlers,
and hardcoded values.
Review the process at 1278273_Business.folder/2778176_payment.conv.json
for dead nodes, missing error handlers, and hardcoded values.
Push the updated payment process to Corezoid and run a test task with
{"amount": 100, "currency": "USD"}.
Audit the entire Payments folder — list all processes, check for
validation errors, and summarize what each process does.

MCP Tools

ToolDescription
loginAuthenticate via OAuth2 (opens browser)
logoutRemove saved credentials
list-workspacesList available workspaces and stages
list-stagesList stages in a workspace
list-projectsList folders and processes in a stage
create-projectCreate a new project (with optional stages) in a workspace
modify-projectUpdate a project's title, short_name and/or description
delete-projectMove a project to the recycle bin (Trash)
show-projectShow a project's stages and parent folder
pull-folderExport an entire folder/stage to local files
pull-processExport a single process to a .conv.json file
push-processValidate and deploy a .conv.json to Corezoid
lint-processValidate process structure locally (no API call)
run-taskSend a task to a deployed process
list-node-tasksList tasks currently sitting in a node
list-task-historyShow task execution history
get-node-statReturn time-series in/out statistics for a node
delete-taskRemove a task from a node
modify-taskUpdate task parameters
create-processCreate a new empty process in a folder
create-state-diagramCreate a new empty state diagram (conv_type "state") in a folder
create-folderCreate a new subfolder
show-folderShow folder metadata (title, kind, parent)
list-foldersList immediate children of a folder (no disk I/O)
modify-folderRename a folder or update its description
delete-folderMove a folder to the recycle bin
create-aliasCreate a short alias for a process
create-variableCreate a Corezoid environment variable
create-dashboardCreate a new dashboard for visualizing node metrics
get-dashboardGet a dashboard with its charts and series
add-chartAdd a chart (column, pie, funnel, table) to a dashboard
modify-chartModify an existing chart (full series replace)
get-chartGet a single chart with its series data
set-dashboard-layoutSave chart positions on a dashboard grid
share-objectGrant or revoke access on a process/folder/stage/project for a user, API key or group (use privs="none" to revoke)
list-sharesList principals with access to a shared object
create-groupCreate a new user group (optional description)
modify-groupRename a group or update its description
list-group-objectsList processes currently shared with a group
delete-groupDelete a user group (refuses by default if shares active; force=true to override)
add-to-groupAdd a user or API key to a group
remove-from-groupRemove a user or API key from a group
list-groupsList user groups in the workspace
create-api-keyCreate a new API key (secret written to ~/.corezoid/api-keys/, never printed in chat)
modify-api-keyRename or re-describe an API key
delete-api-keyDelete an API key (invalidates secret immediately)
list-api-keysList API keys in the workspace
find-principalResolve user / group / API-key name to obj_id
invite-userInvite an external email and share an object in one call

Architecture

Claude Code / Codex
  └── corezoid MCP server (prebuilt binary)
        ├── Auth          login, logout
        ├── Workspace     list-workspaces, list-stages, list-projects,
        │                 create-project, modify-project, delete-project, show-project
        ├── Processes     pull-process, pull-folder, push-process, lint-process
        │                 create-process, create-folder, create-alias, create-variable
        │                 show-folder, list-folders, modify-folder, delete-folder
        ├── Tasks         run-task, list-node-tasks, list-task-history
        │                 modify-task, delete-task
        ├── Dashboards    create-dashboard, get-dashboard, add-chart,
        │                 modify-chart, get-chart, set-dashboard-layout
        └── Access        share-object, list-shares,
                          create-group, modify-group, delete-group, list-group-objects,
                          add-to-group, remove-from-group, list-groups,
                          create-api-key, modify-api-key, delete-api-key, list-api-keys,
                          find-principal, invite-user

Project structure

corezoid-ai-plugin/
├── .claude-plugin/
│   └── marketplace.json         # Claude Code marketplace listing (points to plugins/corezoid)
├── .agents/
│   └── plugins/
│       └── marketplace.json     # Codex marketplace listing (points to plugins/corezoid)
├── plugins/corezoid/            # Plugin root (CLAUDE_PLUGIN_ROOT for both Claude Code and Codex)
│   ├── .claude-plugin/
│   │   └── plugin.json          # Claude Code plugin manifest
│   ├── .codex-plugin/
│   │   └── plugin.json          # Codex plugin manifest
│   ├── .mcp.json                # MCP server configuration
│   ├── mcp-server/              # MCP server source
│   ├── skills/
│   │   ├── corezoid/                    # Universal assistant skill
│   │   ├── corezoid-init/               # Environment setup skill
│   │   ├── corezoid-create/             # Process creation skill
│   │   ├── corezoid-edit/               # Process editing skill
│   │   ├── corezoid-review/             # Process review skill
│   │   ├── corezoid-project-review/     # Project audit skill
│   │   ├── corezoid-dashboard-manager/  # Dashboard & chart management skill
│   │   └── corezoid-process-tech-writer/ # Process documentation skill
│   ├── docs/                    # Node and process documentation
│   └── samples/                 # Example .conv.json processes

Debugging

The MCP server always writes debug output to /tmp/corezoid.log when running in MCP mode. View it with:

tail -f /tmp/corezoid.log

In CLI mode, enable verbose output with:

COREZOID_DEBUG=1 ./convctl pull-process process_id=123

Troubleshooting

See docs/Troubleshooting.md for solutions to common problems:

  • Browser did not open during login
  • Expired or missing ACCESS_TOKEN
  • push-process validation errors
  • MCP server startup failures
  • Common Corezoid API error codes

Compatibility

ComponentSupported versionsNotes
Claude Code≥ 1.xMCP protocol 2025-03-26
Codexcurrent stableSame MCP server, same skills
macOS13 Ventura and laterTested on arm64 and amd64
LinuxUbuntu 22.04+, Debian 12+amd64 tested in CI
Windowsnot testedLikely works; PRs welcome

License

MIT

// compatibility

Platformscli, api, web
Operating systems
AI compatibilityclaude
LicenseMIT
Pricingopen-source
LanguageGo

// faq

What is corezoid-ai-plugin?

Corezoid AI plugin marketplace for Claude Code and Codex: product knowledge, workflow skills, schemas, templates, playbooks, samples, and MCP references for building Corezoid processes.. It is open-source on GitHub.

Is corezoid-ai-plugin free to use?

corezoid-ai-plugin is open-source under the MIT license, so it is free to use.

What category does corezoid-ai-plugin belong to?

corezoid-ai-plugin is listed under plugins in the Claudeers registry of Claude-compatible tools.

2 views
70 stars
unclaimed
updated 15 days ago

// embed badge

corezoid-ai-plugin on Claudeers
[![Claudeers](https://claudeers.com/api/badge/corezoid-ai-plugin.svg)](https://claudeers.com/corezoid-ai-plugin)

// retro hit counter

corezoid-ai-plugin hit counter
[![Hits](https://claudeers.com/api/counter/corezoid-ai-plugin.svg)](https://claudeers.com/corezoid-ai-plugin)

// reviews

// guestbook

0/500

// related in Claude Plugins

🔓

A single CLAUDE.md file to improve Claude Code behavior, derived from Andrej Karpathy's observations on LLM coding pitfalls.

// pluginsmultica-ai/187,223[ claude ]
🔓

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explainin…

// pluginsanthropics/Python135,848[ claude ]
🔓

"CLI-Anything: Making ALL Software Agent-Native" -- CLI-Hub: https://clianything.cc/

// pluginsHKUDS/Python44,672Apache-2.0[ claude ]
🔓

financial-services — a Claude ecosystem project on GitHub.

// pluginsanthropics/Python33,266Apache-2.0[ claude ]
Ecosystem hubone of the most connected projects in the claude ecosystem · 29 connections
→ see how corezoid-ai-plugin connects across the ecosystem