phewsh 0.15.49 โ 0.15.51
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/phewsh.js +3 -3
- package/commands/session.js +10 -3
- package/lib/intro.js +1 -1
- package/lib/ui.js +2 -2
- package/package.json +1 -1
package/bin/phewsh.js
CHANGED
|
@@ -39,8 +39,8 @@ function showBrand() {
|
|
|
39
39
|
console.log('');
|
|
40
40
|
console.log(' ๐ฎ\u200d๐จ ๐คซ');
|
|
41
41
|
console.log('');
|
|
42
|
-
console.log(` ${b(w('โโโ โโโ โโโ
|
|
43
|
-
console.log(` ${b(w('โโโ โโโ โโโ
|
|
42
|
+
console.log(` ${b(w('โโโ โโโ โโโ โโโโโ โโ โโโ'))}`);
|
|
43
|
+
console.log(` ${b(w('โโโ โโโ โโโ โโโโโ โโ โโโ'))}`);
|
|
44
44
|
console.log(` ${g('Keep all your AI tools. phewsh is the one memory they share.')}`);
|
|
45
45
|
console.log('');
|
|
46
46
|
|
|
@@ -149,7 +149,7 @@ function showHelp() {
|
|
|
149
149
|
console.log(` ${b(w('configure'))}`);
|
|
150
150
|
console.log(` ${cyan('login')} ${g('Identity + API key + cloud sync')}`);
|
|
151
151
|
console.log(` ${cyan('link')} ${g('Link local .intent/ to cloud project')}`);
|
|
152
|
-
console.log(` ${cyan('update')} ${g('Update phewsh to
|
|
152
|
+
console.log(` ${cyan('update')} ${g('Update phewsh โ or `phewsh update auto on` to stay current automatically')}`);
|
|
153
153
|
console.log('');
|
|
154
154
|
console.log(` ${g('Works in: Claude Code ยท Cursor ยท ChatGPT ยท any MCP agent')}`);
|
|
155
155
|
console.log(` ${g('No account needed. Account adds sync + sharing.')}`);
|
package/commands/session.js
CHANGED
|
@@ -939,7 +939,7 @@ async function main() {
|
|
|
939
939
|
'sync', 'harnesses', 'fallback', 'outcomes', 'tour', 'update', 'upgrade',
|
|
940
940
|
'agents', 'context', 'truth', 'brief', 'wrap', 'reconcile', 'gate', 'reload', 'sequence', 'seq', 'setup', 'system', 'watch',
|
|
941
941
|
'next', 'recommend', 'guide', 'thread', 'continuity', 'learn', 'stats',
|
|
942
|
-
'pack', 'packs', 'remember',
|
|
942
|
+
'pack', 'packs', 'remember', 'commands',
|
|
943
943
|
]);
|
|
944
944
|
const installedIds = harnesses.filter(h => h.installed).map(h => h.id);
|
|
945
945
|
let turnAbort = null; // AbortController while an API turn streams
|
|
@@ -1533,8 +1533,8 @@ async function main() {
|
|
|
1533
1533
|
return;
|
|
1534
1534
|
}
|
|
1535
1535
|
|
|
1536
|
-
if (cmd === 'help' || cmd === 'h') {
|
|
1537
|
-
const wantsAll = /^(all|more|full|everything)$/i.test(cmdArg.trim());
|
|
1536
|
+
if (cmd === 'help' || cmd === 'h' || cmd === 'commands') {
|
|
1537
|
+
const wantsAll = cmd === 'commands' || /^(all|more|full|everything)$/i.test(cmdArg.trim());
|
|
1538
1538
|
|
|
1539
1539
|
// Bare /help โ the short essentials a newcomer actually needs.
|
|
1540
1540
|
if (!wantsAll) {
|
|
@@ -1613,6 +1613,13 @@ async function main() {
|
|
|
1613
1613
|
console.log(` ${teal('/update')} ${sage('Update phewsh')}`);
|
|
1614
1614
|
console.log(` ${teal('/tour')} ${sage('Quick walkthrough')}`);
|
|
1615
1615
|
console.log('');
|
|
1616
|
+
console.log(` ${cream('run in your terminal')} ${slate('โ machine setup, run outside a session (not as /cmd)')}`);
|
|
1617
|
+
console.log(` ${teal('phewsh ambient on')} ${sage("Every AI tool inherits your .intent/ โ even without launching phewsh")}`);
|
|
1618
|
+
console.log(` ${teal('phewsh shim on')} ${sage('A phewsh status banner before each tool launches โ visible proof')}`);
|
|
1619
|
+
console.log(` ${teal('phewsh update auto on')} ${sage('Auto-update in the background on launch (default: notify-only)')}`);
|
|
1620
|
+
console.log(` ${teal('phewsh setup')} ${sage('Guided setup โ pick your default route')}`);
|
|
1621
|
+
console.log(` ${slate('also standalone:')} ${teal('phewsh status ยท next ยท work ยท remember')} ${slate('ยท full list:')} ${teal('phewsh help')}`);
|
|
1622
|
+
console.log('');
|
|
1616
1623
|
rl.prompt();
|
|
1617
1624
|
return;
|
|
1618
1625
|
}
|
package/lib/intro.js
CHANGED
|
@@ -47,7 +47,7 @@ const SHH = [
|
|
|
47
47
|
' โโ โ',
|
|
48
48
|
];
|
|
49
49
|
|
|
50
|
-
const LOGO = ['โโโ โโโ โโโ
|
|
50
|
+
const LOGO = ['โโโ โโโ โโโ โโโโโ โโ โโโ', 'โโโ โโโ โโโ โโโโโ โโ โโโ'];
|
|
51
51
|
|
|
52
52
|
function sleep(ms) { return new Promise((r) => setTimeout(r, ms)); }
|
|
53
53
|
|
package/lib/ui.js
CHANGED
|
@@ -95,8 +95,8 @@ async function brandReveal(fast = false) {
|
|
|
95
95
|
console.log(` ๐ฎโ๐จ ๐คซ`);
|
|
96
96
|
console.log('');
|
|
97
97
|
await pause(160);
|
|
98
|
-
console.log(` ${b(cream('โโโ โโโ โโโ
|
|
99
|
-
console.log(` ${b(cream('โโโ โโโ โโโ
|
|
98
|
+
console.log(` ${b(cream('โโโ โโโ โโโ โโโโโ โโ โโโ'))}`);
|
|
99
|
+
console.log(` ${b(cream('โโโ โโโ โโโ โโโโโ โโ โโโ'))}`);
|
|
100
100
|
await pause(160);
|
|
101
101
|
// The value prop, plain language, off the bat โ the alignment wedge, not
|
|
102
102
|
// "memory". It exhales in (typewriter) when animated; lands instantly
|