< SHELBY/ · FIELD OUTPUT v2026.09
Tooling · INTERNAL SYSTEM

Parallel Dev Environment

Named URLs instead of remembered ports, and a fully isolated environment per branch so parallel agents stop colliding.

LIVE INTERNAL Dev Env
SYSTEM NOTEThe problem it solves

Several agents working on the same codebase at once is where the leverage is — and also where two of them bind the same port, share one database, and corrupt each other's state. Remembering which of fifteen services lives on which port number is its own small tax.

PROCESS RAILHow it works
[01]
Branch

a new worktree per line of work

[02]
Isolate

own ports, database, environment, session

[03]
Name

a stable readable URL, not a port number

[04]
Run

agents work in parallel without contention

[05]
Reap

the environment disappears with the branch

SYSTEM NOTEUnder the hood
FIELD NOTEWhy it matters

Parallel agents are only faster if they are not fighting. Isolation is what converts concurrency into throughput.