@yemi33/minions 0.1.454 → 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,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.455 (2026-04-07)
4
+
5
+ ### Fixes
6
+ - agents write one inbox file per task, not two
7
+
3
8
  ## 0.1.454 (2026-04-07)
4
9
 
5
10
  ### Fixes
@@ -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.454",
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"