
























The open source AI coding agent orchestrator.
Lightweight desktop UI for orchestrating Claude Code and OpenAI Codex coding agents through their CLIs, with a native Mac feel. No separate login – it uses your existing CLI auth.
claude and codex CLI auth; no API keys to paste, no OAuth flow, your Max / ChatGPT plan just works~/.codex/sessions rollouts, Claude history via the Agent SDKAskUserQuestion requests.dmg from the Releases page.dmg and drag the OpenClawdex app into the Applications folderOpenClawdex spawns CLI agents as subprocesses, so you need at least one installed and authenticated:
npm install -g @anthropic-ai/claude-code then claude auth loginnpm install -g @openai/codex then codex loginYou can install either or both; the model picker greys out whichever provider isn't available. No API keys needed — the app uses your existing CLI logins.
# Install dependencies pnpm install # Start the Vite dev server + Electron pnpm dev:desktop
The Electron window loads from http://localhost:3000. Hot reload works for the web app.
# Build everything and package the macOS .dmg
pnpm distOutput goes to apps/desktop/release/.
pnpm monorepo with three packages:
apps/
web/ React + Vite + Tailwind v4 frontend
desktop/ Electron shell + CLI agent integration
packages/
shared/ Zod schemas for IPC messages
The Electron main process spawns claude (via Agent SDK with --output-format stream-json) and codex (via app-server JSON-RPC) as subprocesses, bridging their output to the React UI over IPC.
git checkout -b my-feature)pnpm dev:desktop and verify everything works此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。