@yemi33/minions 0.1.573 → 0.1.574

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,10 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.573 (2026-04-08)
3
+ ## 0.1.574 (2026-04-08)
4
4
 
5
5
  ### Fixes
6
6
  - remove dead stdin prepend path, clean up spawn-agent cache logic
7
7
 
8
+ ### Other
9
+ - perf: skip preamble on streaming session resume
10
+
8
11
  ## 0.1.572 (2026-04-08)
9
12
 
10
13
  ### Features
package/dashboard.js CHANGED
@@ -3374,8 +3374,8 @@ What would you like to discuss or change? When you're happy, say "approve" and I
3374
3374
  }
3375
3375
  const wasResume = !!(ccSessionValid() && ccSession.sessionId);
3376
3376
  const sessionId = wasResume ? ccSession.sessionId : null;
3377
- const preamble = buildCCStatePreamble();
3378
- const prompt = preamble + '\n\n---\n\n' + body.message;
3377
+ const preamble = wasResume ? '' : buildCCStatePreamble();
3378
+ const prompt = (preamble ? preamble + '\n\n---\n\n' : '') + body.message;
3379
3379
 
3380
3380
  const { callLLMStreaming, trackEngineUsage: trackUsage } = require('./engine/llm');
3381
3381
  const streamModel = CONFIG.engine?.ccModel || shared.ENGINE_DEFAULTS.ccModel;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.573",
3
+ "version": "0.1.574",
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"