@lobehub/cli 0.0.21 → 0.0.23

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 (3) hide show
  1. package/dist/index.js +2375 -2757
  2. package/man/man1/lh.1 +4 -1
  3. package/package.json +19 -19
package/man/man1/lh.1 CHANGED
@@ -1,6 +1,6 @@
1
1
  .\" Code generated by `npm run man:generate`; DO NOT EDIT.
2
2
  .\" Manual command details come from the Commander command tree.
3
- .TH LH 1 "" "@lobehub/cli 0.0.21" "User Commands"
3
+ .TH LH 1 "" "@lobehub/cli 0.0.23" "User Commands"
4
4
  .SH NAME
5
5
  lh \- LobeHub CLI \- manage and connect to LobeHub services
6
6
  .SH SYNOPSIS
@@ -65,6 +65,9 @@ Manage agents
65
65
  .B agent\-group
66
66
  Manage agent groups
67
67
  .TP
68
+ .B agent\-signal
69
+ Inspect and trigger Agent Signal source events
70
+ .TP
68
71
  .B bot
69
72
  Manage bot integrations
70
73
  .TP
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/cli",
3
- "version": "0.0.21",
3
+ "version": "0.0.23",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "lh": "./dist/index.js",
@@ -16,22 +16,7 @@
16
16
  "dist",
17
17
  "man"
18
18
  ],
19
- "scripts": {
20
- "build": "tsdown",
21
- "cli:link": "bun link",
22
- "cli:unlink": "bun unlink",
23
- "dev": "LOBEHUB_CLI_HOME=.lobehub-dev bun src/index.ts",
24
- "man:generate": "bun src/man/generate.ts",
25
- "prepublishOnly": "npm run build && npm run man:generate",
26
- "test": "bunx vitest run --config vitest.config.mts --silent='passed-only'",
27
- "test:coverage": "bunx vitest run --config vitest.config.mts --coverage",
28
- "type-check": "tsc --noEmit"
29
- },
30
19
  "devDependencies": {
31
- "@lobechat/agent-gateway-client": "workspace:*",
32
- "@lobechat/device-gateway-client": "workspace:*",
33
- "@lobechat/heterogeneous-agents": "workspace:*",
34
- "@lobechat/local-file-shell": "workspace:*",
35
20
  "@trpc/client": "^11.8.1",
36
21
  "@types/node": "^22.13.5",
37
22
  "@types/ws": "^8.18.1",
@@ -44,11 +29,26 @@
44
29
  "picocolors": "^1.1.1",
45
30
  "superjson": "^2.2.6",
46
31
  "tsdown": "^0.21.4",
47
- "typescript": "^5.9.3",
48
- "ws": "^8.18.1"
32
+ "typescript": "^6.0.3",
33
+ "ws": "^8.18.1",
34
+ "@lobechat/agent-gateway-client": "1.0.0",
35
+ "@lobechat/device-identity": "1.0.0",
36
+ "@lobechat/local-file-shell": "1.0.0",
37
+ "@lobechat/heterogeneous-agents": "1.0.0",
38
+ "@lobechat/device-gateway-client": "1.0.0"
49
39
  },
50
40
  "publishConfig": {
51
41
  "access": "public",
52
42
  "registry": "https://registry.npmjs.org"
43
+ },
44
+ "scripts": {
45
+ "build": "tsdown",
46
+ "cli:link": "bun link",
47
+ "cli:unlink": "bun unlink",
48
+ "dev": "LOBEHUB_CLI_HOME=.lobehub-dev bun src/index.ts",
49
+ "man:generate": "bun src/man/generate.ts",
50
+ "test": "bunx vitest run --config vitest.config.mts --silent='passed-only'",
51
+ "test:coverage": "bunx vitest run --config vitest.config.mts --coverage",
52
+ "type-check": "tsc --noEmit"
53
53
  }
54
- }
54
+ }