Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .console/log.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 2026-06-04 — Docs: clarify watch-all vs the external tools/loop controller

README conflated two independent background mechanisms (the source of an operator
mix-up during the .console reconciliation). Added a "Two independent loops" note +
listed the `loop-start/stop/status/log` commands in the command reference, and
corrected the stale "five watcher lanes" wording to the actual set
(intake/goal/test/improve/propose/review/spec + watchdog). `watch-all` = the OC
pipeline lanes; `tools/loop/controller.py` (loop-*) = the separate external
dev-loop controller. They start/stop independently; full pause needs both.

## 2026-06-04 — Reconcile `.console/` (reconcile/console branch)

Ran the `.console/` reconciliation pass (PlatformManifest console-reconciliation-spec).
Expand Down
27 changes: 24 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -435,8 +435,25 @@ The naming is intentionally close because the second is the board adapter for th
### Core Workflow

- Single-task execution from a Plane work item.
- Background watchers for `goal`, `test`, `improve`, `propose`, and `review`.
- `watch-all` to launch all five local watcher lanes together.
- Background watchers for `intake`, `goal`, `test`, `improve`, `propose`, `review`, and `spec`.
- `watch-all` to launch all the local watcher lanes (+ a watchdog) together.

> **Two independent loops — don't conflate them.** OperationsCenter has two
> separate background mechanisms with separate controls:
>
> 1. **`watch-all` — the OC pipeline lanes.** The in-process board watchers
> (`intake`/`goal`/`test`/`improve`/`propose`/`review`/`spec`) + a `watchdog`
> supervisor that processes Plane work items. Controlled by
> `watch-all` / `watch-all-status` / `watch-all-stop`; PIDs/logs under
> `logs/local/watch-all/`.
> 2. **`tools/loop/controller.py` — the external dev-loop controller.** A
> separate watchdog that drives session-level dev cycles and backend
> cooldown/selection. Controlled by `loop-start` / `loop-stop` /
> `loop-status` / `loop-log`; lock at `logs/local/loop_controller.lock`.
>
> They run, start, and stop **independently** — stopping one does not stop the
> other, and `loop-status` only reports the controller (not the watch-all lanes).
> To fully pause OC: `watch-all-stop` **and** `loop-stop`.
- Structured task parsing from `## Execution`, `## Goal`, and optional `## Constraints`.
- Isolated ephemeral clone + task branch workflow.
- Repo-local bootstrap and validation execution.
Expand Down Expand Up @@ -663,9 +680,13 @@ Top-level config options added in the autonomy hardening phase:
./scripts/operations-center.sh watch --role improve
./scripts/operations-center.sh watch --role propose
./scripts/operations-center.sh watch --role review
./scripts/operations-center.sh watch-all
./scripts/operations-center.sh watch-all # OC pipeline lanes (see "Two independent loops")
./scripts/operations-center.sh watch-all-status
./scripts/operations-center.sh watch-all-stop
./scripts/operations-center.sh loop-start # external dev-loop controller (tools/loop) — separate from watch-all
./scripts/operations-center.sh loop-status
./scripts/operations-center.sh loop-stop
./scripts/operations-center.sh loop-log
./scripts/operations-center.sh dev-up
./scripts/operations-center.sh dev-down
./scripts/operations-center.sh dev-restart
Expand Down
Loading