dual-brain 0.2.1 → 0.2.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/dispatch.mjs +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dual-brain",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "AI orchestration across Claude + OpenAI subscriptions — smart routing, budget awareness, and dual-brain collaboration",
5
5
  "type": "module",
6
6
  "bin": {
package/src/dispatch.mjs CHANGED
@@ -709,7 +709,7 @@ async function dispatch(input = {}) {
709
709
  ? input.situationBrief.trim()
710
710
  : null;
711
711
  if (situationBrief) {
712
- prompt = `--- SITUATION BRIEF ---\n${situationBrief}\n--- END BRIEF ---\n\n${prompt}`;
712
+ prompt = `[SITUATION BRIEF]\n${situationBrief}\n[END BRIEF]\n\n${prompt}`;
713
713
  }
714
714
  // ── End situation brief ──────────────────────────────────────────────────────
715
715
 
@@ -1071,7 +1071,7 @@ async function dispatchDualBrain(input = {}) {
1071
1071
  ? input.situationBrief.trim()
1072
1072
  : null;
1073
1073
  if (_dualBrainBrief) {
1074
- prompt = `--- SITUATION BRIEF ---\n${_dualBrainBrief}\n--- END BRIEF ---\n\n${prompt}`;
1074
+ prompt = `[SITUATION BRIEF]\n${_dualBrainBrief}\n[END BRIEF]\n\n${prompt}`;
1075
1075
  }
1076
1076
  // ── End situation brief ──────────────────────────────────────────────────────
1077
1077