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.
- package/bin/wispy.mjs +26 -27
- 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
|
|
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
|
|
134
|
-
wispy
|
|
135
|
-
|
|
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
|
|
143
|
-
wispy
|
|
144
|
-
|
|
145
|
-
wispy
|
|
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
|
|
154
|
+
wispy tui Launch TUI explicitly
|
|
153
155
|
wispy overview Director view of workstreams
|
|
154
|
-
wispy
|
|
155
|
-
wispy
|
|
156
|
-
wispy
|
|
157
|
-
wispy
|
|
158
|
-
|
|
159
|
-
wispy
|
|
160
|
-
|
|
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