dual-brain 0.1.22 → 0.1.23
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/bin/dual-brain.mjs +5 -5
- package/package.json +1 -1
package/bin/dual-brain.mjs
CHANGED
|
@@ -909,7 +909,7 @@ function cmdBreakGlass(reason) {
|
|
|
909
909
|
// ─── Screen helpers ───────────────────────────────────────────────────────────
|
|
910
910
|
|
|
911
911
|
/**
|
|
912
|
-
* Render the
|
|
912
|
+
* Render the dual-brain-style rounded header box for the main screen.
|
|
913
913
|
* Inner width is 39 chars. Lines are padded with spaces to fill the box.
|
|
914
914
|
*/
|
|
915
915
|
function renderHeader(version, providerLines, dtVersion) {
|
|
@@ -924,11 +924,11 @@ function renderHeader(version, providerLines, dtVersion) {
|
|
|
924
924
|
const bottom = ` └${'─'.repeat(W)}┘`;
|
|
925
925
|
|
|
926
926
|
const title = `🧠 Dual Brain v${version}`;
|
|
927
|
-
const credit = `
|
|
927
|
+
const credit = `dual-brain`;
|
|
928
928
|
|
|
929
929
|
const allProviderLines = [...providerLines];
|
|
930
930
|
if (dtVersion) {
|
|
931
|
-
allProviderLines.push(`📦
|
|
931
|
+
allProviderLines.push(`📦 replit-tools v${dtVersion} detected`);
|
|
932
932
|
}
|
|
933
933
|
|
|
934
934
|
const lines = [top];
|
|
@@ -1711,7 +1711,7 @@ async function mainScreen(rl, ask) {
|
|
|
1711
1711
|
|
|
1712
1712
|
const statusRows = [row(providerLine)];
|
|
1713
1713
|
if (dtVersion) {
|
|
1714
|
-
statusRows.push(row(`\x1b[2m📦
|
|
1714
|
+
statusRows.push(row(`\x1b[2m📦 replit-tools v${dtVersion}\x1b[0m`));
|
|
1715
1715
|
}
|
|
1716
1716
|
|
|
1717
1717
|
// ── Observer observations (top 2, high priority first) ───────────────────
|
|
@@ -1843,7 +1843,7 @@ async function mainScreen(rl, ask) {
|
|
|
1843
1843
|
|
|
1844
1844
|
// ── Print the full box ────────────────────────────────────────────────────
|
|
1845
1845
|
// Include action cards between status and sessions (with separators only when non-empty)
|
|
1846
|
-
const poweredByRow = row('\x1b[2mPowered by
|
|
1846
|
+
const poweredByRow = row('\x1b[2mPowered by dual-brain\x1b[0m');
|
|
1847
1847
|
const lines = [
|
|
1848
1848
|
top,
|
|
1849
1849
|
...statusRows,
|
package/package.json
CHANGED