dual-brain 0.1.3 → 0.1.4

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/profile.mjs +0 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dual-brain",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
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/profile.mjs CHANGED
@@ -387,8 +387,6 @@ function loadProfile(cwd) {
387
387
  if (!profile.providers[provider]) continue;
388
388
  const stored = profile.providers[provider].plan;
389
389
  if (stored !== detectedPlan) {
390
- const providerName = provider === 'claude' ? 'Claude' : 'OpenAI';
391
- process.stderr.write(`[dual-brain] ${providerName}: plan updated to ${detectedPlan} (from auth config)\n`);
392
390
  profile.providers[provider].plan = detectedPlan;
393
391
  }
394
392
  }