@yemi33/minions 0.1.926 → 0.1.927
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 +2 -2
- package/dashboard/js/modal-qa.js +3 -3
- package/dashboard.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.927 (2026-04-13)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- doc-chat abort kills LLM process + queued messages auto-process
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
- add red dot notification on CC tab when response completes (#934) (#946)
|
|
21
21
|
|
|
22
22
|
### Fixes
|
|
23
|
+
- qaAbort race + skip kill on completed doc-chat
|
|
23
24
|
- doc-chat Stop button actually works — release server guard on disconnect
|
|
24
25
|
- CC streaming auto-retries fresh session when resume fails
|
|
25
26
|
- 429 retry on abort race applies to all sends, not just queued
|
|
@@ -39,7 +40,6 @@
|
|
|
39
40
|
- PRD item display dispatched/in-progress status conflation (closes #950) (#955)
|
|
40
41
|
- remove KB watchdog — checkpoint never written, restore never worked
|
|
41
42
|
- make KB sweep endpoint async with status polling (#933)
|
|
42
|
-
- prohibit agents from self-merging their own PRs
|
|
43
43
|
|
|
44
44
|
### Other
|
|
45
45
|
- test(preflight): add unit tests for findClaudeBinary, runPreflight, printPreflight, checkOrExit (#953)
|
package/dashboard/js/modal-qa.js
CHANGED
|
@@ -340,9 +340,9 @@ function qaAbort() {
|
|
|
340
340
|
_qaAbortController.abort();
|
|
341
341
|
_qaAbortController = null;
|
|
342
342
|
}
|
|
343
|
-
//
|
|
344
|
-
|
|
345
|
-
// Don't clear _qaQueue — queued messages
|
|
343
|
+
// Don't reset _qaProcessing here — the catch block in _processQaMessage handles it,
|
|
344
|
+
// avoiding a double-drain race on _qaQueue from a microtask gap.
|
|
345
|
+
// Don't clear _qaQueue — queued messages auto-process after abort.
|
|
346
346
|
}
|
|
347
347
|
|
|
348
348
|
function toggleDocChat() {
|
package/dashboard.js
CHANGED
|
@@ -2989,7 +2989,7 @@ What would you like to discuss or change? When you're happy, say "approve" and I
|
|
|
2989
2989
|
return jsonReply(res, 200, { ok: true, answer, edited: true, content, actions });
|
|
2990
2990
|
}
|
|
2991
2991
|
return jsonReply(res, 200, { ok: true, answer: answer + '\n\n(Read-only — changes not saved)', edited: false, actions });
|
|
2992
|
-
} finally { docChatInFlight.delete(docKey); }
|
|
2992
|
+
} finally { _docAbort = null; docChatInFlight.delete(docKey); }
|
|
2993
2993
|
} catch (e) { return jsonReply(res, 500, { error: e.message }); }
|
|
2994
2994
|
}
|
|
2995
2995
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.927",
|
|
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"
|