nodus-wechat 0.5.0 → 0.5.1

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.
@@ -7,7 +7,7 @@ const os = require("node:os");
7
7
  const path = require("node:path");
8
8
  const childProcess = require("node:child_process");
9
9
 
10
- const VERSION = "0.5";
10
+ const VERSION = "0.5.1";
11
11
  const DEFAULT_BASE_URL = "https://api.nodus.sbs/";
12
12
  const DEFAULT_MODEL = "gpt-5.5";
13
13
  const DEFAULT_OPENILINK_ORIGIN = "http://localhost:9800";
@@ -34,6 +34,7 @@ function printHelp() {
34
34
  Local CLI installer for Nodus WeChat, Hermes settings, and the OpeniLink webhook runtime.
35
35
 
36
36
  Usage:
37
+ nodus-wechat [--api-key <key>] [--base-url <url>] [--model <model>]
37
38
  nodus-wechat setup [--api-key <key>] [--base-url <url>] [--model <model>]
38
39
  [--runtime-dir <path>] [--openilink-origin <url>]
39
40
  [--openilink-rp-id <id>] [--webhook-port <port>]
@@ -47,7 +48,7 @@ Usage:
47
48
  nodus-wechat uninstall --yes
48
49
 
49
50
  Commands:
50
- setup Create or update local configuration and runtime files.
51
+ setup Create or update local configuration and runtime files. This is the default.
51
52
  install-hermes Install Hermes Agent CLI with the official installer.
52
53
  doctor Check local prerequisites and configuration.
53
54
  start Start the local OpeniLink + webhook runtime with Docker Compose.
@@ -564,8 +565,8 @@ function main() {
564
565
  return 1;
565
566
  }
566
567
 
567
- const command = args._[0];
568
- if (!command || args.help || command === "help") {
568
+ const command = args._[0] || "setup";
569
+ if (args.help || command === "help") {
569
570
  printHelp();
570
571
  return 0;
571
572
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodus-wechat",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "CLI installer for Nodus WeChat, Hermes, and the local OpeniLink webhook runtime.",
5
5
  "license": "MIT",
6
6
  "private": false,