@yemi33/minions 0.1.907 → 0.1.909
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 +3 -1
- package/engine.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.909 (2026-04-13)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
|
+
- bump plan-to-prd max turns from 20 to 35
|
|
6
7
|
- add weekly dead code & deprecated cleanup pipeline
|
|
7
8
|
- add red dot notification on CC tab when response completes (#934) (#946)
|
|
8
9
|
|
|
9
10
|
### Fixes
|
|
11
|
+
- pass sysPromptPath instead of steerPromptPath as system prompt in steering resume (#962)
|
|
10
12
|
- PRD item display dispatched/in-progress status conflation (closes #950) (#955)
|
|
11
13
|
- remove KB watchdog — checkpoint never written, restore never worked
|
|
12
14
|
- make KB sweep endpoint async with status polling (#933)
|
package/engine.js
CHANGED
|
@@ -170,7 +170,7 @@ function parseConflictFiles(mergeOutput) {
|
|
|
170
170
|
const _FAST_WORK_TYPES = new Set([WORK_TYPE.EXPLORE, WORK_TYPE.ASK, WORK_TYPE.REVIEW]);
|
|
171
171
|
const _MAX_TURNS_BY_TYPE = {
|
|
172
172
|
[WORK_TYPE.EXPLORE]: 30, [WORK_TYPE.ASK]: 20, [WORK_TYPE.REVIEW]: 30,
|
|
173
|
-
[WORK_TYPE.DECOMPOSE]: 15, [WORK_TYPE.PLAN]: 30, [WORK_TYPE.PLAN_TO_PRD]:
|
|
173
|
+
[WORK_TYPE.DECOMPOSE]: 15, [WORK_TYPE.PLAN]: 30, [WORK_TYPE.PLAN_TO_PRD]: 35,
|
|
174
174
|
[WORK_TYPE.MEETING]: 30,
|
|
175
175
|
[WORK_TYPE.IMPLEMENT]: 75, [WORK_TYPE.IMPLEMENT_LARGE]: 75, [WORK_TYPE.FIX]: 75,
|
|
176
176
|
[WORK_TYPE.TEST]: 50, [WORK_TYPE.VERIFY]: 100, [WORK_TYPE.DOCS]: 30,
|
|
@@ -848,7 +848,7 @@ async function spawnAgent(dispatchItem, config) {
|
|
|
848
848
|
const childEnv = shared.cleanChildEnv();
|
|
849
849
|
let resumeProc;
|
|
850
850
|
try {
|
|
851
|
-
resumeProc = runFile(process.execPath, [spawnScript, steerPromptPath,
|
|
851
|
+
resumeProc = runFile(process.execPath, [spawnScript, steerPromptPath, sysPromptPath, ...resumeArgs], {
|
|
852
852
|
cwd,
|
|
853
853
|
stdio: ['pipe', 'pipe', 'pipe'],
|
|
854
854
|
env: childEnv,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.909",
|
|
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"
|