Replace OpenCode harness with Hermes, remove workspace dependency, and move vocabulary/corrections to app folder

This commit is contained in:
Adolfo Reyna
2026-08-09 21:35:52 -04:00
parent 6e8a578e86
commit 2f181ff4f1
25 changed files with 2395 additions and 436 deletions
+3 -2
View File
@@ -34,9 +34,10 @@ TOOL_NAMES = [
f"mcp__{SERVER_NAME}__remember_note",
]
def build_server(*, workspace: Path, brain=None):
def build_server(*, workspace: Path | None = None, brain=None):
"""Create the in-process MCP server exposing the memory tools."""
corrections_file = workspace / "corrections.txt"
app_dir = Path(__file__).parent
corrections_file = (workspace / "corrections.txt") if workspace else (app_dir / "corrections.txt")
@tool(
"remember_correction",