Overview
Archon is evolving from a Python-based MCP knowledge/task management tool into a TypeScript workflow engine for AI coding agents. The new codebase (currently at dynamous-community/remote-coding-agent) will replace the old code in this repository.
The old Python code will be archived on a branch (archive/v1-python-mcp) so it remains accessible, but main and dev will contain the new TypeScript/Bun codebase going forward.
Why
Same vision (AI command center), completely new implementation. Keeping this repo preserves the community (13.8k+ stars), the name, and the momentum. The new Archon packages AI coding workflows as YAML files and runs them anywhere — CLI, Web UI, Slack, Telegram, GitHub, Discord.
Migration Checklist
Phase 1: Repository Migration
Phase 2: License & Reference Updates
Phase 3: Windows Support
Phase 4: Custom Domain + Install URLs
Phase 5: Documentation Site (Astro Starlight)
Phase 6: GitHub Actions Updates
Phase 7: README & Public Launch Polish
Phase 8: Post-Migration
Install Methods (Target State)
# macOS / Linux
curl -fsSL https://archon.diy/install | bash
# Windows (PowerShell)
irm https://archon.diy/install.ps1 | iex
# Homebrew (macOS / Linux)
brew install coleam00/archon/archon
# Docker
docker run --rm -v "$PWD:/workspace" ghcr.io/coleam00/archon:latest workflow list
# From source
git clone https://github.com/coleam00/Archon && cd Archon && bun install
Tech Stack (New Archon)
- Runtime: Bun + TypeScript
- Database: SQLite (default) / PostgreSQL (optional)
- Frontend: React 19 + Vite + Tailwind v4 + shadcn/ui
- AI: Claude Code SDK + Codex SDK
- Adapters: CLI, Web UI, Slack, Telegram, GitHub, Discord
- Docs: Astro Starlight at
archon.diy
Overview
Archon is evolving from a Python-based MCP knowledge/task management tool into a TypeScript workflow engine for AI coding agents. The new codebase (currently at
dynamous-community/remote-coding-agent) will replace the old code in this repository.The old Python code will be archived on a branch (
archive/v1-python-mcp) so it remains accessible, butmainanddevwill contain the new TypeScript/Bun codebase going forward.Why
Same vision (AI command center), completely new implementation. Keeping this repo preserves the community (13.8k+ stars), the name, and the momentum. The new Archon packages AI coding workflows as YAML files and runs them anywhere — CLI, Web UI, Slack, Telegram, GitHub, Discord.
Migration Checklist
Phase 1: Repository Migration
archive/v1-python-mcpbranch from currentmainarchive/v1-stablebranch from currentstablemainanddevarchive/*)archon.diy), and topicsPhase 2: License & Reference Updates
dynamous-community/remote-coding-agent→coleam00/Archon(~56 occurrences)ghcr.io/dynamous-community/remote-coding-agent→ghcr.io/coleam00/archon.claude/skills/and docscoleam00/homebrew-archondynamous-community/remote-coding-agentas read-onlyPhase 3: Windows Support
scripts/install.ps1)scripts/install.shto point Windows/MINGW users to PowerShell installerPhase 4: Custom Domain + Install URLs
archon.diyDNS (Cloudflare)archon.diy/install→ install.sh andarchon.diy/install.ps1→ install.ps1archon.diyroot to GitHub Pages (docs site)curl -fsSL https://archon.diy/install | bashworks end-to-endirm https://archon.diy/install.ps1 | iexworks end-to-endPhase 5: Documentation Site (Astro Starlight)
docs/workspace package (@archon/docs)docs/*.mdcontent into Starlight pagesstarlight-openapiplugin for API reference (from/api/openapi.json).github/workflows/deploy-docs.ymlfor GitHub Pages deploymentdocs/public/CNAMEwitharchon.diyPhase 6: GitHub Actions Updates
release.yml— add Windows binary, update URLs, add--minify --bytecodepublish.yml— new Docker image namespacetest.yml— branch triggers (devnotdevelop)deploy-docs.yml— Starlight to GitHub Pages on main pushPhase 7: README & Public Launch Polish
archon.diydocs sitePhase 8: Post-Migration
dynamous-community/remote-coding-agentInstall Methods (Target State)
Tech Stack (New Archon)
archon.diy