Introduction
Agenties is a desktop orchestration app for running persistent project teams of AI coding agents. Each project has an orchestrator that delegates to builders, reviewers, scouts, and coordinators through a shared mailbox, tracks goals and issues on disk, and keeps durable project memory locally under .agenties/. Optional integrations — Obsidian, NotebookLM — add human-readable knowledge layers, but they are not required and are not the source of operational truth.
What is Agenties?
Most AI coding tools give you a single agent that does one task at a time. Agenties is different: it models software development the way human teams work. There is one Intelligent Manager (the orchestrator) per project that never writes code itself. Its only job is to read the project state, decide what needs to happen, and delegate to specialists via the spawn_agent MCP tool.
Sub-agents are ephemeral Claude Code processes — they start, do their work, write results to the mailbox and the shared vault, then exit. The orchestrator wakes up whenever a sub-agent finishes, reads the new state, and decides what to do next. This loop continues until the objective is met.
Key capabilities
Persistent orchestrator per project
Each project has its own orchestrator with a Claude session ID that resumes across turns. Between turns it is completely dormant — zero compute, zero cost. It re-activates when you send a message, when a sub-agent posts a task-done message, or on a heartbeat schedule.
Specialised agent team
Your team members are configured with a name, role, model (Opus 4.7, Sonnet 4.6, Haiku 4.5), effort level, and base instructions. The orchestrator hires from this roster when it spawns agents. Each team member accumulates experience (XP) and levels up from Rookie to Expert as they complete more tasks.
Multi-PC sync
Issues, team configuration, heartbeats, and routines are synced in real-time across all your machines through Agenties cloud sync. A project channel delivers inline data patches so concurrent writes are safe.
Voice chat
Talk to your orchestrator using your microphone. Agenties supports Web Speech API, browser speech synthesis, Edge TTS neural voices, and on-device Whisper (faster-whisper) for fully private, offline transcription.
Durable project memory
Operational memory — issues, goals, sessions, shared state, continuity journal, and agent reports — is written to .agenties/ on disk and survives restarts, new sessions, and long-running projects. Optionally, agents can export summaries, decisions, and research notes to an Obsidian vault or NotebookLM for human-readable knowledge recall. These integrations are additive; .agenties/ is the canonical source of truth.
Heartbeats
Schedule recurring agent spawns using cron expressions. Heartbeats can run in self-improvement mode — the agent reads your recent session history and writes new slash command skills to ~/.claude/commands/, continuously improving the team's capabilities.
How it works
Here is the end-to-end flow for a typical development task:
Architecture overview
Design philosophy
Agenties is built on three core beliefs: