nodus-wechat 0.6.0 → 0.6.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.
package/README.md CHANGED
@@ -112,3 +112,7 @@ npm publish
112
112
 
113
113
  The package is configured for public npm access. If npm reports `E401`, run
114
114
  `npm login` first.
115
+
116
+ For npm Trusted Publishing, push this package to GitHub and configure npm to
117
+ trust the workflow at `.github/workflows/publish.yml`. The workflow publishes
118
+ with OIDC and does not need an `NPM_TOKEN` secret.
@@ -8,7 +8,7 @@ const os = require("node:os");
8
8
  const path = require("node:path");
9
9
  const childProcess = require("node:child_process");
10
10
 
11
- const VERSION = "0.6.0";
11
+ const VERSION = "0.6.1";
12
12
  const DEFAULT_BASE_URL = "https://api.nodus.sbs/";
13
13
  const DEFAULT_MODEL = "gpt-5.5";
14
14
  const DEFAULT_OPENILINK_ORIGIN = "http://localhost:9800";
@@ -376,7 +376,8 @@ function setup(options) {
376
376
  console.log(`Model: ${config.agent.model}`);
377
377
  console.log(`OpeniLink Hub: ${config.openilink.publicOrigin}`);
378
378
  console.log(`Webhook URL for OpeniLink: http://poc-webhook:${config.webhook.port}/webhook`);
379
- console.log("Run `nodus-wechat start` to start the local runtime.");
379
+ console.log("Runtime mode: host process by default; Docker is used only with `--docker`.");
380
+ console.log("Run `nodus-wechat start` to start the local host runtime.");
380
381
  }
381
382
 
382
383
  function installHermes() {
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "nodus-wechat",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "CLI installer for Nodus WeChat, Hermes, and the local OpeniLink webhook runtime.",
5
5
  "license": "MIT",
6
6
  "private": false,
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/zyaireleo/nodus-wechat.git"
10
+ },
7
11
  "bin": {
8
12
  "nodus-wechat": "bin/nodus-wechat.js"
9
13
  },