From afcb2d9790940c21882848d08e19c8f0088afa52 Mon Sep 17 00:00:00 2001 From: Evan Nadeau <1878498+evannadeau@users.noreply.github.com> Date: Sat, 16 May 2026 11:00:09 -0700 Subject: [PATCH] orchestrator: complete PLUGIN_VERSION self-sync in system_status --- plugins/orchestrator/dist/server.js | 2 +- plugins/orchestrator/mcp/server.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/orchestrator/dist/server.js b/plugins/orchestrator/dist/server.js index 6b6141f..f59fdc9 100644 --- a/plugins/orchestrator/dist/server.js +++ b/plugins/orchestrator/dist/server.js @@ -24819,7 +24819,7 @@ server.tool("system_status", "Check the health of the orchestrator system: embed const lines = []; lines.push("## System Status"); lines.push(""); - lines.push(`- **Version**: orchestrator MCP server **0.30.28** (pid ${process.pid})`); + lines.push(`- **Version**: orchestrator MCP server **${PLUGIN_VERSION}** (pid ${process.pid})`); if (agentChannel) { lines.push(`- **Agent-channel**: ACTIVE - filewatcher running`); } else { diff --git a/plugins/orchestrator/mcp/server.ts b/plugins/orchestrator/mcp/server.ts index 85eed16..90b8dd7 100644 --- a/plugins/orchestrator/mcp/server.ts +++ b/plugins/orchestrator/mcp/server.ts @@ -652,7 +652,7 @@ server.tool( const lines: string[] = []; lines.push("## System Status"); lines.push(""); - lines.push(`- **Version**: orchestrator MCP server **0.30.28** (pid ${process.pid})`); + lines.push(`- **Version**: orchestrator MCP server **${PLUGIN_VERSION}** (pid ${process.pid})`); if (agentChannel) { lines.push(`- **Agent-channel**: ACTIVE - filewatcher running`); } else {