nextclaw 0.19.8 → 0.19.12

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.
@@ -3676,6 +3676,7 @@ secrets.command("apply").description("Apply secret refs/providers/defaults patch
3676
3676
  secrets.command("reload").description("Trigger runtime secrets reload signal").option("--json", "Output JSON", false).action((opts) => runtime.commands.secrets.reload(opts));
3677
3677
  const channels = program.command("channels").description("Manage channels");
3678
3678
  channels.command("add").description("Configure a plugin channel (OpenClaw-compatible setup)").requiredOption("--channel <id>", "Plugin channel id").option("--code <code>", "Pairing code").option("--token <token>", "Connector token").option("--name <name>", "Display name").option("--url <url>", "API base URL").option("--http-url <url>", "Alias for --url").action((opts) => runtime.commands.channels.add(opts));
3679
+ channels.command("list").description("List configured plugin channels").option("--json", "Output JSON", false).action((opts) => runtime.commands.channels.list(opts));
3679
3680
  channels.command("status").description("Show channel status").action(() => runtime.commands.channels.status());
3680
3681
  channels.command("login").description("Link device via QR code").option("--channel <id>", "Plugin channel id").option("--account <id>", "Channel account id").option("--url <url>", "Channel API base URL").option("--http-url <url>", "Alias for --url").option("-v, --verbose", "Verbose output", false).action(async (opts) => runtime.commands.channels.login(opts));
3681
3682
  const cron = program.command("cron").description("Manage scheduled tasks");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextclaw",
3
- "version": "0.19.8",
3
+ "version": "0.19.12",
4
4
  "description": "Lightweight personal AI assistant with CLI, multi-provider routing, and channel integrations.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -41,21 +41,21 @@
41
41
  "commander": "^12.1.0",
42
42
  "jszip": "^3.10.1",
43
43
  "yaml": "^2.8.1",
44
- "@nextclaw/core": "0.12.17",
45
- "@nextclaw/ncp": "0.5.10",
44
+ "@nextclaw/kernel": "0.1.6",
46
45
  "@nextclaw/mcp": "0.1.82",
47
46
  "@nextclaw/ncp-agent-runtime": "0.3.20",
48
- "@nextclaw/kernel": "0.1.6",
49
- "@nextclaw/nextclaw-ncp-runtime-http-client": "0.1.9",
50
- "@nextclaw/openclaw-compat": "1.0.17",
47
+ "@nextclaw/ncp-mcp": "0.1.84",
48
+ "@nextclaw/core": "0.12.17",
49
+ "@nextclaw/ncp": "0.5.10",
51
50
  "@nextclaw/nextclaw-hermes-acp-bridge": "0.1.9",
51
+ "@nextclaw/openclaw-compat": "1.0.17",
52
+ "@nextclaw/nextclaw-ncp-runtime-http-client": "0.1.9",
53
+ "@nextclaw/ncp-toolkit": "0.5.15",
52
54
  "@nextclaw/remote": "0.1.94",
55
+ "@nextclaw/nextclaw-ncp-runtime-stdio-client": "0.1.10",
53
56
  "@nextclaw/runtime": "0.2.49",
54
- "@nextclaw/ncp-toolkit": "0.5.15",
55
57
  "@nextclaw/service": "0.1.9",
56
- "@nextclaw/server": "0.12.17",
57
- "@nextclaw/ncp-mcp": "0.1.84",
58
- "@nextclaw/nextclaw-ncp-runtime-stdio-client": "0.1.10"
58
+ "@nextclaw/server": "0.12.17"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@types/node": "^20.17.6",
@@ -505,6 +505,7 @@ Skill loading contract:
505
505
  | `nextclaw plugins enable <id>` | Enable plugin in config |
506
506
  | `nextclaw plugins disable <id>` | Disable plugin in config |
507
507
  | `nextclaw plugins doctor` | Diagnose plugin loading issues |
508
+ | `nextclaw channels list --json` | List plugin channels for automation and agent channel discovery |
508
509
  | `nextclaw channels status` | Show enabled channels and status |
509
510
  | `nextclaw doctor` | Run runtime diagnostics (`--json`, `--verbose`, `--fix`) |
510
511
  | `nextclaw channels login` | Open QR login for supported channels |
@@ -709,6 +710,8 @@ All message channels use a common **allowFrom** rule:
709
710
 
710
711
  Configure channels in the UI at http://127.0.0.1:55667 or in `~/.nextclaw/config.json` under `channels`.
711
712
 
713
+ Use `nextclaw channels list --json` when an automation or AI agent needs the exact runtime channel ids and outbound capabilities before calling messaging tools. Treat returned `channels[].id` values as authoritative; do not guess aliases such as `wechat` for the Weixin channel.
714
+
712
715
  ### Discord
713
716
 
714
717
  1. Create a bot in the [Discord Developer Portal](https://discord.com/developers/applications) and get the bot token.