From f7b11ad3acb7d62b25eb1908763404d1e177719e Mon Sep 17 00:00:00 2001 From: ProtocolWarden <32967198+ProtocolWarden@users.noreply.github.com> Date: Thu, 21 May 2026 04:12:21 -0400 Subject: [PATCH] feat: add ContextLifecycleProtocol to platform group and git watcher MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds CLP to platform.yaml group so it appears in the watcher profile. Adds "Cognition" group to git_watcher.py _GROUPS between Executors and Contracts — ContextLifecycleProtocol is the only member for now. Co-Authored-By: Claude Sonnet 4.6 --- .console/log.md | 6 ++++++ config/profiles/platform.yaml | 1 + src/operator_console/git_watcher.py | 1 + 3 files changed, 8 insertions(+) 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"})),