@tongil_kim/clautunnel 1.4.0 → 1.5.0
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 +32 -10
- package/package.json +81 -57
package/README.md
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
# ClauTunnel
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@tongil_kim/clautunnel)
|
|
4
|
+
[](https://www.npmjs.com/package/@tongil_kim/clautunnel)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
[](https://www.typescriptlang.org/)
|
|
7
|
+
[](https://nodejs.org/)
|
|
8
|
+
[](https://github.com/TongilKim/ClauTunnel/pulls)
|
|
9
|
+
|
|
10
|
+
> **ClauTunnel** — Remote monitoring and control tool for **Claude Code CLI** from your mobile device. Stream terminal output in real-time, send input remotely, and get push notifications for task completion via iOS & Android.
|
|
11
|
+
|
|
12
|
+
## Why ClauTunnel?
|
|
13
|
+
|
|
14
|
+
Running Claude Code on your workstation but need to step away? ClauTunnel lets you keep the conversation going from your phone:
|
|
15
|
+
|
|
16
|
+
- **Monitor long-running tasks** — Watch Claude Code terminal output in real-time from anywhere
|
|
17
|
+
- **Send input remotely** — Respond to Claude's prompts and provide input from your mobile device
|
|
18
|
+
- **Push notifications** — Get notified instantly when tasks complete, errors occur, or input is needed
|
|
19
|
+
- **Background daemon mode** — Run ClauTunnel as a background service with automatic reconnection
|
|
20
|
+
- **Sleep prevention** — Keep your Mac awake during long-running Claude Code sessions
|
|
4
21
|
|
|
5
22
|
## Installation
|
|
6
23
|
|
|
@@ -59,22 +76,27 @@ clautunnel stop
|
|
|
59
76
|
|
|
60
77
|
## Features
|
|
61
78
|
|
|
62
|
-
- Real-time
|
|
63
|
-
- Send input from mobile to CLI
|
|
64
|
-
- Push notifications for task completion, errors, and input prompts
|
|
65
|
-
- Automatic reconnection
|
|
66
|
-
- Sleep prevention
|
|
79
|
+
- **Real-time streaming** — Terminal output streamed to your mobile device instantly
|
|
80
|
+
- **Remote input** — Send text input and commands from mobile to CLI
|
|
81
|
+
- **Push notifications** — Alerts for task completion, errors, and input prompts
|
|
82
|
+
- **Automatic reconnection** — Exponential backoff ensures reliable connections
|
|
83
|
+
- **Sleep prevention** — Keep macOS awake during long-running tasks
|
|
84
|
+
- **Daemon mode** — Run as a background service
|
|
85
|
+
- **Multi-platform mobile** — Works on both iOS and Android via Expo
|
|
67
86
|
|
|
68
87
|
## Requirements
|
|
69
88
|
|
|
70
89
|
- Node.js 18+
|
|
71
|
-
- Claude Code CLI installed
|
|
90
|
+
- [Claude Code CLI](https://docs.anthropic.com/en/docs/claude-code) installed
|
|
91
|
+
- Supabase account (free tier works)
|
|
72
92
|
|
|
73
93
|
## Links
|
|
74
94
|
|
|
75
|
-
- [GitHub Repository](https://github.com/TongilKim/
|
|
76
|
-
- [Mobile App](https://github.com/TongilKim/
|
|
95
|
+
- [GitHub Repository](https://github.com/TongilKim/ClauTunnel)
|
|
96
|
+
- [Mobile App](https://github.com/TongilKim/ClauTunnel/tree/main/apps/mobile)
|
|
97
|
+
- [npm Package](https://www.npmjs.com/package/@tongil_kim/clautunnel)
|
|
98
|
+
- [Report Issues](https://github.com/TongilKim/ClauTunnel/issues)
|
|
77
99
|
|
|
78
100
|
## License
|
|
79
101
|
|
|
80
|
-
MIT
|
|
102
|
+
[MIT](https://github.com/TongilKim/ClauTunnel/blob/main/LICENSE)
|
package/package.json
CHANGED
|
@@ -1,59 +1,83 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
|
|
2
|
+
"name": "@tongil_kim/clautunnel",
|
|
3
|
+
"version": "1.5.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Remote monitoring and control tool for Claude Code CLI — stream terminal output, send input, and receive push notifications from your mobile device via iOS & Android",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Tongil Kim",
|
|
8
|
+
"url": "https://github.com/TongilKim"
|
|
9
|
+
},
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/TongilKim/clautunnel.git",
|
|
14
|
+
"directory": "apps/cli"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://github.com/TongilKim/clautunnel#readme",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/TongilKim/clautunnel/issues"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"claude",
|
|
22
|
+
"claude-code",
|
|
23
|
+
"cli",
|
|
24
|
+
"remote",
|
|
25
|
+
"monitoring",
|
|
26
|
+
"terminal",
|
|
27
|
+
"mobile",
|
|
28
|
+
"push-notifications",
|
|
29
|
+
"real-time",
|
|
30
|
+
"streaming",
|
|
31
|
+
"daemon",
|
|
32
|
+
"anthropic",
|
|
33
|
+
"ai",
|
|
34
|
+
"developer-tools",
|
|
35
|
+
"devtools",
|
|
36
|
+
"tunnel",
|
|
37
|
+
"remote-control",
|
|
38
|
+
"supabase",
|
|
39
|
+
"react-native",
|
|
40
|
+
"ios",
|
|
41
|
+
"android"
|
|
42
|
+
],
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=18.0.0"
|
|
45
|
+
},
|
|
46
|
+
"publishConfig": {
|
|
47
|
+
"access": "public"
|
|
48
|
+
},
|
|
49
|
+
"files": [
|
|
50
|
+
"dist",
|
|
51
|
+
"bin"
|
|
52
|
+
],
|
|
53
|
+
"bin": {
|
|
54
|
+
"clautunnel": "./bin/clautunnel"
|
|
55
|
+
},
|
|
56
|
+
"main": "./dist/index.js",
|
|
57
|
+
"types": "./dist/index.d.ts",
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "tsup",
|
|
60
|
+
"start": "tsup && node dist/index.js start",
|
|
61
|
+
"test": "vitest run",
|
|
62
|
+
"test:watch": "vitest",
|
|
63
|
+
"clean": "rm -rf dist"
|
|
64
|
+
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@anthropic-ai/claude-agent-sdk": "^0.2.37",
|
|
67
|
+
"@supabase/supabase-js": "^2.39.0",
|
|
68
|
+
"commander": "^11.1.0",
|
|
69
|
+
"dotenv": "^17.2.3",
|
|
70
|
+
"qrcode-terminal": "^0.12.0",
|
|
71
|
+
"uuid": "^13.0.0",
|
|
72
|
+
"ws": "^8.19.0"
|
|
73
|
+
},
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"@types/node": "^20.10.0",
|
|
76
|
+
"@types/uuid": "^11.0.0",
|
|
77
|
+
"@types/ws": "^8.18.1",
|
|
78
|
+
"clautunnel-shared": "workspace:*",
|
|
79
|
+
"tsup": "^8.5.1",
|
|
80
|
+
"typescript": "^5.3.3",
|
|
81
|
+
"vitest": "^1.2.0"
|
|
82
|
+
}
|
|
59
83
|
}
|