@yemi33/minions 0.1.67 → 0.1.68

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,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.68 (2026-03-31)
4
+
5
+ ### Dashboard
6
+ - dashboard.js
7
+
3
8
  ## 0.1.67 (2026-03-31)
4
9
 
5
10
  ### Dashboard
package/dashboard.js CHANGED
@@ -263,7 +263,7 @@ const CC_SESSION_MAX_TURNS = 50;
263
263
  let ccSession = { sessionId: null, createdAt: null, lastActiveAt: null, turnCount: 0 };
264
264
  let ccInFlight = false;
265
265
  let ccInFlightSince = 0; // timestamp — auto-release stuck guard
266
- const CC_INFLIGHT_TIMEOUT_MS = 11 * 60 * 1000; // 11 minutes (slightly > LLM timeout)
266
+ const CC_INFLIGHT_TIMEOUT_MS = 2 * 60 * 1000; // 2 minutes auto-release if request hangs
267
267
 
268
268
  function ccSessionValid() {
269
269
  if (!ccSession.sessionId) return false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.67",
3
+ "version": "0.1.68",
4
4
  "description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
5
5
  "bin": {
6
6
  "minions": "bin/minions.js"