@tunnelbox/hermes 0.1.4 → 0.1.6
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 +17 -22
- package/README.zh-CN.md +15 -22
- package/dist/index.mjs +613 -554
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tunnelbox/hermes",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "tunnelbox 的 Hermes 适配器(B 类,
|
|
3
|
+
"version": "0.1.6",
|
|
4
|
+
"description": "tunnelbox 的 Hermes 适配器(B 类,CLI oneshot 桥接):手机远程驱动本机 Hermes Agent(hermes chat -Q -q + --resume 续聊,会话/流式/中止/删除;headless 无手机审批)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
7
7
|
"bin": {
|
|
@@ -22,14 +22,16 @@
|
|
|
22
22
|
"build:test": "node scripts/build.mjs --env test",
|
|
23
23
|
"build:prod": "node scripts/build.mjs --env production",
|
|
24
24
|
"start": "node dist/index.mjs",
|
|
25
|
-
"smoke": "node scripts/smoke.mjs"
|
|
25
|
+
"smoke": "node scripts/smoke.mjs",
|
|
26
|
+
"probe": "node scripts/probe.mjs",
|
|
27
|
+
"e2e": "node scripts/e2e.mjs",
|
|
28
|
+
"e2e:real": "node scripts/e2e-real.mjs"
|
|
26
29
|
},
|
|
27
30
|
"engines": {
|
|
28
31
|
"node": ">=22.0.0"
|
|
29
32
|
},
|
|
30
33
|
"dependencies": {
|
|
31
|
-
"qrcode": "^1.5.3"
|
|
32
|
-
"yaml": "^2.4.1"
|
|
34
|
+
"qrcode": "^1.5.3"
|
|
33
35
|
},
|
|
34
36
|
"devDependencies": {
|
|
35
37
|
"@tunnelbox/core": "0.1.0",
|