In the Navy, a shellback is a sailor who’s crossed the equator — someone who’s been through the ceremony and earned the standing. On our GPU rig, Shellback is the watchstander: the always-on ops layer that every AI client reports to before touching the hardware.
The problem
A self-hosted AI rig is a small data center with none of the staff. Three GPUs, multiple model servers, an image pipeline, tunnels, health timers — and every tool (Claude, Cursor, custom agents) wanting to use them at once with no shared picture of what’s running, what’s loaded, and what’s about to fall over.
The failure mode isn’t dramatic. It’s two clients loading two 32B models onto the same card, a stuck queue nobody notices, an experiment that quietly eats the VRAM a paying job needed.
The fix: one watchstander, every client
Shellback lives on the rig’s MCP server. Instead of each AI client owning its own fragile view of the hardware, they all call the same tools and get the same answers:
Ask any client “what’s the rig doing?” and the answer comes from the same gpu_status. Ask it to remember an operational fact and it lands in the same shared memory the next client reads. The rig stops being three GPUs with five opinions and becomes one system with one log.
Why it’s an agent and not a dashboard
Dashboards answer questions you remembered to ask. A watchstander volunteers what you need to know: utilization before you queue a job, the lane that’s already loaded with the model you want, the health state before you ship work to a dead endpoint. Putting that behind MCP means the agents consume it mid-task — no human polling required.
What earned its keep
- Shared state beats smart clients. Every “my client tracks the rig itself” scheme rotted within a week. The single source of truth didn’t.
- Boring tools compound. Status, memory, health, generate — none is impressive alone. Together they’re why a five-terminal agent fleet can share three GPUs without stepping on each other.
- Name things like you mean it. Calling the ops layer Shellback set its personality: terse, been-through-it, allergic to ceremony. Prompts inherit culture.