/wbTrack — Live Demo ()
This is what /wbTrack actually does on wb-labs as the workspace stands today (2026-05-05). The matrix below mirrors the exhaustive simulation, but every cell is filled from the live state of the repo — the session files that exist, the models that contributed, the derivative files that were extracted.
1. Live target
| Field | Live value |
|---|---|
| Active scope | core2/packages/wb-core |
| Session file path | packages/wb-core/.agents/workflows/tracks/2026/05/05/track_wb-core_20260505.md |
| Prior sessions | track_wb-core_20260504.md exists (yesterday — finalized with derivatives) |
| Current model | the AI agent via Antigravity |
| Models that contributed yesterday | the AI agent (§0–§3), the AI agent (§4–§6, via the agent CLI) |
The real state right now: the wb-core plan has 3 rows. Rows 1 and 2 were completed yesterday. Row 3 (WBC.js decomposition) was left unblocked but not started — the agent's §4 recommended it, but the session ended before anyone picked it up.
2. What the argument resolves to today
| Argument | Live resolution |
|---|---|
/wbTrack packages/wb-core | Creates track_wb-core_20260505.md (new day, new file). Runs /wbStandup wb-core as §0 sub-command. |
/wbTrack (no arg) | Creates track_core2_20260505.md at monorepo root. Different file, different scope. |
/wbTrack packages/wb-dataviewer | Creates track_wb-dataviewer_20260505.md. Independent session — the wb-core session is unrelated. |
/wbTrack packages/wb-core when already tracking core2 | Halt. ⚠️ Already tracking: core2. Run /wbStopTrack first. |
3. Per-flag behavior, applied live
| Flag | If invoked now |
|---|---|
/wbTrack packages/wb-core (no flags) | Creates today's session file. Writes §0 with full /wbStandup output. Tracking ON for this model. |
/wbTrack -s (while tracking) | Reports: 🟢 Active scope: packages/wb-core. Session file: track_wb-core_20260505.md. Sections: §0. |
/wbTrack -s (while not tracking) | Reports: ⚪ Tracking OFF. No active session for this model. |
/wbStopTrack | Writes §STOP to the session file. Tracking OFF. File remains open for other models. |
/wbStopTrack -f | Writes §STOP + extracts 6 derivative files from the session. |
The derivatives extracted by -f for yesterday's session:
| Derivative | Content |
|---|---|
track_wb-core_20260504_tips.md | All [!TIP] callouts from §0–§6 |
track_wb-core_20260504_warnings.md | All [!WARNING] callouts |
track_wb-core_20260504_importants.md | All [!IMPORTANT] callouts |
track_wb-core_20260504_commentaries.md | All Commentary sections, stripped of headers |
track_wb-core_20260504_all_commands.md | Every /wb* command executed during the session |
track_wb-core_20260504_resume.md | Last §N's "Recommended Next" table — the handoff document |
4. Pipelines
/wbTrack packages/wb-core> /wbTrack packages/wb-core💠 Pipeline Start today's session (first model)
💠 Pipeline Execute work while tracking
With tracking ON, running /wbWork --id="3" produces two outputs:
💠 Pipeline End of day finalization
5. What would refuse today
| Trigger | Live response |
|---|---|
/wbTrack when already tracking wb-core | ⚠️ Already tracking: packages/wb-core. Run /wbStopTrack first. |
/wbTrack packages/wb-core packages/wb-dataviewer | Halt. One scope only. No multi-target tracking. |
/wbStopTrack when not tracking | No-op. ⚪ No active session to stop. |
/wbTrack -d="2026-05-01" | Halt. ❌ Unknown flag -d. /wbTrack has two flags: --finalize (-f) and --scope (-s). the agent's version doesn't support retroactive date targeting. |
/wbTrack packages/nonexistent | Halt. ❌ Directory packages/nonexistent not found. |
The pattern: /wbTrack is strict about state (one session per model), permissive about bootstrapping (creates directories if needed), and honest about its flag surface (no inherited flags from the agent's version that don't map to the agent's behavior). The simplicity is the feature — the command is a toggle with one scope variable.
