@whalent/agent 0.3.233 → 0.3.235
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 +16 -0
- package/dist/core.cjs +7 -7
- package/dist/index.cjs +1 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -22,6 +22,15 @@ Node.js 20 LTS is still the safest choice on older Linux hosts. Newer Node.js
|
|
|
22
22
|
releases can force native `node-pty` fallback builds that need newer C++
|
|
23
23
|
compilers when prebuilt binaries are unavailable.
|
|
24
24
|
|
|
25
|
+
The official npm package `@moonshot-ai/kimi-code` requires Node.js 22.19.0 or
|
|
26
|
+
newer, so the daemon checks that requirement before npm install/upgrade. An
|
|
27
|
+
already-installed native Kimi executable can run under a daemon hosted by
|
|
28
|
+
Node.js 20 and is not blocked by that package-install requirement. Kimi uses the
|
|
29
|
+
official ACP transport, supports native `kimi login`, managed
|
|
30
|
+
`kimi-code/k3` and `kimi-code/kimi-for-coding*` aliases, direct API-key
|
|
31
|
+
`kimi-k3`, resume, approvals/questions, thinking/tool/plan streaming, and
|
|
32
|
+
local history import.
|
|
33
|
+
|
|
25
34
|
Codex SQLite history reads require the Whalent sqlite helper.
|
|
26
35
|
The helper is a small Go binary cached under `~/.whalent-agent/helpers/sqlite`;
|
|
27
36
|
if it is missing or cannot run, Codex history import is treated as unavailable
|
|
@@ -49,6 +58,13 @@ To specify a custom gateway:
|
|
|
49
58
|
whalent --token <YOUR_TOKEN> --gateway wss://your-server/gw/sdk/ws
|
|
50
59
|
```
|
|
51
60
|
|
|
61
|
+
## MCP Gateway Routing
|
|
62
|
+
|
|
63
|
+
When starting the legacy `whalent mcp` subcommand directly, pass the gateway
|
|
64
|
+
routing instance with `--gateway-instance-id` or
|
|
65
|
+
`WHALENT_GATEWAY_INSTANCE_ID`. The older `--app-id` and `WHALENT_APP_ID` forms
|
|
66
|
+
remain accepted as deprecated input aliases for existing integrations.
|
|
67
|
+
|
|
52
68
|
## License
|
|
53
69
|
|
|
54
70
|
Copyright © 2025 Whalent. All rights reserved.
|