feat(host-agent): make execution history authoritative
Tests / Test failed: 2, passed: 830

This commit is contained in:
2026-07-15 11:46:27 +08:00
parent ccde30e378
commit 77d4813bb2
46 changed files with 890 additions and 3132 deletions
+1 -4
View File
@@ -2,7 +2,7 @@
Verifies that the cloud workspace package is purely additive: every existing
module it composes (``runtime.task``, ``workflow.runner``, ``driver.registry``,
``api.console``) remains unaware of the ``cloud`` package in its source.
``api.mcp``) remains unaware of the ``cloud`` package in its source.
"""
from __future__ import annotations
@@ -38,9 +38,6 @@ def _existing_module_paths() -> list[Path]:
continue
for path in root.rglob("*.py"):
files.append(path)
console = PROJECT_ROOT / "api" / "console.py"
if console.exists():
files.append(console)
mcp = PROJECT_ROOT / "api" / "mcp.py"
if mcp.exists():
files.append(mcp)