@bike4mind/cli 0.17.2 → 0.18.1
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 +5 -2
- package/dist/{BackgroundAgentManager-DQjlUwRw.mjs → BackgroundAgentManager-BEPNKfmi.mjs} +2647 -231
- package/dist/{ConfigStore-7kcIJ-ux.mjs → ConfigStore-BbTg-UaE.mjs} +245 -15
- package/dist/commands/apiCommand.mjs +4 -3
- package/dist/commands/doctorCommand.mjs +1 -1
- package/dist/commands/envCommand.mjs +1 -1
- package/dist/commands/headlessCommand.mjs +2 -2
- package/dist/commands/mcpCommand.mjs +1 -1
- package/dist/commands/updateCommand.mjs +1 -1
- package/dist/index.mjs +7 -6
- package/dist/{package-DLM23Ze7.mjs → package-CSa_ad8r.mjs} +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -159,7 +159,10 @@ Authentication tokens are securely stored in your config file with restricted pe
|
|
|
159
159
|
|
|
160
160
|
### API Configuration
|
|
161
161
|
|
|
162
|
-
By default, the CLI connects to the main Bike4Mind service at `https://app.bike4mind.com`.
|
|
162
|
+
By default, the published CLI connects to the main Bike4Mind service at `https://app.bike4mind.com`.
|
|
163
|
+
The default is baked in at build time from the hosted build environment — there is **no brand
|
|
164
|
+
fallback in source** (open-core, #9306/#9392), so a fresh clone ships empty. A fork publishes its
|
|
165
|
+
own CLI by setting `B4M_DEFAULT_API_URL` when building — see `tsdown.config.ts`.
|
|
163
166
|
|
|
164
167
|
**Quick switch between local dev and production:** use the `b4m --dev` / `b4m --prod`
|
|
165
168
|
launch flags (see [Switching environments](#switching-environments---dev----prod)).
|
|
@@ -171,7 +174,7 @@ and `/api-info` commands below operate on the same setting from inside a session
|
|
|
171
174
|
If your organization runs a self-hosted Bike4Mind instance, connect to it using:
|
|
172
175
|
|
|
173
176
|
```bash
|
|
174
|
-
/set-api https://your-
|
|
177
|
+
/set-api https://app.your-instance.example.com
|
|
175
178
|
```
|
|
176
179
|
|
|
177
180
|
To return to the main Bike4Mind service:
|