$git clone https://github.com/corezoid/corezoid-ai-pluginCorezoid AI plugin marketplace for Claude Code and Codex: product knowledge, workflow skills, schemas, templates, playbooks, samples, and MCP references for building Corezoid processes.
| 1 | # Corezoid — Claude Code & Codex Plugin |
| 2 | |
| 3 | A plugin for [Claude Code](https://claude.ai/code) and [Codex](https://openai.com/codex) that connects the [Corezoid](https://corezoid.com) 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. |
| 4 | |
| 5 | > *Not just an MCP wrapper over the Corezoid API — an AI-Native management layer for the platform.* |
| 6 | |
| 7 | ## What it does |
| 8 | |
| 9 | 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: |
| 10 | |
| 11 | | Skill | Activate with | Covers | |
| 12 | |--------------------------------|------------------------------------------|---------------------------------------------------| |
| 13 | | `corezoid` | "Corezoid", "process", "conv.json" | Full platform overview, all node types, MCP tools | |
| 14 | | `corezoid-init` | "set up", "login", "pull workspace" | OAuth login, workspace pull, environment setup | |
| 15 | | `corezoid-create` | "create a process", "new process" | Building processes from scratch | |
| 16 | | `corezoid-edit` | "edit", "modify", "update" a process | Modifying existing `.conv.json` files | |
| 17 | | `corezoid-review` | "review", "audit", "check" a process | Analysis, dead code, best-practice violations | |
| 18 | | `corezoid-project-review` | "review project", "audit folder" | Cross-process audit of an entire folder | |
| 19 | | `corezoid-node-layout` | "arrange nodes", "lay out", "tidy up the diagram", "fix positions", "remove overlaps" | Auto-arrange node x/y into a clean top-to-bottom flow with error handling railed right and no overlaps (positions only) | |
| 20 | | `corezoid-dashboard-manager` | "create dashboard", "add chart", "visualize metrics" | Dashboards, charts, node metrics, real-time monitoring | |
| 21 | | `corezoid-process-tech-writer` | "document", "write docs", "describe process" | Markdown docs + enriched JSON with node descriptions | |
| 22 | | `corezoid-retro` | "retro", "what did we learn", "capture learnings" | End-of-session retrospective: routes learnings to workspace CLAUDE.md, team feedback, settings, or personal memory — with user confirmation | |
| 23 | | `corezoid-access` | "share", "give access", "create group", "create api key" | Object sharing, user groups, API keys, invites | |
| 24 | | `corezoid-alias-manager` | "alias", "short name", "rename alias" | Create, list, modify, delete process aliases | |
| 25 | | `corezoid-variable-manager` | "variable", "env var", "create variable" | Create, list, modify, delete environment variables | |
| 26 | | `corezoid-api-connector` | "call Corezoid API", "api/2/json", "api_secret_outer" | Processes that call the Corezoid public API | |
| 27 | | `corezoid-process-optimizer` | "optimize", "reduce tacts", "improve" | Merge nodes, clean data flow, add resilience | |
| 28 | | `corezoid-describe` | "update description", "add description", "describe this process" | Set or refresh the description of a process, folder, or project | |
| 29 | | `corezoid-feedback` | "report a bug", "this is broken", "send feedback" | Collect and submit bug reports / improvement requests | |
| 30 | | `marketplace-publish-validation` | "publish to marketplace", "check before publish" | Pre-publication checklist for Corezoid marketplace | |
| 31 | | `corezoid-gitcall` | "git call", "gitcall", "run my code", "custom code node", "python/go/php in a process" | Custom code (Python/Go/Java/PHP/JS/…) as a git_call step — parsing, libraries, crypto, attachments; handles the container build on push | |
| 32 | |
| 33 | ## Design philosophy |
| 34 | |
| 35 | This plugin is not simply an MCP wrapper over the Corezoid API. It is an attempt to |
| 36 | build an AI-Native management layer — one that understands process structure, |
| 37 | validation rules, and platform conventions deeply enough to create, audit, and deploy |
| 38 | workflows through natural conversation. |
| 39 | |
| 40 | ## Requirements |
| 41 | |
| 42 | - [Claude Code](https://claude.ai/code), [Codex](https://openai.com/codex), or [AWS Kiro](https://kiro.dev) installed |
| 43 | - A Corezoid account |
| 44 | |
| 45 | ## Installation |
| 46 | |
| 47 | ### Claude Code |
| 48 | |
| 49 | **From the GitHub marketplace:** |
| 50 | |
| 51 | ```bash |
| 52 | claude plugin marketplace add corezoid/corezoid-ai-plugin |
| 53 | claude plugin install corezoid@corezoid |
| 54 | ``` |
| 55 | |
| 56 | **Or from a local clone:** |
| 57 | |
| 58 | ```bash |
| 59 | git clone https://github.com/corezoid/corezoid-ai-plugin |
| 60 | claude plugin marketplace add ./corezoid-ai-plugin |
| 61 | claude plugin install corezoid@corezoid |
| 62 | ``` |
| 63 | |
| 64 | ### Codex |
| 65 | |
| 66 | **From the GitHub marketplace:** |
| 67 | |
| 68 | ```bash |
| 69 | codex plugin marketplace add corezoid/corezoid-ai-plugin |
| 70 | codex plugin install corezoid@corezoid |
| 71 | ``` |
| 72 | |
| 73 | **Or from a local clone:** |
| 74 | |
| 75 | ```bash |
| 76 | git clone https://github.com/corezoid/corezoid-ai-plugin |
| 77 | codex plugin marketplace add ./corezoid-ai-plugin |
| 78 | codex plugin install |