@yemi33/minions 0.1.663 → 0.1.665
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/dashboard/js/render-prd.js +2 -2
- package/engine.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.665 (2026-04-09)
|
|
4
4
|
|
|
5
5
|
### Fixes
|
|
6
|
+
- write status marker to live output during steering resume gap
|
|
7
|
+
- PRD list/graph toggle uses rerenderPrdFromCache instead of refresh
|
|
6
8
|
- include agent and failReason in PRD progress items mapping
|
|
7
9
|
- skip unused config read in fast poll, fix timer cleanup variable name
|
|
8
10
|
- retry button broken for project-level work items, add _source field
|
|
@@ -422,8 +422,8 @@ function renderPrdProgress(prog) {
|
|
|
422
422
|
const renderViewToggle = () => {
|
|
423
423
|
const isGraph = window._prdViewMode === 'graph';
|
|
424
424
|
return '<div style="display:flex;gap:4px;margin-bottom:8px;padding:0 8px">' +
|
|
425
|
-
'<button class="pr-pager-btn" style="font-size:9px;padding:2px 8px;' + (isGraph ? 'background:var(--blue);color:#fff;border-color:var(--blue)' : '') + '" onclick="window._prdViewMode=\'graph\';
|
|
426
|
-
'<button class="pr-pager-btn" style="font-size:9px;padding:2px 8px;' + (!isGraph ? 'background:var(--blue);color:#fff;border-color:var(--blue)' : '') + '" onclick="window._prdViewMode=\'list\';
|
|
425
|
+
'<button class="pr-pager-btn" style="font-size:9px;padding:2px 8px;' + (isGraph ? 'background:var(--blue);color:#fff;border-color:var(--blue)' : '') + '" onclick="window._prdViewMode=\'graph\';rerenderPrdFromCache()">Graph</button>' +
|
|
426
|
+
'<button class="pr-pager-btn" style="font-size:9px;padding:2px 8px;' + (!isGraph ? 'background:var(--blue);color:#fff;border-color:var(--blue)' : '') + '" onclick="window._prdViewMode=\'list\';rerenderPrdFromCache()">List</button>' +
|
|
427
427
|
'</div>';
|
|
428
428
|
};
|
|
429
429
|
|
package/engine.js
CHANGED
|
@@ -646,6 +646,8 @@ async function spawnAgent(dispatchItem, config) {
|
|
|
646
646
|
}
|
|
647
647
|
|
|
648
648
|
log('info', `Steering: re-spawning ${agentId} with --resume ${steerSessionId}`);
|
|
649
|
+
// Write status to live output so the UI shows the agent is resuming (not stuck)
|
|
650
|
+
try { fs.appendFileSync(liveOutputPath, `\n[steering] Resuming session with your message... (this may take 10-30s)\n`); } catch {}
|
|
649
651
|
|
|
650
652
|
// Write new prompt with steering message
|
|
651
653
|
const steerPrompt = `Message from your human teammate:\n\n${steerMsg}\n\nRespond to this, then continue working on your current task.`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.665",
|
|
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"
|