waitspin 0.1.8 → 0.1.9
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 +34 -8
- package/dist/cli.js +1621 -221
- package/dist/cli.js.map +1 -1
- package/dist/targets/experimental-cli.js +27 -0
- package/dist/targets/experimental-cli.js.map +1 -1
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -43,6 +43,14 @@ waitspin extension status --target vscode
|
|
|
43
43
|
waitspin claude-code install --api-key PASTE_PUBLISHER_EXTENSION_KEY --compose-existing
|
|
44
44
|
waitspin claude-code status
|
|
45
45
|
|
|
46
|
+
# Or install for Antigravity CLI statusline
|
|
47
|
+
waitspin antigravity install --api-key PASTE_PUBLISHER_EXTENSION_KEY --compose-existing
|
|
48
|
+
waitspin antigravity status
|
|
49
|
+
|
|
50
|
+
# Or install for GitHub Copilot CLI statusline
|
|
51
|
+
waitspin copilot install --api-key PASTE_PUBLISHER_EXTENSION_KEY --compose-existing
|
|
52
|
+
waitspin copilot status
|
|
53
|
+
|
|
46
54
|
# Or install for MiMo Code shell hook
|
|
47
55
|
waitspin mimocode install --api-key PASTE_PUBLISHER_EXTENSION_KEY
|
|
48
56
|
waitspin mimocode status
|
|
@@ -78,6 +86,12 @@ waitspin grok status
|
|
|
78
86
|
- `waitspin claude-code install --compose-existing` — install the Claude Code statusline command
|
|
79
87
|
- `waitspin claude-code status` — inspect managed Claude Code runtime state
|
|
80
88
|
- `waitspin claude-code uninstall` — restore Claude Code statusline settings and remove managed local state
|
|
89
|
+
- `waitspin antigravity install --compose-existing` — install the Antigravity CLI statusline command
|
|
90
|
+
- `waitspin antigravity status` — inspect managed Antigravity CLI runtime state
|
|
91
|
+
- `waitspin antigravity uninstall` — restore Antigravity CLI statusline settings and remove managed local state
|
|
92
|
+
- `waitspin copilot install --compose-existing` — install the GitHub Copilot CLI statusline command
|
|
93
|
+
- `waitspin copilot status` — inspect managed GitHub Copilot CLI runtime state
|
|
94
|
+
- `waitspin copilot uninstall` — restore GitHub Copilot CLI statusline settings and remove managed local state
|
|
81
95
|
- `waitspin mimocode install` — install the MiMo Code shell hook
|
|
82
96
|
- `waitspin mimocode status` — inspect managed MiMo Code runtime state
|
|
83
97
|
- `waitspin mimocode uninstall` — remove managed MiMo Code runtime and bash hook
|
|
@@ -90,14 +104,16 @@ waitspin grok status
|
|
|
90
104
|
|
|
91
105
|
API base: `https://api.waitspin.com`
|
|
92
106
|
|
|
93
|
-
The public package installs
|
|
94
|
-
Activity Bar/status-bar extension, the Claude Code statusline command, the
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
107
|
+
The public package installs seven verified user earning surfaces: the VS Code
|
|
108
|
+
Activity Bar/status-bar extension, the Claude Code statusline command, the
|
|
109
|
+
Antigravity CLI statusline command, the GitHub Copilot CLI statusline command,
|
|
110
|
+
the MiMo Code shell hook, the OpenCode TUI plugin slot, and the Grok Code CLI
|
|
111
|
+
footer. Claude Code, Antigravity CLI, and GitHub Copilot CLI support use
|
|
112
|
+
first-class `statusLine.command` paths and do not patch native binaries. MiMo
|
|
113
|
+
Code uses a bash hook that polls the API for sponsored messages. OpenCode uses
|
|
114
|
+
its TUI `app_bottom` plugin slot. Grok Code CLI uses a managed text-asset
|
|
115
|
+
footer patch with hash-backed backup/restore and does not patch native
|
|
116
|
+
binaries.
|
|
101
117
|
|
|
102
118
|
`waitspin install --all` is an advanced agent command for installing every
|
|
103
119
|
detected supported target. It keeps explicit target commands as the canonical
|
|
@@ -128,6 +144,8 @@ npx waitspin install --all --api-key PASTE_PUBLISHER_EXTENSION_KEY --compose-exi
|
|
|
128
144
|
npx waitspin status --all
|
|
129
145
|
npx waitspin extension install --target vscode --api-key PASTE_PUBLISHER_EXTENSION_KEY
|
|
130
146
|
npx waitspin claude-code install --api-key PASTE_PUBLISHER_EXTENSION_KEY --compose-existing
|
|
147
|
+
npx waitspin antigravity install --api-key PASTE_PUBLISHER_EXTENSION_KEY --compose-existing
|
|
148
|
+
npx waitspin copilot install --api-key PASTE_PUBLISHER_EXTENSION_KEY --compose-existing
|
|
131
149
|
npx waitspin mimocode install --api-key PASTE_PUBLISHER_EXTENSION_KEY
|
|
132
150
|
npx waitspin opencode install --api-key PASTE_PUBLISHER_EXTENSION_KEY
|
|
133
151
|
npx waitspin grok install --api-key PASTE_PUBLISHER_EXTENSION_KEY
|
|
@@ -148,6 +166,12 @@ The Claude Code installer writes a managed statusline runtime/state under
|
|
|
148
166
|
`statusLine.command`. It fails fast when an existing unmanaged statusline is
|
|
149
167
|
present unless `--compose-existing` is explicitly requested and restorable.
|
|
150
168
|
|
|
169
|
+
The Antigravity CLI and GitHub Copilot CLI installers write managed
|
|
170
|
+
runtime/state under `~/.waitspin` and configure their first-class
|
|
171
|
+
`statusLine.command` settings without patching native binaries. Both fail fast
|
|
172
|
+
when an existing unmanaged statusline is present unless `--compose-existing` is
|
|
173
|
+
explicitly requested and restorable.
|
|
174
|
+
|
|
151
175
|
The MiMo Code installer writes a managed runtime script under `~/.local/bin/`
|
|
152
176
|
and a bash hook in `~/.bashrc`. It polls the API for sponsored messages and
|
|
153
177
|
displays them in the terminal.
|
|
@@ -176,4 +200,6 @@ npx --yes waitspin --help
|
|
|
176
200
|
npx --yes waitspin@latest mimocode status
|
|
177
201
|
npx --yes waitspin@latest opencode status
|
|
178
202
|
npx --yes waitspin@latest grok status
|
|
203
|
+
npx --yes waitspin@latest antigravity status
|
|
204
|
+
npx --yes waitspin@latest copilot status
|
|
179
205
|
```
|