diff --git a/.console/log.md b/.console/log.md index 4f9bcf5..058399c 100644 --- a/.console/log.md +++ b/.console/log.md @@ -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. diff --git a/config/profiles/platform.yaml b/config/profiles/platform.yaml index 64bee5d..ea115a6 100644 --- a/config/profiles/platform.yaml +++ b/config/profiles/platform.yaml @@ -16,3 +16,4 @@ group: - teamexecutor - dagexecutor - critiqueexecutor + - contextlifecycleprotocol diff --git a/src/operator_console/git_watcher.py b/src/operator_console/git_watcher.py index 2dd3d75..9ef532b 100644 --- a/src/operator_console/git_watcher.py +++ b/src/operator_console/git_watcher.py @@ -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"})),