dual-brain 3.0.0 → 3.0.1
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/install.mjs +23 -0
- package/package.json +1 -1
package/install.mjs
CHANGED
|
@@ -397,6 +397,29 @@ function printReport(env, mode, actions) {
|
|
|
397
397
|
console.log('');
|
|
398
398
|
for (const l of lines) console.log(` ${l}`);
|
|
399
399
|
console.log('');
|
|
400
|
+
|
|
401
|
+
if (actions) {
|
|
402
|
+
console.log(' What just happened:');
|
|
403
|
+
console.log(' Every Claude Code session in this project now auto-routes');
|
|
404
|
+
console.log(' agent work by complexity — cheap models for search, mid-tier');
|
|
405
|
+
console.log(' for execution, best models for thinking. Cost is tracked.');
|
|
406
|
+
if (mode.mode === 'dual') {
|
|
407
|
+
console.log(' Both Claude and GPT are available as work providers.');
|
|
408
|
+
}
|
|
409
|
+
console.log('');
|
|
410
|
+
console.log(' Try these in your next Claude Code session:');
|
|
411
|
+
console.log(' node .claude/hooks/health-check.mjs # verify setup');
|
|
412
|
+
console.log(' node .claude/hooks/cost-report.mjs # see activity');
|
|
413
|
+
console.log(' node .claude/hooks/budget-balancer.mjs # provider balance');
|
|
414
|
+
if (mode.openaiEnabled) {
|
|
415
|
+
console.log(' node .claude/hooks/dual-brain-review.mjs # GPT code review');
|
|
416
|
+
}
|
|
417
|
+
console.log('');
|
|
418
|
+
console.log(' Customize:');
|
|
419
|
+
console.log(' .claude/review-rules.md # your project\'s review rules');
|
|
420
|
+
console.log(' .claude/orchestrator.json # routing, budgets, tiers');
|
|
421
|
+
console.log('');
|
|
422
|
+
}
|
|
400
423
|
}
|
|
401
424
|
|
|
402
425
|
// ─── Main ───────────────────────────────────────────────────────────────────
|
package/package.json
CHANGED