From d3a2df98552ecc7fc5a16e1aba630b0134461b9f Mon Sep 17 00:00:00 2001 From: ProtocolWarden <32967198+ProtocolWarden@users.noreply.github.com> Date: Tue, 19 May 2026 03:55:12 -0400 Subject: [PATCH] =?UTF-8?q?feat(phase-5):=20rename=20ExecutorRuntime=20?= =?UTF-8?q?=E2=86=92=20CoreRunner=20in=20OperatorConsole=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - executorruntime.yaml → corerunner.yaml (name: CoreRunner) - platform.yaml: executorruntime → corerunner group entry - git_watcher.py: ExecutorRuntime → CoreRunner in Executors frozenset Co-Authored-By: Claude Sonnet 4.6 --- .console/log.md | 8 ++++++++ config/profiles/{executorruntime.yaml => corerunner.yaml} | 2 +- config/profiles/platform.yaml | 2 +- src/operator_console/git_watcher.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) rename config/profiles/{executorruntime.yaml => corerunner.yaml} (91%) diff --git a/.console/log.md b/.console/log.md index ad89930..1040ae5 100644 --- a/.console/log.md +++ b/.console/log.md @@ -1,5 +1,13 @@ # Log +## 2026-05-19 — ADR 0006 Phase 5: rename ExecutorRuntime → CoreRunner in OperatorConsole + +- config/profiles/executorruntime.yaml → corerunner.yaml; name: CoreRunner. +- config/profiles/platform.yaml: executorruntime → corerunner group entry. +- src/operator_console/git_watcher.py: "ExecutorRuntime" → "CoreRunner" in Executors frozenset. +- repo_root path in corerunner.yaml intentionally still points to ExecutorRuntime/ dir — will update after Phase 6 GitHub rename. +- 121 of 129 tests pass; 8 pre-existing watcher_pane failures unrelated to this change. + ## 2026-05-19 — Suppressed pre-existing C29/D11 custodian findings (git_watcher.py) Added C29 suppression for git_watcher.py (518 lines, same rationale as other TUI diff --git a/config/profiles/executorruntime.yaml b/config/profiles/corerunner.yaml similarity index 91% rename from config/profiles/executorruntime.yaml rename to config/profiles/corerunner.yaml index 1dd470c..fbdc3eb 100644 --- a/config/profiles/executorruntime.yaml +++ b/config/profiles/corerunner.yaml @@ -1,4 +1,4 @@ -name: ExecutorRuntime +name: CoreRunner repo_root: /home/dev/Documents/GitHub/ExecutorRuntime claude: diff --git a/config/profiles/platform.yaml b/config/profiles/platform.yaml index acfd8f5..64bee5d 100644 --- a/config/profiles/platform.yaml +++ b/config/profiles/platform.yaml @@ -9,7 +9,7 @@ group: - platformdeployment - custodian - cxrp - - executorruntime + - corerunner - sourceregistry - rxp - platformmanifest diff --git a/src/operator_console/git_watcher.py b/src/operator_console/git_watcher.py index 0863944..2dd3d75 100644 --- a/src/operator_console/git_watcher.py +++ b/src/operator_console/git_watcher.py @@ -24,7 +24,7 @@ _GROUPS: list[tuple[str, frozenset[str]]] = [ ("Orchestration", frozenset({"OperationsCenter", "SwitchBoard"})), - ("Executors", frozenset({"TeamExecutor", "DAGExecutor", "CritiqueExecutor", "ExecutorRuntime"})), + ("Executors", frozenset({"TeamExecutor", "DAGExecutor", "CritiqueExecutor", "CoreRunner"})), ("Contracts", frozenset({"CxRP", "RxP"})), ("Platform", frozenset({"PlatformDeployment", "PlatformManifest", "Custodian", "SourceRegistry"})), ("Console", frozenset({"OperatorConsole"})),