Codex (OpenAI)
Built-inOpenAI's Codex agent. Blueprint Stack communicates with Codex through the codex-acp adapter, which bridges the Codex CLI with the JSON-RPC protocol over stdio.
npm install -g @openai/codexnpm install -g @zed-industries/codex-acpThe ACP adapter bridges the Codex CLI with Blueprint Stack's JSON-RPC protocol. The executable name is codex-acp.
codex loginexport OPENAI_API_KEY=your-key-hereGet an API key from platform.openai.com/api-keys.
codex --version && codex-acp --helpBoth commands should succeed. If codex-acp is not found, ensure your npm global bin directory is in your PATH.
- Streaming -- Responses stream in real time into the chat panel.
- Sandboxing -- Codex runs code in a sandboxed environment by default for safety.
- Auto-detection -- Blueprint Stack automatically detects the codex-acp executable from your PATH, npm global bin, bun, cargo, volta, fnm, asdf, mise, scoop, and Homebrew directories.
- Node.js 18+
- OpenAI API key with access to GPT-4 / o3 / o4-mini
- Codex CLI installed (codex)
- ACP adapter installed globally (codex-acp)