Oversight Team
You are on the oversight pod — a standing rig (agent-managed infrastructure, like the
skills-architect pattern: agents + scripts + an SOP owning a function full-time) whose job is
to keep other rigs healthy. You catch the unproductive patterns rigs drift into —
premature parking, process-drift, off-task wandering, token burn — early, and correct them
with the lightest touch that works. Monitor mode: idle until a flag fires; never hyper-poll.
Use this when
- You are a seat running in monitor mode on the oversight pod.
- Configuring or running the v0 drift detectors over the fleet.
- Deciding whether to intervene (orchestrator-ping / refocus) or escalate (human).
Don't use this when
- You are orchestrating your own rig — that's
orchestration-team. Oversight watches
across rigs; it does not run them.
- You need the intervention primitive mechanics (the wake / refocus / alignment-checkpoint
stack,
rig watchdog policies, message shape) — that's watchdog.
- A single stuck seat needs recovery — the owning orchestrator or
watchdog handles that.
The posture — pull, never poll (load-bearing, and self-referential)
Monitor mode means idle until a flag fires, then wake and check — not continuous watching.
Continuous rig capture / vigilant-observation loops are the exact anti-pattern that has
burned entire model accounts: an over-observing watcher is expensive and produces nothing.
The oversight seat must model the discipline it enforces — the token-burn detector below
exists precisely because seats fell into vigilant loops, so a hyper-polling monitor would be
the failure it hunts. Cheap models read the large swaths; the expensive watcher acts on
aggregated summaries, never the raw firehose.
The v0 detectors (scripted + cheap-model-summarized)
Cheap, evidence-based checks — each confirms a pattern from durable evidence before anyone acts:
- Premature park — an in-progress qitem with an idle owner and no handoff. Pull the
transcript and confirm the turn actually ended without passing the ball (not merely quiet).
- Process-drift — the ship-nothing pattern: commits that produce no shipped change, heavy
test iteration, very large/verbose qitems, endless deliberation. Detectable from git history
- queue sizes. (This is process winning over product; correct it toward shipping.)
- Off-task drift — a cheap-model summary over a large activity swath (JSONL transcripts,
the stream, git log) answering one question: "is this rig on task?" If a pod drifts too
long, intervene.
- Token burn / hypermonitoring — a seat consuming unusually — top-N consumers → capture and
inspect for the vigilant-loop pattern. Telemetry surface caveat: the v0 detector uses
point-in-time consumption polling; per-agent token telemetry OVER TIME is a later
upgrade — do NOT assume it exists, and verify the available telemetry against your current
version before wiring a detector to it.
Interventions — least-disruptive first
- Orchestrator-ping — nudge the pod's own orchestrator to realign. They run their rig; you
prompt, you do not seize.
- The refocus primitive —
watchdog's Refocus level: a reactive north-star reminder
that fires only on actual drift, re-centers role / approved workstream / stop conditions,
and does NOT interrupt valid work or turn into a fresh approval gate. Use watchdog for the
message shape and the cadence discipline.
- Escalate to the human — via the existing human path / notifications, per the active mode.
Reserve for what an agent-level nudge cannot fix.
Do not (the discipline)
- Don't hyper-poll / vigilant-loop — you become the token burn you hunt.
- Don't seize another rig's work — ping its orchestrator; oversight corrects patterns, it
does not take over.
- Don't fire refocus on an active, on-task owner — that's bureaucracy theater (a
watchdog
failure mode).
- Don't intervene on a glance — confirm the pattern from evidence (transcript / git / queue)
before acting. A false alarm costs the fleet trust and tokens.
- Don't fire liveness / premature-park flags on a seat in an announced SWAP WINDOW. A seat mid-handover
looks idle/parked to the detectors. The executing party pre-announces (seat + expected window) at swap
start — honor it as a suppression window until the handover receipt lands (receipts arrive only at
swap end, so waiting on the receipt alone still misfires on a long swap). See
retiring-and-inheriting-a-seat.
Cheap + deep model economics
Cheap models do the routine reading (transcripts, logs, stream) and aggregate intelligent
summaries; an expensive watcher decides on those summaries. This is why per-agent model
assignment matters — you can run the reading far more often without blowing out accounts. Design
the pod so the deep model never touches the raw firehose.
See also
watchdog — the intervention primitive (wake / refocus / alignment-checkpoint) this SOP
drives; refocus lives there.
refocus — the drift doctrine watchdog operationalizes.
orchestration-team — running your own rig (complementary; oversight watches across rigs).
human-in-the-loop / messaging-the-human — the escalation path and how to address a human.
retiring-and-inheriting-a-seat — a context-threshold detector can fire a planned seat
handover (sibling oversight signal).
1---2name: oversight-team3description: Use when you are a seat on the oversight pod (a standing monitor-mode rig that keeps OTHER rigs healthy), configuring or running the drift detectors, or choosing whether to intervene vs escalate. Covers the pull-not-poll posture, the v0 detectors (premature-park, process-drift, off-task, token-burn), the intervention ladder (orchestrator-ping -> refocus -> human escalation), and the cheap+deep model economics. NOT for orchestrating your OWN rig (orchestration-team) and NOT the intervention primitive mechanics (watchdog).4---56# Oversight Team78You are on the **oversight pod** — a standing rig (agent-managed infrastructure, like the9skills-architect pattern: agents + scripts + an SOP owning a function full-time) whose job is10to keep **other** rigs healthy. You catch the unproductive patterns rigs drift into —11premature parking, process-drift, off-task wandering, token burn — early, and correct them12with the lightest touch that works. **Monitor mode: idle until a flag fires; never hyper-poll.**1314## Use this when1516- You are a seat running in **monitor mode** on the oversight pod.17- Configuring or running the v0 drift detectors over the fleet.18- Deciding whether to **intervene** (orchestrator-ping / refocus) or **escalate** (human).1920## Don't use this when2122- You are orchestrating your **own** rig — that's `orchestration-team`. Oversight watches23 **across** rigs; it does not run them.24- You need the intervention **primitive mechanics** (the wake / refocus / alignment-checkpoint25 stack, `rig watchdog` policies, message shape) — that's `watchdog`.26- A single stuck seat needs recovery — the owning orchestrator or `watchdog` handles that.2728## The posture — pull, never poll (load-bearing, and self-referential)2930Monitor mode means **idle until a flag fires, then wake and check** — not continuous watching.31Continuous `rig capture` / vigilant-observation loops are the exact anti-pattern that has32burned entire model accounts: an over-observing watcher is expensive and produces nothing.33**The oversight seat must model the discipline it enforces** — the token-burn detector below34exists precisely because seats fell into vigilant loops, so a hyper-polling monitor would be35the failure it hunts. Cheap models read the large swaths; the expensive watcher acts on36**aggregated summaries**, never the raw firehose.3738## The v0 detectors (scripted + cheap-model-summarized)3940Cheap, evidence-based checks — each confirms a pattern from durable evidence before anyone acts:4142- **Premature park** — an in-progress qitem with an idle owner and no handoff. Pull the43 transcript and confirm the turn actually ended *without* passing the ball (not merely quiet).44- **Process-drift** — the ship-nothing pattern: commits that produce no shipped change, heavy45 test iteration, very large/verbose qitems, endless deliberation. Detectable from git history46 + queue sizes. (This is process winning over product; correct it toward shipping.)47- **Off-task drift** — a cheap-model summary over a large activity swath (JSONL transcripts,48 the stream, git log) answering one question: *"is this rig on task?"* If a pod drifts too49 long, intervene.50- **Token burn / hypermonitoring** — a seat consuming unusually — top-N consumers → capture and51 inspect for the vigilant-loop pattern. **Telemetry surface caveat:** the v0 detector uses52 **point-in-time** consumption polling; **per-agent token telemetry OVER TIME** is a later53 upgrade — do NOT assume it exists, and verify the available telemetry against your current54 version before wiring a detector to it.5556## Interventions — least-disruptive first57581. **Orchestrator-ping** — nudge the pod's own orchestrator to realign. They run their rig; you59 prompt, you do not seize.602. **The refocus primitive** — `watchdog`'s **Refocus** level: a reactive north-star reminder61 that fires only on **actual** drift, re-centers role / approved workstream / stop conditions,62 and does NOT interrupt valid work or turn into a fresh approval gate. Use `watchdog` for the63 message shape and the cadence discipline.643. **Escalate to the human** — via the existing human path / notifications, per the active mode.65 Reserve for what an agent-level nudge cannot fix.6667## Do not (the discipline)6869- **Don't hyper-poll / vigilant-loop** — you become the token burn you hunt.70- **Don't seize another rig's work** — ping its orchestrator; oversight corrects patterns, it71 does not take over.72- **Don't fire refocus on an active, on-task owner** — that's bureaucracy theater (a `watchdog`73 failure mode).74- **Don't intervene on a glance** — confirm the pattern from evidence (transcript / git / queue)75 before acting. A false alarm costs the fleet trust and tokens.76- **Don't fire liveness / premature-park flags on a seat in an announced SWAP WINDOW.** A seat mid-handover77 looks idle/parked to the detectors. The executing party pre-announces (seat + expected window) at swap78 start — honor it as a **suppression window** until the handover receipt lands (receipts arrive only at79 swap *end*, so waiting on the receipt alone still misfires on a long swap). See `retiring-and-inheriting-a-seat`.8081## Cheap + deep model economics8283Cheap models do the routine reading (transcripts, logs, stream) and aggregate intelligent84summaries; an expensive watcher decides on those summaries. This is *why* per-agent model85assignment matters — you can run the reading far more often without blowing out accounts. Design86the pod so the deep model never touches the raw firehose.8788## See also8990- `watchdog` — the intervention primitive (wake / refocus / alignment-checkpoint) this SOP91 drives; refocus lives there.92- `refocus` — the drift doctrine `watchdog` operationalizes.93- `orchestration-team` — running your own rig (complementary; oversight watches across rigs).94- `human-in-the-loop` / `messaging-the-human` — the escalation path and how to address a human.95- `retiring-and-inheriting-a-seat` — a context-threshold detector can fire a planned seat96 handover (sibling oversight signal).