@yemi33/minions 0.1.1589 → 0.1.1590

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,10 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.1589 (2026-04-28)
3
+ ## 0.1.1590 (2026-04-28)
4
4
 
5
5
  ### Features
6
6
  - Pluggable CLI runtime adapters (Claude + GitHub Copilot) (#1804)
7
7
 
8
+ ### Fixes
9
+ - remove duplicate DOC_CHAT_TIMEOUT_MS declaration crashing startup
10
+
8
11
  ## 0.1.1588 (2026-04-28)
9
12
 
10
13
  ### Other
package/dashboard.js CHANGED
@@ -548,7 +548,6 @@ const ccLiveStreams = new Map(); // tabId → buffered live stream state for rec
548
548
  const CC_INFLIGHT_TIMEOUT_MS = 2 * 60 * 1000; // 2 minutes — auto-release if request hangs
549
549
  const CC_LOCK_WAIT_MS = 200; // grace period for previous handler's finally to release lock
550
550
  const CC_STREAM_HEARTBEAT_MS = 15000; // keep streaming responses alive across proxies/restart races
551
- const DOC_CHAT_TIMEOUT_MS = 360000; // allow longer doc-chat turns before timing out server-side
552
551
  const CC_STREAM_REATTACH_GRACE_MS = 60000; // keep CC job alive briefly after disconnect so the UI can reattach
553
552
  const CC_STREAM_DONE_RETENTION_MS = 30000; // retain final payload briefly so reconnect can still receive it
554
553
  // Doc-chat is interactive — long-doc edits with multi-step Read+Write tool use can run
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1589",
3
+ "version": "0.1.1590",
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"