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
6 changes: 6 additions & 0 deletions .console/log.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Log

## 2026-05-21 — Add ContextLifecycleProtocol to platform group and git watcher

Added contextlifecycleprotocol to platform.yaml group list.
Added "Cognition" group to git_watcher.py _GROUPS (between Executors and Contracts)
containing ContextLifecycleProtocol. Profile yaml was already on main.

## 2026-05-19 — Update corerunner.yaml repo_root to CoreRunner/

Local directory renamed ExecutorRuntime/ → CoreRunner/. Updated profile path and GitHub repo remote URL.
Expand Down
1 change: 1 addition & 0 deletions config/profiles/platform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ group:
- teamexecutor
- dagexecutor
- critiqueexecutor
- contextlifecycleprotocol
1 change: 1 addition & 0 deletions src/operator_console/git_watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
_GROUPS: list[tuple[str, frozenset[str]]] = [
("Orchestration", frozenset({"OperationsCenter", "SwitchBoard"})),
("Executors", frozenset({"TeamExecutor", "DAGExecutor", "CritiqueExecutor", "CoreRunner"})),
("Cognition", frozenset({"ContextLifecycleProtocol"})),
("Contracts", frozenset({"CxRP", "RxP"})),
("Platform", frozenset({"PlatformDeployment", "PlatformManifest", "Custodian", "SourceRegistry"})),
("Console", frozenset({"OperatorConsole"})),
Expand Down
Loading