waitspin 0.1.10 → 0.1.11
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/README.md +23 -2
- package/dist/cli.js +1394 -239
- package/dist/cli.js.map +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -64,6 +64,10 @@ waitspin opencode status
|
|
|
64
64
|
# Or install for Grok Code CLI footer
|
|
65
65
|
waitspin grok install --api-key PASTE_PUBLISHER_EXTENSION_KEY
|
|
66
66
|
waitspin grok status
|
|
67
|
+
|
|
68
|
+
# Or install for Qoder CLI UserPromptSubmit/Stop hooks
|
|
69
|
+
waitspin qoder install --api-key PASTE_PUBLISHER_EXTENSION_KEY
|
|
70
|
+
waitspin qoder status
|
|
67
71
|
```
|
|
68
72
|
|
|
69
73
|
## Commands
|
|
@@ -105,6 +109,9 @@ waitspin grok status
|
|
|
105
109
|
- `waitspin grok install` — install the Grok Code CLI footer surface
|
|
106
110
|
- `waitspin grok status` — inspect managed Grok Code CLI runtime state
|
|
107
111
|
- `waitspin grok uninstall` — restore Grok Code CLI and remove managed state
|
|
112
|
+
- `waitspin qoder install` — install the Qoder CLI UserPromptSubmit/Stop hooks
|
|
113
|
+
- `waitspin qoder status` — inspect managed Qoder CLI runtime state
|
|
114
|
+
- `waitspin qoder uninstall` — remove the managed Qoder hook and local state
|
|
108
115
|
|
|
109
116
|
API base: `https://api.waitspin.com`
|
|
110
117
|
|
|
@@ -112,13 +119,17 @@ The public package manages the public target set: the status-bar-fallback
|
|
|
112
119
|
extension path for VS Code, Cursor Editor Mode, and Devin Desktop through Open
|
|
113
120
|
VSX, the Claude Code statusline command, the Antigravity CLI statusline command,
|
|
114
121
|
the GitHub Copilot CLI statusline command, the MiMo Code shell hook, the
|
|
115
|
-
OpenCode TUI plugin slot,
|
|
122
|
+
OpenCode TUI plugin slot, the Grok Code CLI footer, and the Qoder CLI
|
|
123
|
+
UserPromptSubmit/Stop hooks. Claude Code,
|
|
116
124
|
Antigravity CLI, and GitHub Copilot CLI support use
|
|
117
125
|
first-class `statusLine.command` paths and do not patch native binaries. MiMo
|
|
118
126
|
Code uses a bash hook that polls the API for sponsored messages. OpenCode uses
|
|
119
127
|
its TUI `app_bottom` plugin slot. Grok Code CLI uses a managed text-asset
|
|
120
128
|
footer patch with hash-backed backup/restore and does not patch native
|
|
121
|
-
binaries.
|
|
129
|
+
binaries. Qoder CLI uses the official `UserPromptSubmit` hook with
|
|
130
|
+
`statusMessage`/`systemMessage` plus the official `Stop` hook for the later
|
|
131
|
+
visibility callback; it does not patch native binaries or npm
|
|
132
|
+
package files.
|
|
122
133
|
|
|
123
134
|
`waitspin install --all` is an advanced agent command for installing every
|
|
124
135
|
detected all-install target: VS Code plus CLI-managed targets. Cursor Editor
|
|
@@ -157,6 +168,7 @@ npx waitspin copilot install --api-key PASTE_PUBLISHER_EXTENSION_KEY --compose-e
|
|
|
157
168
|
npx waitspin mimocode install --api-key PASTE_PUBLISHER_EXTENSION_KEY
|
|
158
169
|
npx waitspin opencode install --api-key PASTE_PUBLISHER_EXTENSION_KEY
|
|
159
170
|
npx waitspin grok install --api-key PASTE_PUBLISHER_EXTENSION_KEY
|
|
171
|
+
npx waitspin qoder install --api-key PASTE_PUBLISHER_EXTENSION_KEY
|
|
160
172
|
```
|
|
161
173
|
|
|
162
174
|
- `WAITSPIN_API_KEY` — temporary extension API key for CLI fallback flows
|
|
@@ -194,6 +206,14 @@ The Grok Code CLI installer writes a managed runtime/state under `~/.waitspin`
|
|
|
194
206
|
and patches the verified OpenTUI footer text asset with a hash-backed backup so
|
|
195
207
|
uninstall can restore the original file.
|
|
196
208
|
|
|
209
|
+
The Qoder CLI installer writes a managed hook runtime/state/cache under
|
|
210
|
+
`~/.waitspin` and adds managed `UserPromptSubmit` and `Stop` hook entries to
|
|
211
|
+
`~/.qoder/settings.json`. The hook returns dynamic sponsored copy through
|
|
212
|
+
Qoder's `systemMessage` response only after fetching WaitSpin inventory; the
|
|
213
|
+
static hook `statusMessage` is a generic sponsor check and is not billable by
|
|
214
|
+
itself. A billable Qoder impression also requires a later official Qoder hook
|
|
215
|
+
callback after the minimum visible interval.
|
|
216
|
+
|
|
197
217
|
Cline VS Code extension installs, Cursor Editor Mode, and Devin Desktop are
|
|
198
218
|
covered by the VS Code-compatible Activity Bar/status-bar extension target.
|
|
199
219
|
Standalone Cline CLI is not a public install target until Cline exposes an
|
|
@@ -213,4 +233,5 @@ npx --yes waitspin@latest opencode status
|
|
|
213
233
|
npx --yes waitspin@latest grok status
|
|
214
234
|
npx --yes waitspin@latest antigravity status
|
|
215
235
|
npx --yes waitspin@latest copilot status
|
|
236
|
+
npx --yes waitspin@latest qoder status
|
|
216
237
|
```
|