惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
IT之家
IT之家
B
Blog RSS Feed
罗磊的独立博客
GbyAI
GbyAI
博客园 - Franky
Y
Y Combinator Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News
博客园 - 聂微东
N
Netflix TechBlog - Medium
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
U
Unit 42
博客园 - 叶小钗
Jina AI
Jina AI
MyScale Blog
MyScale Blog
雷峰网
雷峰网
B
Blog
Hugging Face - Blog
Hugging Face - Blog
Blog — PlanetScale
Blog — PlanetScale
Recent Announcements
Recent Announcements
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - alekseyrozh/openclawdex
alekseyrozh · 2026-04-19 · via Hacker News: Show HN

OpenClawdex icon

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.

OpenClawdex screenshot

Features

  • No separate login — Uses your existing claude and codex CLI auth; no API keys to paste, no OAuth flow, your Max / ChatGPT plan just works
  • Two agents, one UI — Run Claude Code and OpenAI Codex side by side, switch the model and reasoning effort
  • Parallel threads — Spawn as many concurrent agent sessions as you want; each runs in its own subprocess
  • Project organization — Group threads by project with multiple folders per project; drag-and-drop threads between projects
  • Pinned & archived threads — Keep important threads pinned at the top, archive ones you're done with
  • Persistent history — Threads survive restarts; Codex history is rebuilt from ~/.codex/sessions rollouts, Claude history via the Agent SDK
  • Interactive prompts — Inline cards for tool approvals, plan approvals, and the agent's AskUserQuestion requests
  • Open in your editor — Click any file path or diff to jump straight into VS Code, Cursor or other editor; no built-in diff sidebar to fight with
  • Permission modes — Switch between ask, plan, accept-edits, or bypass-permissions per thread
  • Native macOS feel — Vibrancy sidebar, hidden-inset title bar, traffic lights, dark theme with blue accent

Install

  1. Download the latest .dmg from the Releases page
  2. Double-click the downloaded .dmg and drag the OpenClawdex app into the Applications folder
  3. Launch OpenClawdex from the Applications folder or Launchpad

Prerequisites

OpenClawdex spawns CLI agents as subprocesses, so you need at least one installed and authenticated:

  • Claude Codenpm install -g @anthropic-ai/claude-code then claude auth login
  • OpenAI Codexnpm install -g @openai/codex then codex login

You 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.

Build from source

Requirements

  • Node.js 20+
  • pnpm 9+

Development

# 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.

Production build

# Build everything and package the macOS .dmg
pnpm dist

Output goes to apps/desktop/release/.

Architecture

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.

Contributing

  1. Fork the repo
  2. Create a feature branch (git checkout -b my-feature)
  3. Make your changes
  4. Run pnpm dev:desktop and verify everything works
  5. Commit and push
  6. Open a pull request

License

MIT