phewsh 0.11.11 → 0.11.13

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 CHANGED
@@ -30,7 +30,7 @@ function showBrand() {
30
30
  console.log('');
31
31
  console.log(` ${b(w('█▀█ █░█ █▀▀ █░█ █▀ █░█'))}`);
32
32
  console.log(` ${b(w('█▀▀ █▀█ ██▄ ▀▄▀ ▄█ █▀█'))}`);
33
- console.log(` ${g('Your project identity for every AI tool.')}`);
33
+ console.log(` ${g('.intent/ — your project\'s working memory for every AI tool.')}`);
34
34
  console.log('');
35
35
 
36
36
  // Context-aware hint
@@ -80,21 +80,21 @@ function showHelp() {
80
80
  console.log(` ${g('─'.repeat(48))}`);
81
81
  console.log('');
82
82
  console.log(` ${b(w('start here'))}`);
83
- console.log(` ${cyan('phewsh')} Open AI session type naturally, get guided`);
84
- console.log(` ${cyan('phewsh clarify')} Turn a messy idea into a structured spec`);
83
+ console.log(` ${cyan('phewsh')} Open AI session with your .intent/ context`);
84
+ console.log(` ${cyan('phewsh clarify')} Turn a messy idea into .intent/ artifacts`);
85
85
  console.log(` ${cyan('phewsh login')} Set up identity + API key`);
86
86
  console.log('');
87
- console.log(` ${b(w('project'))}`);
88
- console.log(` ${cyan('intent')} ${g('Manage .intent/ artifacts — status, open, evolve')}`);
87
+ console.log(` ${b(w('.intent/ management'))}`);
88
+ console.log(` ${cyan('intent')} ${g('Create, view, and evolve .intent/ artifacts')}`);
89
89
  console.log(` ${cyan('gate')} ${g('Declare constraints (budget, time, skill, urgency)')}`);
90
- console.log(` ${cyan('context')} ${g('Export portable context for any AI tool')}`);
91
- console.log(` ${cyan('ai')} ${g('One-shot AI prompt with .intent/ context')}`);
90
+ console.log(` ${cyan('context')} ${g('Export .intent/ as portable context for any AI tool')}`);
91
+ console.log(` ${cyan('ai')} ${g('One-shot AI prompt with .intent/ context injected')}`);
92
92
  console.log('');
93
93
  console.log(` ${b(w('sync'))}`);
94
- console.log(` ${cyan('push')} ${g('Push .intent/ to cloud')}`);
95
- console.log(` ${cyan('pull')} ${g('Pull from cloud to .intent/')}`);
96
- console.log(` ${cyan('watch')} ${g('Live sync — CLAUDE.md + web dashboard auto-update')}`);
97
- console.log(` ${cyan('serve')} ${g('Execution bridge for the web app')}`);
94
+ console.log(` ${cyan('watch')} ${g('Keep AI tools in sync with .intent/ (CLAUDE.md + cloud)')}`);
95
+ console.log(` ${cyan('push')} ${g('Push .intent/ to phewsh.com/intent')}`);
96
+ console.log(` ${cyan('pull')} ${g('Pull from phewsh.com/intent to .intent/')}`);
97
+ console.log(` ${cyan('serve')} ${g('Execution bridge for phewsh.com/intent')}`);
98
98
  console.log('');
99
99
  console.log(` ${b(w('connect'))}`);
100
100
  console.log(` ${cyan('mcp')} ${g('Connect AI agents via MCP protocol')}`);
@@ -105,7 +105,7 @@ function showHelp() {
105
105
  console.log(` ${cyan('style')} ${g('Style identity — ingest, profile, sync')}`);
106
106
  console.log(` ${cyan('mbhd')} ${g('MBHD music engine')}`);
107
107
  console.log('');
108
- console.log(` ${g('Works standalone · Inside Claude Code · Inside Cursor · With any MCP agent')}`);
108
+ console.log(` ${g('Everything works without an account. Account adds sync + sharing.')}`);
109
109
  console.log('');
110
110
  }
111
111