Skip to content

Commit b1eb4f5

Browse files
Merge pull request #52 from ProtocolWarden/feat/add-clp-to-platform-group
feat: add ContextLifecycleProtocol to platform group and git watcher
2 parents b5b9092 + f7b11ad commit b1eb4f5

3 files changed

Lines changed: 8 additions & 0 deletions

File tree

.console/log.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Log
22

3+
## 2026-05-21 — Add ContextLifecycleProtocol to platform group and git watcher
4+
5+
Added contextlifecycleprotocol to platform.yaml group list.
6+
Added "Cognition" group to git_watcher.py _GROUPS (between Executors and Contracts)
7+
containing ContextLifecycleProtocol. Profile yaml was already on main.
8+
39
## 2026-05-19 — Update corerunner.yaml repo_root to CoreRunner/
410

511
Local directory renamed ExecutorRuntime/ → CoreRunner/. Updated profile path and GitHub repo remote URL.

config/profiles/platform.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ group:
1616
- teamexecutor
1717
- dagexecutor
1818
- critiqueexecutor
19+
- contextlifecycleprotocol

src/operator_console/git_watcher.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
_GROUPS: list[tuple[str, frozenset[str]]] = [
2626
("Orchestration", frozenset({"OperationsCenter", "SwitchBoard"})),
2727
("Executors", frozenset({"TeamExecutor", "DAGExecutor", "CritiqueExecutor", "CoreRunner"})),
28+
("Cognition", frozenset({"ContextLifecycleProtocol"})),
2829
("Contracts", frozenset({"CxRP", "RxP"})),
2930
("Platform", frozenset({"PlatformDeployment", "PlatformManifest", "Custodian", "SourceRegistry"})),
3031
("Console", frozenset({"OperatorConsole"})),

0 commit comments

Comments
 (0)