Fully local, distributed, memory-augmented, autonomous coding team
Designer → Coder → Tester → Reviewer crew with per-project memory and code navigation.
- 100% offline after setup
- No hardcoded IPs, ports, or passwords — all in
.env - True multi-project with isolated Neo4j + Qdrant
- Smart model auto-selection (cached)
- Git-based —
git pullupdates everything - One-command project creation from template
# 1. Clone & configure
git clone https://github.com/yourname/offline-coding-ai.git ~/offline-coding-ai
cd ~/offline-coding-ai
cp .env.example .env
nano .env # Edit IPs, passwords, models
nano config/servers.yaml # Add your nodes
# 2. Install
./setup.sh
# 3. Create project
./src/create-project.sh dashboard
# 4. Run
./src/run-project.sh# 1. Open PowerShell as Admin
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
# 2. Run
git clone https://github.com/yourname/offline-coding-ai.git $env:USERPROFILE\offline-coding-ai
cd $env:USERPROFILE\offline-coding-ai
.\setup.ps1
# 3. Create & run
.\src\create-project.ps1 hello
@'
{"description": "Hello World FastAPI + HTMX page with dark mode"}
'@ | Out-File -Encoding utf8 projects\hello\tasks.json
.\src\run-project.ps1