dual-brain 5.0.1 → 5.1.0
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/CLAUDE.md +32 -1
- package/hooks/budget-balancer.mjs +162 -109
- package/hooks/control-panel.mjs +61 -0
- package/hooks/wave-orchestrator.mjs +970 -0
- package/install.mjs +1 -0
- package/package.json +1 -1
package/install.mjs
CHANGED
|
@@ -857,6 +857,7 @@ function install(workspace, env, mode) {
|
|
|
857
857
|
'summary-checkpoint.mjs', 'decision-ledger.mjs', 'control-panel.mjs',
|
|
858
858
|
'risk-classifier.mjs', 'failure-detector.mjs',
|
|
859
859
|
'vibe-router.mjs', 'plan-generator.mjs', 'vibe-memory.mjs',
|
|
860
|
+
'wave-orchestrator.mjs',
|
|
860
861
|
];
|
|
861
862
|
for (const h of HOOKS) cpSync(join(__dirname, 'hooks', h), join(target, 'hooks', h));
|
|
862
863
|
actions.push(`✓ ${HOOKS.length} hook scripts`);
|
package/package.json
CHANGED