phewsh 0.15.50 → 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 +1 -1
- package/commands/session.js +10 -3
- package/package.json +1 -1
package/bin/phewsh.js
CHANGED
|
@@ -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
|
}
|