@wagemule/daemon 0.1.4 → 0.1.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/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,10 +4,10 @@ Wage Mule local daemon connects local agent runtimes to a Workspace Server.
4
4
 
5
5
  ## Install and start
6
6
 
7
- Use the command shown in the Wage Mule Web machine page. It pins the daemon version and includes the pairing token for the current space:
7
+ Use the command shown in the Wage Mule Web machine page. It uses the latest daemon package and includes the pairing token for the current space:
8
8
 
9
9
  ```bash
10
- npx -y @wagemule/daemon@0.1.4 start --server-url "https://your-server" --api-key "daemon_xxx"
10
+ npx -y @wagemule/daemon@latest start --server-url "https://your-server" --api-key "daemon_xxx"
11
11
  ```
12
12
 
13
13
  The v0.1 daemon runs in the foreground. Keep the terminal open while the machine should stay online.
@@ -26,7 +26,7 @@ wm-daemon start --server-url "https://your-server" --api-key "daemon_xxx"
26
26
 
27
27
  ## Feishu delegation
28
28
 
29
- The npm package depends on the official `@larksuite/cli`, so `npx -y @wagemule/daemon@0.1.4 ...` also installs the `lark-cli` binary. When a platform human enables Feishu delegation for an agent, the daemon injects the official Lark/Feishu CLI skills into that agent workspace and writes a local `.wm/lark-cli` wrapper.
29
+ The npm package depends on the official `@larksuite/cli`, so `npx -y @wagemule/daemon@latest ...` also installs the `lark-cli` binary. When a platform human enables Feishu delegation for an agent, the daemon injects the official Lark/Feishu CLI skills into that agent workspace and writes a local `.wm/lark-cli` wrapper.
30
30
 
31
31
  The wrapper reads the delegated user token from `.wm/feishu/token` at runtime and sets `LARKSUITE_CLI_APP_ID`, `LARKSUITE_CLI_USER_ACCESS_TOKEN`, `LARKSUITE_CLI_DEFAULT_AS=user`, `LARKSUITE_CLI_STRICT_MODE=user`, and `LARKSUITE_CLI_BRAND=feishu`. The token is not embedded in the wrapper. If the token is missing or cleared, `lark-cli` exits with `Feishu token unavailable`.
32
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wagemule/daemon",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "private": false,
5
5
  "description": "Wage Mule local daemon for connecting local agent runtimes to Workspace Server.",
6
6
  "main": "./dist/main.cjs",