Engineering System designed
GPUaaS is not built by treating chat as the system of record. The delivery system is explicit:
Fairway = durable work state
Provider session = replaceable execution attachment
Desktop thread = control and review surface
tmux / CLI = trusted execution lane
Utilities = deterministic evidence producers
This matters because a large part of the program is non-code engineering: contracts, design packets, evidence models, UAT flow coverage, deploy automation, review boundaries, and release-readiness proof.
What This Proves
| Audience | What this page should prove |
|---|---|
| Architecture | Work is lane-owned and bound to durable system state, not chat memory. |
| Security / governance | AI-assisted execution is controlled, reviewable, and evidence-backed. |
| Engineering | There is a practical operating model for shipping work without losing state across tools or sessions. |
| Operations | Trusted execution and unattended loops move into tmux/CLI utilities rather than ad hoc manual polling. |
Core Operating Rule
Durable lane, replaceable provider attachment.
The Fairway task is durable. Codex, tmux, shell, CI monitors, and browser sessions are interchangeable execution surfaces attached to that task.
Execution Surfaces
| Surface | Used for | Not trusted as authority for |
|---|---|---|
| Desktop thread | architecture decisions, review, screenshots, browser/product checks, coordination | unattended deploy loops, repeated CI polling, durable task truth |
| tmux / SSH / Codex CLI | trusted tests, git boundaries, deploy/readback loops, long-running monitors | task approval, review authority, release authority |
| Fairway | task state, ownership, checkpoints, evidence, review, handoff, merge-ready | implementation itself |
| Local deterministic utilities | CI monitoring, deploy/readback packets, UAT summaries, gate selection | independent judgment, release approval, review substitution |
Normal Delivery Loop
Why GPUaaS Uses This Model
The system exists to reduce three failure modes:
- work disappearing into provider chat
- token burn from repeated polling and packet shaping
- ceremonial review that does not improve defect discovery
The response is:
- keep task state in Fairway;
- move repeated loops into utilities;
- use lightweight review by default;
- escalate review only at real risk boundaries.
Lane Model
Work is organized by shared-service or ownership lane, not by whichever agent happened to touch the code.
Examples:
platform-iamplatform-opsrelease-envfrontend-portalprovider-runtimebilling-audit
This keeps ownership, review routing, and closeout coherent even when multiple execution surfaces are involved.
Trusted Execution Rule
Desktop threads can still hit sandbox limits on .git or long-running commands.
When a task is already scoped and approved, execution moves to a trusted tmux
or CLI lane instead of waiting on Desktop friction.
Typical tmux-lane work:
- staging/commit/push closeout;
- CI watch and failure classification;
- deploy and rollout observation;
- repeated smoke/UAT reruns;
- reconciliation and release verification.
Deterministic Utility Layer
Repeated loops should produce stable artifacts, not more prose.
Examples of utility outputs:
- CI monitor packets
- deploy readback packets
- UAT summary matrices
- gate-selection summaries
- release verification summaries
- Fairway evidence command bundles
This is how the program stops spending expensive model cycles on routine observation and formatting.
Review Philosophy
GPUaaS does not treat every child task as a full-matrix review target.
The rule is:
Use the lightest review shape that still reduces real risk.
Full-matrix review returns only at real exits:
- live or prod mutation
- deploy or release approval
- break-glass / credential action
- public exposure
- sensitive-operation enforcement
- external compliance or customer claims
What Counts As Engineering Output
The portal should make all of these visible as first-class work:
- API and event contracts
- UX and flow coverage
- architecture packets
- runbooks and operational models
- evidence and readiness models
- CI/CD and deploy automation
- review/governance rules
- reproducible utilities and closeout tooling
The code is only one part of the delivery system.