|
1 | 1 | # Tank |
2 | 2 |
|
| 3 | +> **Work in progress** — Tank is in early development. The protocol and |
| 4 | +> architecture are being designed; the Haskell implementation covers core CRDT |
| 5 | +> types, a VT100 emulator, standalone terminal mode, and a daemon skeleton. |
| 6 | +> APIs, commands, and interfaces will change. |
| 7 | +
|
3 | 8 | A protocol-centric workspace system with terminal multiplexing, per-pane |
4 | 9 | coding agents, and seamless session migration. |
5 | 10 |
|
6 | 11 | Named after Tank from The Matrix — the operator who loads programs, monitors |
7 | 12 | the crew, and runs the console. |
8 | 13 |
|
| 14 | +## Concept |
| 15 | + |
| 16 | +<!-- concept images generated by docs-site/docs/assets/concepts/render-concepts.py --> |
| 17 | + |
| 18 | +### Idle terminal |
| 19 | + |
| 20 | + |
| 21 | + |
| 22 | +### Per-pane coding agent (operator) |
| 23 | + |
| 24 | + |
| 25 | + |
| 26 | +The operator reads files, executes commands, and writes fixes — all inside the |
| 27 | +overlay: |
| 28 | + |
| 29 | + |
| 30 | + |
| 31 | +### Multi-pane layout |
| 32 | + |
| 33 | + |
| 34 | + |
| 35 | +Each pane gets its own independent operator: |
| 36 | + |
| 37 | + |
| 38 | + |
| 39 | +### Command palette |
| 40 | + |
| 41 | + |
| 42 | + |
| 43 | +### Per-project services |
| 44 | + |
| 45 | +Manage project daemons via Procfile: |
| 46 | + |
| 47 | + |
| 48 | + |
| 49 | +Live daemon logs with tree view: |
| 50 | + |
| 51 | + |
| 52 | + |
| 53 | +### Session persistence |
| 54 | + |
| 55 | +Detach and reattach — sessions survive disconnects: |
| 56 | + |
| 57 | + |
| 58 | + |
9 | 59 | ## Features (MVP) |
10 | 60 |
|
11 | 61 | - Terminal multiplexer with pane splits and sessions |
@@ -60,7 +110,11 @@ devshell managers) are **plugs** that communicate via a Cap'n Proto binary |
60 | 110 | protocol. State is synchronized using CRDTs with an epoch-tagged LWW grid and |
61 | 111 | spatial jitter buffer for terminal screen sync. |
62 | 112 |
|
63 | | -See [Protocol Design](docs-site/docs/protocol.md) and [Architecture](docs-site/docs/architecture.md) for details. |
| 113 | +See the [documentation site](docs-site/docs/index.md) for details: |
| 114 | + |
| 115 | +- [Architecture](docs-site/docs/architecture.md) |
| 116 | +- [Protocol Design](docs-site/docs/protocol.md) |
| 117 | +- [Terminal Screen Sync](docs-site/docs/screen-sync.md) |
64 | 118 |
|
65 | 119 | ## Origin |
66 | 120 |
|
|
0 commit comments