@vrs-soft/wecom-aibot-mcp 2.4.4 → 2.4.5

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.
Files changed (2) hide show
  1. package/dist/bin.js +2 -1
  2. package/package.json +1 -1
package/dist/bin.js CHANGED
@@ -320,7 +320,8 @@ async function main() {
320
320
  // --version / -v: 只查版本,不写配置
321
321
  const skipEnsure = args.includes('--reinstall') || args.includes('--http-only') ||
322
322
  args.includes('--setup') || args.includes('--channel') ||
323
- args.includes('--version') || args.includes('-v');
323
+ args.includes('--version') || args.includes('-v') ||
324
+ args.includes('--start') || args.includes('--debug');
324
325
  if (!skipEnsure) {
325
326
  // 强制覆盖所有全局配置(不依赖智能体)
326
327
  ensureGlobalConfigs(installMode);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrs-soft/wecom-aibot-mcp",
3
- "version": "2.4.4",
3
+ "version": "2.4.5",
4
4
  "description": "企业微信智能机器人 MCP 服务 - Claude Code 审批通道",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",