@yemi33/minions 0.1.453 → 0.1.455

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,12 +1,21 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.453 (2026-04-07)
3
+ ## 0.1.455 (2026-04-07)
4
+
5
+ ### Fixes
6
+ - agents write one inbox file per task, not two
7
+
8
+ ## 0.1.454 (2026-04-07)
9
+
10
+ ### Fixes
11
+ - CC network error shows Reload Page button for guaranteed recovery
12
+
13
+ ## 0.1.452 (2026-04-07)
4
14
 
5
15
  ### Features
6
16
  - notification dot on Notes & KB sidebar when sweep completes/fails
7
17
 
8
18
  ### Fixes
9
- - wrap inbox writes in try-catch on both meeting conclusion paths
10
19
  - remove duplicate retry logic causing dispatch double-queueing
11
20
  - plan archive/unarchive now optimistic — immediate UI feedback
12
21
  - meeting conclude timeout synthesizes conclusion instead of null
@@ -327,8 +327,9 @@ async function _ccDoSend(message, skipUserMsg) {
327
327
  const retryId = 'cc-retry-' + Date.now();
328
328
  const isNetworkError = e.message === 'Failed to fetch' || e.message.includes('NetworkError');
329
329
  ccAddMessage('assistant', '<span style="color:var(--red)">Error: ' + escHtml(e.message) + '</span>' +
330
- (isNetworkError ? '<div style="font-size:10px;color:var(--muted);margin-top:4px">Dashboard may have restarted. Try again or click New Session.</div>' : '') +
330
+ (isNetworkError ? '<div style="font-size:10px;color:var(--muted);margin-top:4px">Dashboard connection lost. Reload the page to reconnect.</div>' : '') +
331
331
  '<button id="' + retryId + '" onclick="ccRetryLast()" style="margin-top:6px;padding:4px 12px;background:var(--surface2);border:1px solid var(--border);border-radius:4px;color:var(--blue);cursor:pointer;font-size:11px">Retry</button>' +
332
+ (isNetworkError ? ' <button onclick="location.reload()" style="margin-top:6px;padding:4px 12px;background:var(--orange);color:#fff;border:none;border-radius:4px;cursor:pointer;font-size:11px">Reload Page</button>' : '') +
332
333
  ' <button onclick="ccNewSession()" style="margin-top:6px;padding:4px 12px;background:var(--surface2);border:1px solid var(--border);border-radius:4px;color:var(--muted);cursor:pointer;font-size:11px">New Session</button>');
333
334
  }
334
335
  } finally {
@@ -241,12 +241,13 @@ function renderPlaybook(type, vars) {
241
241
  content += `**Never delete, move, or overwrite files in \`knowledge/\`.** The sweep (consolidation engine) is the only process that writes to \`knowledge/\`. If you think a KB file is wrong, note it in your learnings file — do not touch \`knowledge/\` directly.\n`;
242
242
 
243
243
  // Inject learnings requirement
244
- content += `\n\n---\n\n## REQUIRED: Write Learnings\n\n`;
245
- content += `After completing your task, you MUST write a findings/learnings file to:\n`;
246
244
  const timeStamp = new Date().toISOString().slice(11, 16).replace(':', '');
247
245
  const inboxSlug = [vars.agent_id || 'agent', vars.task_id || '', dateStamp(), timeStamp].filter(Boolean).join('-');
246
+ content += `\n\n---\n\n## REQUIRED: Write Learnings\n\n`;
247
+ content += `After completing your task, write **one** findings file to:\n`;
248
248
  content += `\`${MINIONS_DIR}/notes/inbox/${inboxSlug}.md\`\n\n`;
249
- content += `Include:\n`;
249
+ content += `**IMPORTANT: Write exactly ONE inbox file per task.** If the playbook above already specifies an inbox path, use THAT path instead and include your learnings in the same document. Do NOT create a second file — duplicates clog consolidation.\n\n`;
250
+ content += `Include in your findings file:\n`;
250
251
  content += `- What you learned about the codebase\n`;
251
252
  content += `- Patterns you discovered or established\n`;
252
253
  content += `- Gotchas or warnings for future agents\n`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.453",
3
+ "version": "0.1.455",
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"