@yemi33/minions 0.1.27 → 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,13 @@
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
+
3
11
  ## 0.1.27 (2026-03-28)
4
12
 
5
13
  ### 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
@@ -1043,7 +1043,7 @@ function spawnAgent(dispatchItem, config) {
1043
1043
  log('info', `Steering: re-spawning ${agentId} with --resume ${steerSessionId}`);
1044
1044
 
1045
1045
  // Write new prompt with steering message
1046
- 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.`;
1047
1047
  const steerPromptPath = path.join(ENGINE_DIR, 'tmp', `prompt-steer-${id}.md`);
1048
1048
  safeWrite(steerPromptPath, steerPrompt);
1049
1049
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.27",
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"