Move documentation files into a clearer structure: - concepts/: core ideas (convoy, identity, molecules, polecat-lifecycle, propulsion) - design/: architecture and protocols (architecture, escalation, federation, mail, etc.) - examples/: demos and tutorials (hanoi-demo) - overview.md: renamed from understanding-gas-town.md Remove outdated/superseded docs and update reference.md. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
131 lines
4.8 KiB
Markdown
131 lines
4.8 KiB
Markdown
# Gas Town Architecture
|
|
|
|
Technical architecture for Gas Town multi-agent workspace management.
|
|
|
|
## Two-Level Beads Architecture
|
|
|
|
Gas Town uses a two-level beads architecture to separate organizational coordination
|
|
from project implementation work.
|
|
|
|
| Level | Location | Prefix | Purpose |
|
|
|-------|----------|--------|---------|
|
|
| **Town** | `~/gt/.beads/` | `hq-*` | Cross-rig coordination, Mayor mail, agent identity |
|
|
| **Rig** | `<rig>/mayor/rig/.beads/` | project prefix | Implementation work, MRs, project issues |
|
|
|
|
### Town-Level Beads (`~/gt/.beads/`)
|
|
|
|
Organizational chain for cross-rig coordination:
|
|
- Mayor mail and messages
|
|
- Convoy coordination (batch work across rigs)
|
|
- Strategic issues and decisions
|
|
- **Town-level agent beads** (Mayor, Deacon)
|
|
- **Role definition beads** (global templates)
|
|
|
|
### Rig-Level Beads (`<rig>/mayor/rig/.beads/`)
|
|
|
|
Project chain for implementation work:
|
|
- Bugs, features, tasks for the project
|
|
- Merge requests and code reviews
|
|
- Project-specific molecules
|
|
- **Rig-level agent beads** (Witness, Refinery, Polecats)
|
|
|
|
## Agent Bead Storage
|
|
|
|
Agent beads track lifecycle state for each agent. Storage location depends on
|
|
the agent's scope.
|
|
|
|
| Agent Type | Scope | Bead Location | Bead ID Format |
|
|
|------------|-------|---------------|----------------|
|
|
| Mayor | Town | `~/gt/.beads/` | `hq-mayor` |
|
|
| Deacon | Town | `~/gt/.beads/` | `hq-deacon` |
|
|
| Dogs | Town | `~/gt/.beads/` | `hq-dog-<name>` |
|
|
| Witness | Rig | `<rig>/.beads/` | `<prefix>-<rig>-witness` |
|
|
| Refinery | Rig | `<rig>/.beads/` | `<prefix>-<rig>-refinery` |
|
|
| Polecats | Rig | `<rig>/.beads/` | `<prefix>-<rig>-polecat-<name>` |
|
|
|
|
### Role Beads
|
|
|
|
Role beads are global templates stored in town beads with `hq-` prefix:
|
|
- `hq-mayor-role` - Mayor role definition
|
|
- `hq-deacon-role` - Deacon role definition
|
|
- `hq-witness-role` - Witness role definition
|
|
- `hq-refinery-role` - Refinery role definition
|
|
- `hq-polecat-role` - Polecat role definition
|
|
|
|
Each agent bead references its role bead via the `role_bead` field.
|
|
|
|
## Agent Taxonomy
|
|
|
|
### Town-Level Agents (Cross-Rig)
|
|
|
|
| Agent | Role | Persistence |
|
|
|-------|------|-------------|
|
|
| **Mayor** | Global coordinator, handles cross-rig communication and escalations | Persistent |
|
|
| **Deacon** | Daemon beacon - receives heartbeats, runs plugins and monitoring | Persistent |
|
|
| **Dogs** | Long-running workers for cross-rig batch work | Variable |
|
|
|
|
### Rig-Level Agents (Per-Project)
|
|
|
|
| Agent | Role | Persistence |
|
|
|-------|------|-------------|
|
|
| **Witness** | Monitors polecat health, handles nudging and cleanup | Persistent |
|
|
| **Refinery** | Processes merge queue, runs verification | Persistent |
|
|
| **Polecats** | Ephemeral workers assigned to specific issues | Ephemeral |
|
|
|
|
## Directory Structure
|
|
|
|
```
|
|
~/gt/ Town root
|
|
├── .beads/ Town-level beads (hq-* prefix)
|
|
│ ├── config.yaml Beads configuration
|
|
│ ├── issues.jsonl Town issues (mail, agents, convoys)
|
|
│ └── routes.jsonl Prefix → rig routing table
|
|
├── mayor/ Mayor config
|
|
│ └── town.json Town configuration
|
|
└── <rig>/ Project container (NOT a git clone)
|
|
├── config.json Rig identity and beads prefix
|
|
├── mayor/rig/ Canonical clone (beads live here)
|
|
│ └── .beads/ Rig-level beads database
|
|
├── refinery/rig/ Worktree from mayor/rig
|
|
├── witness/ No clone (monitors only)
|
|
├── crew/<name>/ Human workspaces (full clones)
|
|
└── polecats/<name>/ Worker worktrees from mayor/rig
|
|
```
|
|
|
|
### Worktree Architecture
|
|
|
|
Polecats and refinery are git worktrees, not full clones. This enables fast spawning
|
|
and shared object storage. The worktree base is `mayor/rig`:
|
|
|
|
```go
|
|
// From polecat/manager.go - worktrees are based on mayor/rig
|
|
git worktree add -b polecat/<name>-<timestamp> polecats/<name>
|
|
```
|
|
|
|
Crew workspaces (`crew/<name>/`) are full git clones for human developers who need
|
|
independent repos. Polecats are ephemeral and benefit from worktree efficiency.
|
|
|
|
## Beads Routing
|
|
|
|
The `routes.jsonl` file maps issue ID prefixes to rig locations (relative to town root):
|
|
|
|
```jsonl
|
|
{"prefix":"hq-","path":"."}
|
|
{"prefix":"gt-","path":"gastown/mayor/rig"}
|
|
{"prefix":"bd-","path":"beads/mayor/rig"}
|
|
```
|
|
|
|
Routes point to `mayor/rig` because that's where the canonical `.beads/` lives.
|
|
This enables transparent cross-rig beads operations:
|
|
|
|
```bash
|
|
bd show hq-mayor # Routes to town beads (~/.gt/.beads)
|
|
bd show gt-xyz # Routes to gastown/mayor/rig/.beads
|
|
```
|
|
|
|
## See Also
|
|
|
|
- [reference.md](../reference.md) - Command reference
|
|
- [molecules.md](../concepts/molecules.md) - Workflow molecules
|
|
- [identity.md](../concepts/identity.md) - Agent identity and BD_ACTOR
|