claude-code-remote-pilot 0.4.1 → 0.4.2
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 +7 -0
- package/lib/Watcher.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.4.2 — 2026-05-06
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- False limit detection when running `/usage` inside a Claude session. The `/usage` output contains "Resets 6:30pm" which was matching the `resets` keyword. Tightened `LIMIT_RE` to require more specific phrases (`hit your limit`, `usage limit`, `rate limit`, `limit reached`, `try again after`) that only appear in actual limit-hit messages.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
3
10
|
## 0.4.1 — 2026-05-06
|
|
4
11
|
|
|
5
12
|
### Added
|
package/lib/Watcher.js
CHANGED
|
@@ -3,7 +3,7 @@ const { execSync, spawnSync } = require('child_process');
|
|
|
3
3
|
const crypto = require('crypto');
|
|
4
4
|
const notifier = require('./notifier');
|
|
5
5
|
|
|
6
|
-
const LIMIT_RE = /hit your limit|usage limit|rate limit|limit reached|try again
|
|
6
|
+
const LIMIT_RE = /hit your limit|usage limit|rate limit|limit reached|try again after/i;
|
|
7
7
|
const RESPONSE_RE = /do you want to proceed|esc to cancel|ctrl\+e to explain|❯\s*\d+\.\s*yes/i;
|
|
8
8
|
const RUNNING_RE = /esc to interrupt/i;
|
|
9
9
|
// Claude Code footer: "tokens: ↑1,234 ↓567" or "↑1.2k ↓890"
|
package/package.json
CHANGED