Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

213 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ADE

A self-hosted, OS-agnostic agentic development environment. ADE is a local-first, single-user system where you build a roster of persistent coding agents and work alongside them in the terminal. Every agent is a durable identity — its own name, photo, git repository, runtime CLI, and long-lived memory — not a throwaway chat session. You come back to the same agent tomorrow and it remembers what it learned today.

Fork notice: This repository (boostedchaos/ade) is a fork of per-simmons/damon-ade that adds Windows 11 x64 support, and additionally incorporates the client–server restructuring and quality-of-life improvements from CameronCrow/papyrus-ade (renamed back to ADE). It is not an official upstream release.

Beyond the desktop app, the codebase is restructured around one move: one server, any screen. A headless ade-server daemon runs where your repos and coding CLIs live; every device — Windows laptop, Mac, iPhone — is just a browser pointed at it.

┌───────────────── your devices ─────────────────┐
│  Windows laptop      Mac           iPhone      │
│    Chrome/Edge      Safari       Safari (PWA)  │
└─────────┬──────────────┬──────────────┬────────┘
          │   HTTPS + WSS · tRPC · token auth
          ▼
  ade-server  (Node daemon on one machine)
  ├─ agents, teams, sessions, files, settings
  ├─ agent core: repos/worktrees, persistent memory
  └─ terminal-host daemon (node-pty)
       └─ claude / codex / opencode CLIs

Status: The Electron desktop app (macOS + Windows 11 x64) is the primary, shipping form factor. The client–server components (ade-server + web UI) are functional and under active development; their design history lives in planning/.

Download (desktop app)

Windows 11 x64 users can download the installer or portable zip from the boostedchaos/ade releases. The Windows build is currently unsigned, so Windows SmartScreen will require More info → Run anyway.

macOS (Apple Silicon) users can download the DMG from the mac-v* releases on the same releases page. The mac build is ad-hoc signed (not notarized): on first launch, right-click → Open, or allow it under System Settings → Privacy & Security. Verify downloads against the release's SHA256SUMS.txt.

Release channels in this repo: windows-v* (Windows desktop), mac-v* (macOS desktop), v* (headless ade-server).

The product

The interface is a two-level left rail. Teams group your work; inside each team live Agents. Selecting an agent opens its workspace: a strip of session tabs, each a real terminal running the agent's coding CLI inside that agent's own git worktree. A model bar under the tabs lets you spawn a session on a different model without leaving the agent. On the right, the Agent Files panel shows the agent's memory growing as it works.

ADE runs whatever CLI coding agents you already have installed. Claude Code, OpenAI's Codex, and OpenCode are first-class runtimes. The model bar can also launch sessions on Kimi K2.7, MiniMax M3, and GLM 5.2 through a single OpenRouter key you enter once, in-app. Nothing here is a hosted service — your code, your keys, and your agents' memory all stay on your machine.

Terminal sessions live in a detached daemon, not in the app: they survive app restarts, browser disconnects, and (by design) a phone that locks its screen mid-session.

Mission Control (new in 0.4.0) gives the app a command line. The ade tool — already on the PATH of every terminal pane ADE opens — creates and splits panes, types into terminals and reads their screens, drives browser panes, and keeps per-workspace todos. ADE tracks each agent's state from its own hooks — working, waiting on you, idle — and a pane whose agent is blocked raises a ring and a badge you can jump straight to. There is also an experimental ade claude-teams launcher (macOS) that runs Claude Code's agent-teams feature with each teammate materialized as a real pane you can watch. See docs/mission-control.md and CHANGELOG.md.

Prerequisites

ADE orchestrates coding CLIs; it does not bundle them. On the machine that runs the server you need:

  • Git — required. Each agent gets its own repository or worktree.

  • At least one agent CLI. Claude Code is recommended, because it also powers the Kimi, MiniMax, and GLM sessions from the model bar:

    npm i -g @anthropic-ai/claude-code
    npm i -g @openai/codex        # optional: OpenAI Codex sessions
    npm i -g opencode-ai          # optional: OpenCode runtime
  • Node.js LTS — runs ade-server (and installs the CLIs above).

  • An OpenRouter API key — only for the open-model sessions; entered once, in-app, encrypted at rest.

Build from source

Requires Bun 1.0+ (as package manager/tooling).

git clone https://github.com/boostedchaos/ade.git
cd ade
bun install

# Desktop app (current form factor, macOS):
cd apps/desktop
bun run compile:app        # builds main + preload + renderer into dist/
bunx electron .            # launches the built app

The headless server (apps/server) and browser UI (apps/webui) land in Phases 1–2 of the plan.

No-admin install (Windows)

Everything ADE itself needs installs per-user — no elevation. The catch is picking the right installer at each step; the machine-wide variants all want admin.

  1. Git — use the per-user installer (or portable zip), then:

    git config --global core.longpaths true

    The longpaths flag is required: agent checkouts live under ~/.ade/agents/<uuid>/worktree/, and that prefix pushes deep repos past Windows' 260-char path limit. This git setting is enough — the system-wide registry toggle is not needed.

  2. Node.js 24 (LTS) — install via fnm or extract the plain Node zip into a user directory. Avoid the Node MSI and nvm-windows: both need admin (nvm-windows symlinks into C:\Program Files).

  3. Bun — the official installer is user-level (~/.bun):

    irm bun.sh/install.ps1 | iex
  4. Dependencies — from the repo root:

    bun install --ignore-scripts

    Then install better-sqlite3's prebuilt binding manually (bun's --ignore-scripts skips it):

    cd (ls node_modules\.bun\better-sqlite3@*\node_modules\better-sqlite3).FullName
    npx prebuild-install

    node-pty ships its prebuilds inside the package — no step needed. Everything lands in the project; nothing touches system paths. (This holds because Windows prebuilds exist for both native modules on Node 24 — if one were ever missing, compiling from source would need VS Build Tools, which does want admin.)

  5. Build and run — the server and daemon must run under Node, not bun:

    cd apps\webui;  bun run build          # ~2 min
    cd ..\server;   bun run scripts\build.ts
    node dist\server.cjs serve --port 7777

    Open http://localhost:7777 and enter the token from ~\.ade\token. Binding to loopback on an unprivileged port means no firewall prompt and no elevation; ConPTY is built into Windows 10 1809+. The claude CLI installs per-user too (npm i -g under your user-writable Node).

What still needs admin (both outside ADE): installing Tailscale for remote access (network driver), and approving the Windows Firewall prompt if you bind the server to a LAN address instead of loopback. Localhost-only ADE runs fully unelevated.

How memory works

Every ADE agent keeps a persistent, self-curated memory, adapted from the Hermes agent. The design is deliberately simple: plain markdown files the agent reads at the start of every session and writes back to as it learns. The files live outside the git worktree, so they survive branch and worktree churn and are never committed to your code.

  • AGENT.md — a short identity and operating brief.
  • USER.md — a profile of you: name, preferences, communication style, hard rules.
  • MEMORY.md — the agent's own notes: conventions, tool quirks, lessons learned, plus an index into longer topic files.
  • Skills — reusable, multi-step procedures the agent writes for itself, each a SKILL.md whose body loads only when relevant.

A write-back protocol travels with the memory (when to save, when to skip, consolidate over append), and a session-end reflection loop prompts the agent to update its memory before finishing. The same canonical files feed every runtime through thin, auto-generated bridge files, so you can switch an agent's runtime without losing its memory. See docs/memory.md for the full design.

Remote access

The blessed path is Tailscale: tailscale serve in front of the server port gives TLS and tailnet-only access while the server stays bound to localhost. A LAN + Caddy alternative is documented in the plan. Never expose the server to the raw internet.

Current deployment (cameronspc)

The live server runs on cameronspc and is reachable tailnet-wide at:

https://cameronspc.tailfcc279.ts.net:8445

  • Set up with tailscale serve --bg --https=8445 http://127.0.0.1:7777 (:443 was already taken by another service; --bg persists across reboots). Disable with tailscale serve --https=8445 off.
  • Auth token lives at ~\.ade\token on cameronspc.
  • The server itself is a detached process — after a reboot, restart it from the repo: cd apps\server; node dist\server.cjs serve --port 7777.
  • On iPhone: connect Tailscale, open the URL in Safari, paste the token, then Share → Add to Home Screen for the PWA.

License

ADE is a modified derivative of ADE, which is itself a modified derivative of Superset (Copyright Superset, Inc.). It is distributed under the Elastic License 2.0 — see LICENSE.md, with the modification chain documented in NOTICE. Third-party dependency notices are in THIRD-PARTY-NOTICES.md. The agent memory architecture is adapted from NousResearch/hermes-agent (MIT).

Under ELv2 you may use, modify, and self-host ADE freely (including distributing it for others to self-host). You may not offer ADE to third parties as a hosted or managed service.

About

A local-first, cross-platform agentic development environment

Resources

Code of conduct

Contributing

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages