@tunnelbox/claude-code 0.1.1 → 0.1.3
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 +147 -120
- package/dist/index.mjs +1645 -242
- package/official-plugin/.claude-plugin/plugin.json +10 -10
- package/official-plugin/bin/tunnelbox +4 -4
- package/official-plugin/bin/tunnelbox.cmd +3 -3
- package/official-plugin/bin/tunnelbox.mjs +332 -274
- package/official-plugin/hooks/hooks.json +26 -16
- package/official-plugin/skills/pair/SKILL.md +12 -12
- package/official-plugin/skills/status/SKILL.md +10 -0
- package/package.json +42 -38
- package/official-plugin/commands/pair.md +0 -10
- package/official-plugin/commands/status.md +0 -9
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "tunnelbox",
|
|
3
|
-
"description": "tunnelbox 官方 Claude Code 插件:会话内取手机配对码、查看绑定状态、可选把当回合工具审批转发到手机",
|
|
4
|
-
"version": "0.1.0",
|
|
5
|
-
"author": {
|
|
6
|
-
"name": "tunnelbox"
|
|
7
|
-
},
|
|
8
|
-
"homepage": "https://github.com/tunnelbox/tunnelbox",
|
|
9
|
-
"license": "MIT"
|
|
10
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "tunnelbox",
|
|
3
|
+
"description": "tunnelbox 官方 Claude Code 插件:会话内取手机配对码、查看绑定状态、可选把当回合工具审批转发到手机",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "tunnelbox"
|
|
7
|
+
},
|
|
8
|
+
"homepage": "https://github.com/tunnelbox/tunnelbox",
|
|
9
|
+
"license": "MIT"
|
|
10
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#!/usr/bin/env bash
|
|
2
|
-
# tunnelbox 官方插件入口(PATH shim)→ 自包含 Node 实现
|
|
3
|
-
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
4
|
-
exec node "$SCRIPT_DIR/tunnelbox.mjs" "$@"
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
# tunnelbox 官方插件入口(PATH shim)→ 自包含 Node 实现
|
|
3
|
+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
4
|
+
exec node "$SCRIPT_DIR/tunnelbox.mjs" "$@"
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
@echo off
|
|
2
|
-
rem tunnelbox 官方插件入口(Windows PATH shim)-> 自包含 Node 实现
|
|
3
|
-
node "%~dp0tunnelbox.mjs" %*
|
|
1
|
+
@echo off
|
|
2
|
+
rem tunnelbox 官方插件入口(Windows PATH shim)-> 自包含 Node 实现
|
|
3
|
+
node "%~dp0tunnelbox.mjs" %*
|