@yemi33/minions 0.1.26 → 0.1.28

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,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.28 (2026-03-28)
4
+
5
+ ### Engine
6
+ - engine.js
7
+
8
+ ### Dashboard
9
+ - dashboard/js/detail-panel.js
10
+
11
+ ## 0.1.27 (2026-03-28)
12
+
13
+ ### Engine
14
+ - engine.js
15
+
3
16
  ## 0.1.26 (2026-03-28)
4
17
 
5
18
  ### Engine
@@ -71,7 +71,7 @@ function renderDetailContent(detail, tab) {
71
71
  '<button class="pr-pager-btn" onclick="refreshLiveOutput()" style="font-size:10px">Refresh</button>' +
72
72
  '</div>' +
73
73
  '<div id="live-steer-bar" style="display:flex;gap:8px;padding:8px;border-top:1px solid var(--border)">' +
74
- '<input id="live-steer-input" type="text" placeholder="Steer this agent... (give additional context or redirect)" ' +
74
+ '<input id="live-steer-input" type="text" placeholder="Message this agent — ask for status, give context, or redirect..." ' +
75
75
  'style="flex:1;padding:6px 10px;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius-sm);color:var(--text);font-size:12px;font-family:inherit" ' +
76
76
  'onkeydown="if(event.key===\'Enter\')sendSteering()" />' +
77
77
  '<button onclick="sendSteering()" style="padding:6px 12px;background:var(--blue);color:#fff;border:none;border-radius:var(--radius-sm);cursor:pointer;font-size:11px">Send</button>' +
package/engine.js CHANGED
@@ -52,11 +52,10 @@ function validateConfig(config) {
52
52
  console.error('FATAL: No agents defined in config.json');
53
53
  errors++;
54
54
  }
55
- // Projects
55
+ // Projects (optional — engine works with central work items even without projects)
56
56
  const projects = getProjects(config);
57
57
  if (projects.length === 0) {
58
- console.error('FATAL: No projects configured');
59
- errors++;
58
+ console.log(' No projects linked — add one with: minions add <dir>');
60
59
  }
61
60
  for (const p of projects) {
62
61
  if (!p.localPath || !fs.existsSync(path.resolve(p.localPath))) {
@@ -1044,7 +1043,7 @@ function spawnAgent(dispatchItem, config) {
1044
1043
  log('info', `Steering: re-spawning ${agentId} with --resume ${steerSessionId}`);
1045
1044
 
1046
1045
  // Write new prompt with steering message
1047
- const steerPrompt = `HUMAN STEERING MESSAGE:\n\n${steerMsg}\n\nPlease acknowledge this update and adjust your approach accordingly. Continue working on your current task with this new context.`;
1046
+ const steerPrompt = `Message from your human teammate:\n\n${steerMsg}\n\nRespond to this, then continue working on your current task.`;
1048
1047
  const steerPromptPath = path.join(ENGINE_DIR, 'tmp', `prompt-steer-${id}.md`);
1049
1048
  safeWrite(steerPromptPath, steerPrompt);
1050
1049
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.26",
3
+ "version": "0.1.28",
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"