@yemi33/minions 0.1.480 → 0.1.481
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 +5 -1
- package/README.md +1 -1
- package/engine.js +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.481 (2026-04-07)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- file bugs as GitHub issues from CC or doc-chat
|
|
@@ -13,9 +13,13 @@
|
|
|
13
13
|
- Limit SSE initial live-stream payload to last 64KB
|
|
14
14
|
|
|
15
15
|
### Fixes
|
|
16
|
+
- stamp dispatched_to on already-dispatched early-exit path
|
|
16
17
|
- add optional chaining for config.agents in updatePrAfterReview
|
|
17
18
|
- pass config to updatePrAfterReview to fix test failure
|
|
18
19
|
|
|
20
|
+
### Other
|
|
21
|
+
- docs: document bug filing feature in README and CLAUDE.md
|
|
22
|
+
|
|
19
23
|
## 0.1.473 (2026-04-07)
|
|
20
24
|
|
|
21
25
|
### Fixes
|
package/README.md
CHANGED
|
@@ -235,7 +235,7 @@ You can also run scripts directly: `node ~/.minions/engine.js start`, `node ~/.m
|
|
|
235
235
|
The web dashboard at `http://localhost:7331` provides:
|
|
236
236
|
|
|
237
237
|
- **Projects bar** — all linked projects with descriptions (hover for full text)
|
|
238
|
-
- **Command Center** — add work items, notes, plans (multi-project via `#project` tags). "make a plan for..." auto-detection, "remember" keyword, `--parallel`/`--shared` flags, arrow key history, Past Commands modal. Session state persists across refreshes.
|
|
238
|
+
- **Command Center** — add work items, notes, plans (multi-project via `#project` tags). "make a plan for..." auto-detection, "remember" keyword, `--parallel`/`--shared` flags, arrow key history, Past Commands modal. Session state persists across refreshes. File bugs as GitHub issues ("file this as a bug").
|
|
239
239
|
- **Minions Members** — agent cards with status and result summary, click for charter/history/output detail panel
|
|
240
240
|
- **Live Output tab** — real-time streaming output for working agents (auto-refreshes every 3s)
|
|
241
241
|
- **Work Items** — paginated table (20/page) with status, source, type, priority, assigned agent, linked PRs, fan-out badges, retry/delete/archive with optimistic updates
|
package/engine.js
CHANGED
|
@@ -1504,6 +1504,10 @@ function discoverFromWorkItems(config, project) {
|
|
|
1504
1504
|
}
|
|
1505
1505
|
if (isAlreadyDispatched(key)) {
|
|
1506
1506
|
if (item.status === WI_STATUS.PENDING) { item.status = WI_STATUS.DISPATCHED; needsWrite = true; }
|
|
1507
|
+
if (!item.dispatched_to) {
|
|
1508
|
+
const existing = getDispatch().active?.find(d => d.meta?.dispatchKey === key);
|
|
1509
|
+
if (existing?.agent) { item.dispatched_to = existing.agent; needsWrite = true; }
|
|
1510
|
+
}
|
|
1507
1511
|
if (item._pendingReason !== 'already_dispatched') { item._pendingReason = 'already_dispatched'; needsWrite = true; }
|
|
1508
1512
|
skipped.gated++; continue;
|
|
1509
1513
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.481",
|
|
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"
|