@yemi33/minions 0.1.922 → 0.1.923

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,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.922 (2026-04-13)
3
+ ## 0.1.923 (2026-04-13)
4
4
 
5
5
  ### Features
6
6
  - add /api/work-items/reopen endpoint and reopen-work-item CC action (#982)
@@ -19,6 +19,7 @@
19
19
  - add red dot notification on CC tab when response completes (#934) (#946)
20
20
 
21
21
  ### Fixes
22
+ - 429 retry on abort race applies to all sends, not just queued
22
23
  - show actionable failure context instead of Unknown error (#1003)
23
24
  - prioritize error_max_turns over permission-blocked in classifyFailure (#1001)
24
25
  - optimistic archive hides both PRD and linked source plan simultaneously
@@ -38,6 +39,7 @@
38
39
  - prohibit agents from self-merging their own PRs
39
40
 
40
41
  ### Other
42
+ - test(preflight): add unit tests for findClaudeBinary, runPreflight, printPreflight, checkOrExit (#953)
41
43
  - test(meeting): add unit tests for key functions (#957)
42
44
  - [E2E] Architecture meeting Tier 1+2: 6 correctness bugs + 2 nested lock violations + log buffering (#972)
43
45
 
@@ -538,12 +538,11 @@ async function _ccDoSend(message, skipUserMsg, forceTabId) {
538
538
  });
539
539
 
540
540
  if (!res.ok) {
541
- // 429 = server still processing previous request (abort race) — retry silently up to 3 times
541
+ // 429 = server still releasing previous request (abort race) — retry silently up to 3 times
542
542
  if (res.status === 429 && (!activeTab._429retries || activeTab._429retries < 3)) {
543
543
  activeTab._429retries = (activeTab._429retries || 0) + 1;
544
- _cleanupStreamDiv();
545
544
  await new Promise(function(r) { setTimeout(r, 1500); });
546
- return await _ccDoSend(message, true);
545
+ return await _ccDoSend(message, true); // retry with skipUserMsg=true (already displayed)
547
546
  }
548
547
  activeTab._429retries = 0;
549
548
  _cleanupStreamDiv();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.922",
3
+ "version": "0.1.923",
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"