@yemi33/minions 0.1.849 → 0.1.850

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,8 +1,10 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.849 (2026-04-11)
3
+ ## 0.1.850 (2026-04-11)
4
4
 
5
5
  ### Features
6
+ - Replace raw status strings with WI_STATUS constants in dashboard.js (#657)
7
+ - fix dispatch.json race condition in CLI kill-all (#653)
6
8
  - optimistic UI updates for all remaining dashboard pages
7
9
  - optimistic UI updates for all dashboard actions
8
10
  - per-item Re-open button on done PRD items (deterministic fallback)
package/dashboard.js CHANGED
@@ -1416,7 +1416,7 @@ const server = http.createServer(async (req, res) => {
1416
1416
  const planFile = 'manual-' + shared.uid() + '.json';
1417
1417
  const plan = {
1418
1418
  version: 'manual-' + new Date().toISOString().slice(0, 10),
1419
- project: body.project || (PROJECTS[0]?.name || 'Unknown'),
1419
+ project: body.project || (PROJECTS.length > 0 ? PROJECTS[0].name : 'Unknown'),
1420
1420
  generated_by: 'dashboard',
1421
1421
  generated_at: new Date().toISOString().slice(0, 10),
1422
1422
  plan_summary: body.name,
package/engine/cli.js CHANGED
@@ -18,6 +18,9 @@ function engine() {
18
18
  return _engine;
19
19
  }
20
20
 
21
+ let _dispatchModule = null;
22
+ function dispatchModule() { if (!_dispatchModule) _dispatchModule = require('./dispatch'); return _dispatchModule; }
23
+
21
24
  function handleCommand(cmd, args) {
22
25
  if (!cmd) {
23
26
  commands.start();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.849",
3
+ "version": "0.1.850",
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"