Signal Desk
Live
The private operator briefing surface. It handles free-text
intake, explicit quick actions, and status updates without
becoming the execution engine itself.
- Plain-language requests can become tracked intake tickets
- Pushes updates back when state changes matter
- Acts as the operator surface, not the execution engine itself
Router + Guardrails
Live
The pair that decides what may run, when it may run, and when the
system should stop instead of improvising.
- Router manages queue admission and bounded dispatch
- Guardian enforces maintenance mode and preflight checks
- Together they form the deterministic operating backbone
Briefing Desk
Live
Private operator messaging surface. It is the human interface
layer, not a catch-all execution lane.
- Receives commands and sends private updates
- Restricted to allowlisted chats
- Best for remote visibility and controlled triggers
Platform Preflight
Runnable
Runs the daily platform preflight: tools, credentials, APIs,
local services, and relay reachability.
- Checks key CLIs, auth, and secrets before normal work
- Verifies internal forge and operator-briefing health
- Confirms the relay path is behaving
Relay Lane
Runnable
Controlled remote lane for the always-on relay. Today it performs
allowlisted health checks only.
- No arbitrary shell by default
- Bounded access path only
- Reports CPU, RAM, uptime, and thermal data
DebuggerAgent
Runnable
Focused verification lane for fast local checks. It exists to
shorten feedback loops and keep failures explicit.
- Runs `pytest` and `ruff` in a bounded window
- Summarizes pass/fail instead of hiding behind noise
- Feeds the same guardrail mindset as the other lanes
LinkedIn Engine
Runnable
A bounded content engine for evidence-anchored drafting,
deterministic review gates, and operator approval before anything
is promoted.
- Generates multiple draft variants under explicit constraints
- Uses evidence and gate checks before approval
- Built as a supervised worker, not an unsandboxed autoposter
TrackerAgent
Live
The record-keeping lane for job opportunities, statuses, notes,
and operational context.
- Local-first CLI around a SQLite tracker
- Designed for deterministic writes and compact auditability
- Acts as the durable system-of-record layer
Triage, Scanner, Tailor, Intake
Planned
These lanes are defined because the ownership is clear, but they
are intentionally not overclaimed as finished products.
- Triage: normalize and claim intake before execution
- Scanner: discovery and queueing
- Tailor: role-specific artifact generation
- Intake: turn rough ideas into structured next actions