minimax-status 1.0.2 → 1.0.3

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/cli/index.js CHANGED
@@ -335,8 +335,8 @@ function startWatching(api, statusBar) {
335
335
  // Initial update
336
336
  update();
337
337
 
338
- // Update every 30 seconds
339
- intervalId = setInterval(update, 30000);
338
+ // Update every 10 seconds for near real-time updates
339
+ intervalId = setInterval(update, 10000);
340
340
 
341
341
  // Handle Ctrl+C
342
342
  process.on("SIGINT", () => {
package/cli/statusbar.js CHANGED
@@ -94,8 +94,8 @@ class TerminalStatusBar {
94
94
  // 立即更新一次
95
95
  await update();
96
96
 
97
- // 每 30 秒更新
98
- setInterval(update, 30000);
97
+ // 每 10 秒更新(近实时)
98
+ setInterval(update, 10000);
99
99
 
100
100
  // 处理 Ctrl+C
101
101
  process.on('SIGINT', () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minimax-status",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "MiniMax Claude Code 使用状态监控工具",
5
5
  "bin": {
6
6
  "minimax-status": "./cli/index.js",