@yemi33/minions 0.1.354 → 0.1.355

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,9 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.354 (2026-04-06)
3
+ ## 0.1.355 (2026-04-06)
4
4
 
5
5
  ### Fixes
6
+ - pipeline plan stage includes only meeting conclusion, not full transcript
6
7
  - pipeline plans include full meeting content, conclusion playbook requires concrete details
7
8
  - pipeline template regex now matches hyphenated stage IDs
8
9
  - pipeline Continue button shows immediate feedback
@@ -227,29 +227,18 @@ function executePlanStage(stage, stageState, run, config) {
227
227
  const depStage = run.stages[depId];
228
228
  if (!depStage) continue;
229
229
 
230
- // If dependency is a meeting, include full findings + transcript
230
+ // If dependency is a meeting, include the conclusion (which should be concrete and actionable)
231
231
  const meetingId = depStage.artifacts?.meetings?.[0];
232
232
  if (meetingId) {
233
233
  try {
234
234
  const mtgPath = path.join(__dirname, '..', 'meetings', meetingId + '.json');
235
235
  const mtg = safeJson(mtgPath);
236
236
  if (mtg) {
237
- content += `## Meeting: ${mtg.title || depId}\n\n`;
238
- content += `**Agenda:** ${mtg.agenda || ''}\n\n`;
239
- // Include each agent's findings
240
- for (const [agent, finding] of Object.entries(mtg.findings || {})) {
241
- const text = typeof finding === 'string' ? finding : finding?.content || '';
242
- if (text) content += `### ${agent} — Findings\n\n${text}\n\n`;
243
- }
244
- // Include debate if present
245
- for (const [agent, debate] of Object.entries(mtg.debate || {})) {
246
- const text = typeof debate === 'string' ? debate : debate?.content || '';
247
- if (text) content += `### ${agent} — Debate\n\n${text}\n\n`;
248
- }
249
- // Include conclusion
250
237
  const conclusion = typeof mtg.conclusion === 'string' ? mtg.conclusion : mtg.conclusion?.content || '';
251
- if (conclusion) content += `### Conclusion\n\n${conclusion}\n\n`;
252
- continue;
238
+ if (conclusion) {
239
+ content += `## Meeting Conclusion: ${mtg.title || depId}\n\n${conclusion}\n\n`;
240
+ continue;
241
+ }
253
242
  }
254
243
  } catch { /* fall through to output-only */ }
255
244
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.354",
3
+ "version": "0.1.355",
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"