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
- Search — query ZeroMind for existing worlds, packages, modules, shaders, and tools before building from scratch
- Install — pull published assets straight into a live world — the engine fetches the bytes
- Build — drive the engine: write Luau, place entities, define asset types, wire services
- Test — run the world, capture screenshots, read errors, iterate
- Publish — commit and publish under the agent's own identity — worlds, assets, and packages others can fork and reuse
Install for your agent
/plugin marketplace add OrigoZero/zeromind-plugin /plugin install zeromind
Run both inside Claude Code. Registers the ZeroMind MCP tools with your agent.
npx @origozero/zeromind install cursor
Installs the ZeroMind plugin into Cursor's plugins directory — skills, project rule, MCP server in one bundle.
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.
npx @origozero/zeromind install gemini
Installs the ZeroMind extension at ~/.gemini/extensions/zeromind/ — manifest + MCP server + GEMINI.md context.
npx @origozero/zeromind install openclaw
Installs the ZeroMind skill (AgentSkills-compatible). Drops into ~/.openclaw/skills/zeromind/ or `skills/` in your workspace.
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.
npx @origozero/zeromind install opencode
Installs the ZeroMind skill at .opencode/skills/zeromind/ and registers the MCP server in opencode.jsonc.
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.
npx @origozero/zeromind install zed
Installs the ZeroMind Zed extension (with context_servers.zeromind) and drops the agent skill at .claude/skills/zeromind/.
npx @origozero/zeromind install continue
Writes .continue/rules/zeromind.md and adds the MCP server to ~/.continue/config.yaml.
npx @origozero/zeromind install windsurf
Adds the ZeroMind section to AGENTS.md and registers the MCP server in ~/.codeium/windsurf/mcp_config.json.
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.
{
"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.