psyclaw 0.29.2 → 0.29.3
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/README.md +4 -4
- package/dist/apps/panel/index.html +2100 -54
- package/dist/src/adapters/pi/extension.js +5 -12
- package/dist/src/adapters/pi/extension.js.map +1 -1
- package/dist/src/panel/extension.js +14 -5
- package/dist/src/panel/extension.js.map +1 -1
- package/dist/src/panel/server.js +39 -1
- package/dist/src/panel/server.js.map +1 -1
- package/dist/src/session/modes.d.ts +1 -1
- package/dist/src/session/modes.js +2 -2
- package/dist/src/session/modes.js.map +1 -1
- package/package.json +1 -1
- package/scripts/rebrand-pi.mjs +4 -2
package/scripts/rebrand-pi.mjs
CHANGED
|
@@ -121,8 +121,9 @@ const VAR_STACKED_PET = `[
|
|
|
121
121
|
const VAR_SLANT_CLASSIC = buildCustomVariant(FONT_SLANT_CLASSIC);
|
|
122
122
|
const VAR_3D_BLOCK = buildCustomVariant(FONT_3D_BLOCK);
|
|
123
123
|
const VAR_SERIF = buildCustomVariant(FONT_SERIF);
|
|
124
|
-
const GRAD_PIPELINE = "\\x1b[38;2;45;212;191m• Pipeline :\\x1b[0m \\x1b[1m\\x1b[38;2;56;189;248mintake\\x1b[0m \\x1b[38;2;99;102;241m➔\\x1b[0m \\x1b[1m\\x1b[38;2;129;140;
|
|
125
|
-
const GRAD_PROTOCOL = "\\x1b[38;2;45;212;191m• Protocol :\\x1b[0m \\x1b[1m\\x1b[38;2;52;211;153m✔ 2+
|
|
124
|
+
const GRAD_PIPELINE = "\\x1b[38;2;45;212;191m• Pipeline :\\x1b[0m \\x1b[1m\\x1b[38;2;56;189;248mintake\\x1b[0m \\x1b[38;2;99;102;241m➔\\x1b[0m \\x1b[1m\\x1b[38;2;129;140;248mevidence\\x1b[0m \\x1b[38;2;168;85;247m➔\\x1b[0m \\x1b[1m\\x1b[38;2;168;85;247mstats-plan\\x1b[0m \\x1b[38;2;236;72;153m➔\\x1b[0m \\x1b[1m\\x1b[38;2;244;63;94mmanuscript\\x1b[0m \\x1b[38;2;99;102;241m➔\\x1b[0m \\x1b[1m\\x1b[38;2;45;212;191mpeer-review\\x1b[0m";
|
|
125
|
+
const GRAD_PROTOCOL = "\\x1b[38;2;45;212;191m• Protocol :\\x1b[0m \\x1b[1m\\x1b[38;2;52;211;153m✔ 2+ Cross-Check\\x1b[0m \\x1b[38;2;100;116;139m·\\x1b[0m \\x1b[1m\\x1b[38;2;45;212;191m✔ SHA-256 Ledger\\x1b[0m \\x1b[38;2;100;116;139m·\\x1b[0m \\x1b[1m\\x1b[38;2;168;85;247m✔ Non-Compromise Gates\\x1b[0m";
|
|
126
|
+
const GRAD_MODES = "\\x1b[38;2;45;212;191m• Modes :\\x1b[0m \\x1b[1m\\x1b[38;2;56;189;248mShift+Tab\\x1b[0m \\x1b[38;2;148;163;184m⇄\\x1b[0m \\x1b[1mchat\\x1b[0m \\x1b[38;2;100;116;139m·\\x1b[0m \\x1b[1manalysis\\x1b[0m \\x1b[38;2;100;116;139m·\\x1b[0m \\x1b[1macademic (ARS)\\x1b[0m";
|
|
126
127
|
const GRAD_WORKBENCH = "\\x1b[38;2;45;212;191m• Workbench :\\x1b[0m \\x1b[1m\\x1b[38;2;56;189;248mhttp://127.0.0.1:3721\\x1b[0m \\x1b[38;2;168;85;247m(Interactive Panel Active)\\x1b[0m";
|
|
127
128
|
|
|
128
129
|
const PSYCLAW_DYNAMIC_BANNER = `const bannerCandidates = [
|
|
@@ -154,6 +155,7 @@ const stackedPet = petEnabled ? ${VAR_STACKED_PET} : [];
|
|
|
154
155
|
const detailLines = terminalColumns >= 86 ? [
|
|
155
156
|
\` ${GRAD_PIPELINE}\`,
|
|
156
157
|
\` ${GRAD_PROTOCOL}\`,
|
|
158
|
+
\` ${GRAD_MODES}\`,
|
|
157
159
|
] : [];
|
|
158
160
|
if (terminalColumns >= 76) detailLines.push(\` ${GRAD_WORKBENCH}\`);
|
|
159
161
|
const logo = [
|