tapback-cli 0.0.3 → 0.0.4

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.
@@ -0,0 +1,3 @@
1
+ {
2
+ "MD033": false
3
+ }
package/README.md CHANGED
@@ -4,9 +4,22 @@
4
4
 
5
5
  tmuxセッションの出力をWebSocket経由でリアルタイム配信し、スマホからターミナルの閲覧・コマンド入力ができます。
6
6
 
7
+ <p align="center">
8
+ <img src="images/terminal.png" width="280" alt="Terminal"><br>
9
+ <em>ターミナル起動画面 — URL・PIN・設定情報を表示</em>
10
+ </p>
11
+ <p align="center">
12
+ <img src="images/settings.png" width="280" alt="Settings"><br>
13
+ <em>設定画面 — PIN認証・プロキシポート・クイックボタンの管理</em>
14
+ </p>
15
+ <p align="center">
16
+ <img src="images/phone.png" width="280" alt="Phone"><br>
17
+ <em>モバイルUI — tmux出力のリアルタイム表示とコマンド送信</em>
18
+ </p>
19
+
7
20
  ## 機能
8
21
 
9
- - tmuxセッションのリアルタイム監視(1秒間隔)
22
+ - tmuxセッションのリアルタイム監視(0.5秒間隔)
10
23
  - モバイルからのコマンド送信
11
24
  - Claude Codeのステータス表示(hooks連携)
12
25
  - localhostアプリのリバースプロキシ
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tapback-cli",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Monitor and control tmux sessions from your mobile device",
5
5
  "bin": {
6
6
  "tb": "./bin/cli.js"
package/src/server.js CHANGED
@@ -204,7 +204,7 @@ function createServer({ port = 9876, pinEnabled = true, quickButtons = [], appUR
204
204
  if (ws.readyState === 1) ws.send(msg);
205
205
  }
206
206
  }
207
- }, 1000);
207
+ }, 500);
208
208
 
209
209
  server.listen(port, '0.0.0.0');
210
210