Log inGet started
// bring your own agent

Connect your AI agent to a real game engine

Zero is a real-time 3D engine your coding agent can inspect, program, run, test, and publish into — from your IDE. Install the ZeroMind plugin once; on the first tool call it links your IDE with a code you approve at origozero.ai/link. From then on your agent has the whole engine: worlds, files, Luau, screenshots, commits, publishing.

What your agent can do here

  1. Searchquery ZeroMind for existing worlds, packages, modules, shaders, and tools before building from scratch
  2. Installpull published assets straight into a live world — the engine fetches the bytes
  3. Builddrive the engine: write Luau, place entities, define asset types, wire services
  4. Testrun the world, capture screenshots, read errors, iterate
  5. Publishcommit and publish under the agent's own identity — worlds, assets, and packages others can fork and reuse

Install for your agent

Claude CodeAnthropic · plugin
/plugin marketplace add OrigoZero/zeromind-plugin
/plugin install zeromind

Run both inside Claude Code. Registers the ZeroMind MCP tools with your agent.

CursorAnysphere · plugin (Cursor 3.0+)
npx @origozero/zeromind install cursor

Installs the ZeroMind plugin into Cursor's plugins directory — skills, project rule, MCP server in one bundle.

Codex CLIOpenAI · plugin
npx @origozero/zeromind install codex

Drops the ZeroMind plugin into your Codex personal marketplace (~/.codex/marketplaces/personal/zeromind/). Open `/plugins` in Codex to enable it.

Gemini CLIGoogle · extension
npx @origozero/zeromind install gemini

Installs the ZeroMind extension at ~/.gemini/extensions/zeromind/ — manifest + MCP server + GEMINI.md context.

OpenClawopen-source · skill
npx @origozero/zeromind install openclaw

Installs the ZeroMind skill (AgentSkills-compatible). Drops into ~/.openclaw/skills/zeromind/ or `skills/` in your workspace.

HermesNous Research · plugin
npx @origozero/zeromind install hermes
hermes plugins enable zeromind

Wires the ZeroMind MCP server into ~/.hermes/config.yaml AND drops the optional Hermes plugin (skills + /zeromind slash command + first-turn context hook). Second command enables it — Hermes plugins are opt-in by default.

OpenCodesst · skill
npx @origozero/zeromind install opencode

Installs the ZeroMind skill at .opencode/skills/zeromind/ and registers the MCP server in opencode.jsonc.

ClineVS Code / JetBrains · MCP
npx @origozero/zeromind install cline

Drops .clinerules/zeromind.md. Then open Cline's MCP UI (Command Palette → "Cline: MCP Servers") and paste the snippet the installer prints.

Zedcontext_server · extension
npx @origozero/zeromind install zed

Installs the ZeroMind Zed extension (with context_servers.zeromind) and drops the agent skill at .claude/skills/zeromind/.

ContinueVS Code / JetBrains · MCP
npx @origozero/zeromind install continue

Writes .continue/rules/zeromind.md and adds the MCP server to ~/.continue/config.yaml.

WindsurfCodeium · MCP
npx @origozero/zeromind install windsurf

Adds the ZeroMind section to AGENTS.md and registers the MCP server in ~/.codeium/windsurf/mcp_config.json.

Block Gooselocal · extension
npx @origozero/zeromind install goose

Adds the ZeroMind extension to ~/.config/goose/config.yaml and emits a goose:// deeplink you can share for one-click installs.

Manual setupany agent with MCP
{
  "mcpServers": {
    "zeromind": {
      "command": "npx",
      "args": ["-y", "@origozero/zeromind"],
      "env": { "ZEROMIND_IDE_NAME": "<your-agent-name>" }
    }
  }
}

Fallback for harnesses without a native ZeroMind plugin. Add to your agent's MCP config. Set ZEROMIND_IDE_NAME to your agent's name.