claude-code-remote-pilot 0.3.0 → 0.3.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.1 — 2026-05-06
4
+
5
+ ### Changed
6
+ - Status check interval reduced from 30s → 5s (faster running/idle/limit detection)
7
+ - Watch screen refresh rate reduced from 2s → 1s
8
+
9
+ ---
10
+
3
11
  ## 0.3.0 — 2026-05-06
4
12
 
5
13
  ### Added
@@ -187,7 +187,7 @@ function startWatch(manager, rl) {
187
187
  }
188
188
 
189
189
  function startTimer() {
190
- timer.id = setInterval(draw, 2000);
190
+ timer.id = setInterval(draw, 1000);
191
191
  }
192
192
 
193
193
  function stopTimer() {
package/lib/Watcher.js CHANGED
@@ -16,7 +16,7 @@ class Watcher {
16
16
  this.session = session;
17
17
  this.telegram = opts.telegram || {};
18
18
  this.onEnded = opts.onEnded || (() => {});
19
- this.checkInterval = opts.checkInterval || 30000;
19
+ this.checkInterval = opts.checkInterval || 5000;
20
20
  this.fallbackWait = opts.fallbackWait || 300;
21
21
  this.cooldown = opts.cooldown || 180;
22
22
  this.captureLines = opts.captureLines || 500;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-remote-pilot",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Interactive Claude Code supervisor — spawn and monitor multiple Claude sessions from a single terminal.",
5
5
  "type": "commonjs",
6
6
  "bin": {