vibe-monitor 1.0.7 → 1.0.8

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 (3) hide show
  1. package/README.md +1 -1
  2. package/main.js +2 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -55,7 +55,7 @@ npm start
55
55
  | `working` | Blue | Tool executing |
56
56
  | `notification` | Yellow | User input needed |
57
57
  | `done` | Green | Tool completed |
58
- | `sleep` | Navy | 10min inactivity |
58
+ | `sleep` | Navy | 5min inactivity |
59
59
 
60
60
  ## Characters
61
61
 
package/main.js CHANGED
@@ -290,8 +290,8 @@ function setupStateTimeout() {
290
290
  stateTimeoutTimer = setTimeout(() => {
291
291
  updateState({ state: 'idle' });
292
292
  }, IDLE_TIMEOUT);
293
- } else if (currentState === 'idle') {
294
- // idle -> sleep after 5 minutes
293
+ } else if (currentState === 'idle' || currentState === 'notification') {
294
+ // idle/notification -> sleep after 5 minutes
295
295
  stateTimeoutTimer = setTimeout(() => {
296
296
  updateState({ state: 'sleep' });
297
297
  }, SLEEP_TIMEOUT);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-monitor",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "AI coding assistant status monitor",
5
5
  "main": "main.js",
6
6
  "bin": {