wispy-cli 2.7.32 → 2.7.33

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.
Files changed (2) hide show
  1. package/bin/wispy.mjs +26 -27
  2. package/package.json +1 -1
package/bin/wispy.mjs CHANGED
@@ -121,47 +121,45 @@ wispy-cli v${pkg.version}
121
121
  AI workspace assistant — chat, automate, and orchestrate from the terminal.
122
122
 
123
123
  Usage:
124
- wispy Start interactive REPL
125
- wispy <message> One-shot chat
124
+ wispy Launch TUI (interactive chat)
126
125
  wispy exec <message> Non-interactive one-shot (CI/pipeline friendly)
127
126
  wispy setup Run first-time setup wizard
127
+ wispy doctor Check system health
128
+ wispy status Show running processes & connections
129
+ wispy stop Stop all running wispy processes
130
+ wispy update Update wispy-cli to latest version
128
131
  wispy config [show|get|set|delete|reset|path|edit]
129
132
  Manage configuration
130
133
  wispy features [list|enable|disable]
131
134
  Manage feature flags
132
- wispy model Show or change AI model
133
- wispy doctor Check system health
134
- wispy browser [tabs|attach|navigate|screenshot|doctor]
135
- Browser control via local-browser-bridge
136
- wispy auth Show auth status for all providers
137
- wispy auth <provider> Re-authenticate a specific provider
138
- wispy auth --reset Clear all saved credentials
135
+ wispy model Show or change AI model (interactive picker)
136
+ wispy agents [list] List available agents (built-in + custom)
137
+ wispy cost Show API spending report
138
+ wispy auth Show/manage provider auth status
139
139
  wispy secrets [list|set|delete|get]
140
140
  Manage encrypted secrets & API keys
141
+ wispy trust [level|log|approvals]
142
+ Security level, audit & approval allowlist
143
+ wispy browser [tabs|attach|navigate|screenshot|doctor]
144
+ Browser control via local-browser-bridge
141
145
  wispy tts "<text>" Text-to-speech (OpenAI or macOS say)
142
- wispy trust [level|log] Security level & audit
143
- wispy ws [start-client|run-debug]
144
- WebSocket operations
145
- wispy skill [list|run] Manage learned skills
146
- wispy teach <name> Create skill from conversation
147
- wispy improve <name> Improve a skill
146
+ wispy sessions [--all] List all sessions
147
+ wispy resume [session-id] Resume a previous session (--last for most recent)
148
+ wispy fork [session-id] Fork (branch) from a session (--last for most recent)
149
+ wispy review Code review (--base, --commit, --json)
148
150
  wispy where Show current mode (local/cloud)
149
151
  wispy handoff [cloud|local] Sync between environments
150
152
  wispy server [start|stop|status]
151
153
  Manage HTTP/WS server
152
- wispy tui Launch full terminal UI
154
+ wispy tui Launch TUI explicitly
153
155
  wispy overview Director view of workstreams
154
- wispy sessions [--all] List all sessions
155
- wispy resume [session-id] Resume a previous session
156
- wispy resume --last Resume the most recent session
157
- wispy fork [session-id] Fork (branch) from a session
158
- wispy fork --last Fork the most recent session
159
- wispy review Review uncommitted changes
160
- wispy review --base <branch> Review changes against branch
161
- wispy review --commit <sha> Review a specific commit
162
- wispy review --json Output review as JSON
163
- wispy agents [list] List available agents (built-in + custom)
164
- wispy cost Show API spending report
156
+ wispy skill [list|run] Manage learned skills
157
+ wispy teach <name> Create skill from conversation
158
+ wispy improve <name> Improve a skill
159
+ wispy ws [start-client|run-debug]
160
+ WebSocket operations
161
+ wispy completion [zsh|bash|fish]
162
+ Output shell completion script
165
163
 
166
164
  Options:
167
165
  -w, --workstream <name> Set active workstream
@@ -1386,6 +1384,7 @@ if (command === "completion") {
1386
1384
  "improve", "where", "handoff", "server", "tui", "overview", "sessions",
1387
1385
  "resume", "fork", "review", "agents", "cost", "features", "secrets",
1388
1386
  "tts", "browser", "auth", "exec", "completion",
1387
+ "stop", "status", "update", "upgrade",
1389
1388
  ];
1390
1389
  const flags = [
1391
1390
  "--help", "--version", "-w", "--workstream", "-p", "--profile",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wispy-cli",
3
- "version": "2.7.32",
3
+ "version": "2.7.33",
4
4
  "description": "🌿 Wispy — AI workspace assistant with trustworthy execution (harness, receipts, approvals, diffs)",
5
5
  "license": "MIT",
6
6
  "author": "Minseo & Poropo",