Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/orchestrator/dist/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion plugins/orchestrator/mcp/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down