metheus-governance-mcp-cli 0.2.109 → 0.2.110

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/cli.mjs CHANGED
@@ -1771,7 +1771,7 @@ function validateRunnerRoute(route, { requireCommand = true, config = null } = {
1771
1771
  errors.push("workspace_dir is missing for project_id; configure project_mappings or route.workspace_dir");
1772
1772
  }
1773
1773
  if (route.botID && !isUUID(route.botID)) {
1774
- errors.push("bot_id must be a valid UUID");
1774
+ errors.push("server_bot_id must be a valid UUID");
1775
1775
  }
1776
1776
  if (route.archiveThreadID && !isUUID(route.archiveThreadID)) {
1777
1777
  errors.push("archive_thread_id must be a valid UUID");
@@ -4302,7 +4302,7 @@ async function runDoctor(flags) {
4302
4302
  rows,
4303
4303
  strictMode ? "fail" : "warn",
4304
4304
  `runner route ${routeLabel} server_bot_id`,
4305
- `route bot_id ${route.botID} != local env ${envConfig.serverBotID}`,
4305
+ `route server_bot_id ${route.botID} != local env ${envConfig.serverBotID}`,
4306
4306
  );
4307
4307
  }
4308
4308
  if (route.botID && !envConfig.serverBotID) {
@@ -4325,7 +4325,7 @@ async function runDoctor(flags) {
4325
4325
  rows,
4326
4326
  strictMode ? "fail" : "warn",
4327
4327
  `runner route ${routeLabel} server_bot_id`,
4328
- `route bot_id ${route.botID} is set, but local env entry does not carry SERVER_BOT_ID`,
4328
+ `route server_bot_id ${route.botID} is set, but local env entry does not carry SERVER_BOT_ID`,
4329
4329
  );
4330
4330
  }
4331
4331
  }
@@ -1276,9 +1276,9 @@ function summarizeTelegramRouteLinks(parsedEnv, entry, serverBinding, deps) {
1276
1276
  const routeRole = String(route.role_profile || route.roleProfile || route.role || "").trim();
1277
1277
  let matchedBy = "";
1278
1278
  if (serverBotID && routeBotID === serverBotID) {
1279
- matchedBy = "bot_id";
1279
+ matchedBy = "server_bot_id";
1280
1280
  } else if (routeBotName && normalizedNames.has(routeBotName)) {
1281
- matchedBy = "bot_name";
1281
+ matchedBy = "server_bot_name";
1282
1282
  } else if (!routeBotID && !routeBotName && entryKey && defaultBotKey && entryKey === defaultBotKey) {
1283
1283
  matchedBy = "default_bot";
1284
1284
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "metheus-governance-mcp-cli",
3
- "version": "0.2.109",
3
+ "version": "0.2.110",
4
4
  "description": "Metheus Governance MCP CLI (setup + stdio proxy)",
5
5
  "type": "module",
6
6
  "files": [