fleetops
Installation
SKILL.md
FleetOps Skill
FleetOps is the fleet's single source of truth for agent state, events, wakes, and journal. The CLI (fleetops) reads and writes a shared SQLite store at ~/.fleetops/fleet.db and replaces the old workflow of grepping every agent's .servitor/journal.md by hand.
1 · What FleetOps Is
- Centralized state store — one
~/.fleetops/fleet.dbacross the whole fleet. Every agent's wakes, events, artifacts, and journal stanzas land in the same tables. - Harvester-fed + agent-fed — the
fleetops harvestloop ingests from.servitor/state.json,.servitor/journal.md,fleetmail, and knowledge trees (.servitor/sops/,katas/,dreams/,memory/,doctrine.md,standards.md). Agents write journal stanzas directly viafleetops journal add. - Cross-agent queries — one verb answers "what's Daystrom been up to?" or "which agents touched fleetmail this week?"
- DB is authoritative, markdown is a mirror —
.servitor/journal.mdstill renders for human reading, but the DB owns the truth.
2 · Why You Care
- "Where did I solve X?" — one
fleetops search-knowledgecall, instead of grepping 16 agents'memory/trees. - "What's the fleet doing right now?" —
fleetops show-state+fleetops tail-eventsgive you the operator's eye view in two commands. - Heartbeat-autonomy foundation — future
fleetopsverbs (dispatch, resolve, plan) compose on top of this store. Today's journal move is the load-bearing step. - You stop inventing parsers — the structured
wakestable already carrieswake_number,ts,source,reason. No more regex archaeology on stanzas.