@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.
Files changed (2) hide show
  1. package/README.md +32 -10
  2. package/package.json +81 -57
package/README.md CHANGED
@@ -1,6 +1,23 @@
1
1
  # ClauTunnel
2
2
 
3
- Remote monitoring and control for Claude Code CLI from your mobile device.
3
+ [![npm version](https://img.shields.io/npm/v/@tongil_kim/clautunnel.svg)](https://www.npmjs.com/package/@tongil_kim/clautunnel)
4
+ [![npm downloads](https://img.shields.io/npm/dw/@tongil_kim/clautunnel.svg)](https://www.npmjs.com/package/@tongil_kim/clautunnel)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.3-blue.svg)](https://www.typescriptlang.org/)
7
+ [![Node.js](https://img.shields.io/badge/Node.js-18%2B-green.svg)](https://nodejs.org/)
8
+ [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](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 terminal output streaming to mobile
63
- - Send input from mobile to CLI
64
- - Push notifications for task completion, errors, and input prompts
65
- - Automatic reconnection with exponential backoff
66
- - Sleep prevention option for long-running tasks
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/clautunnel)
76
- - [Mobile App](https://github.com/TongilKim/clautunnel/tree/main/apps/mobile)
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
- "name": "@tongil_kim/clautunnel",
3
- "version": "1.4.0",
4
- "type": "module",
5
- "description": "Remote monitoring and control for Claude Code CLI",
6
- "author": "TongilKim",
7
- "license": "MIT",
8
- "repository": {
9
- "type": "git",
10
- "url": "git+https://github.com/TongilKim/clautunnel.git",
11
- "directory": "apps/cli"
12
- },
13
- "homepage": "https://github.com/TongilKim/clautunnel#readme",
14
- "keywords": [
15
- "claude",
16
- "claude-code",
17
- "cli",
18
- "remote",
19
- "monitoring",
20
- "terminal"
21
- ],
22
- "publishConfig": {
23
- "access": "public"
24
- },
25
- "files": [
26
- "dist",
27
- "bin"
28
- ],
29
- "bin": {
30
- "clautunnel": "./bin/clautunnel"
31
- },
32
- "main": "./dist/index.js",
33
- "types": "./dist/index.d.ts",
34
- "scripts": {
35
- "build": "tsup",
36
- "start": "tsup && node dist/index.js start",
37
- "test": "vitest run",
38
- "test:watch": "vitest",
39
- "clean": "rm -rf dist"
40
- },
41
- "dependencies": {
42
- "@anthropic-ai/claude-agent-sdk": "^0.2.37",
43
- "@supabase/supabase-js": "^2.39.0",
44
- "commander": "^11.1.0",
45
- "dotenv": "^17.2.3",
46
- "qrcode-terminal": "^0.12.0",
47
- "uuid": "^13.0.0",
48
- "ws": "^8.19.0"
49
- },
50
- "devDependencies": {
51
- "@types/node": "^20.10.0",
52
- "@types/uuid": "^11.0.0",
53
- "@types/ws": "^8.18.1",
54
- "clautunnel-shared": "workspace:*",
55
- "tsup": "^8.5.1",
56
- "typescript": "^5.3.3",
57
- "vitest": "^1.2.0"
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
  }