@bike4mind/cli 0.16.0 → 0.17.0
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/bike4mind-cli.mjs +8 -0
- package/dist/{tools-D9eSRR7Q.mjs → BackgroundAgentManager-CcetLt8q.mjs} +8565 -8372
- package/dist/{ConfigStore-CtGc4fF2.mjs → ConfigStore-CNveAjEv.mjs} +354 -21
- package/dist/commands/apiCommand.mjs +1 -1
- package/dist/commands/doctorCommand.mjs +1 -1
- package/dist/commands/envCommand.mjs +1 -1
- package/dist/commands/headlessCommand.mjs +6 -2
- package/dist/commands/mcpCommand.mjs +1 -1
- package/dist/commands/updateCommand.mjs +1 -1
- package/dist/index.mjs +2241 -2055
- package/dist/{package-3pouvthv.mjs → package-BJU2qiwQ.mjs} +1 -1
- package/package.json +13 -9
package/bin/bike4mind-cli.mjs
CHANGED
|
@@ -148,6 +148,11 @@ const argv = await yargs(hideBin(process.argv))
|
|
|
148
148
|
type: 'string',
|
|
149
149
|
description: 'Set a custom API URL (self-hosted instance) and clear auth tokens, then exit',
|
|
150
150
|
})
|
|
151
|
+
.option('no-remote-skills', {
|
|
152
|
+
type: 'boolean',
|
|
153
|
+
description: 'Skip fetching B4M-web skills for this run (local files only)',
|
|
154
|
+
default: false,
|
|
155
|
+
})
|
|
151
156
|
.option('reset-api', {
|
|
152
157
|
type: 'boolean',
|
|
153
158
|
description: 'Reset the API URL to the Bike4Mind default and clear auth tokens, then exit',
|
|
@@ -229,6 +234,9 @@ if (argv['add-dir'] && argv['add-dir'].length > 0) {
|
|
|
229
234
|
if (argv['ollama-host']) {
|
|
230
235
|
process.env.B4M_OLLAMA_HOST = argv['ollama-host'];
|
|
231
236
|
}
|
|
237
|
+
if (argv['no-remote-skills']) {
|
|
238
|
+
process.env.B4M_NO_REMOTE_SKILLS = '1';
|
|
239
|
+
}
|
|
232
240
|
|
|
233
241
|
// ─── claude-compatible flags → B4M_* env (read by src/index.tsx init) ─────────
|
|
234
242
|
// Mirrors the established bin→env→init channel (cf. --add-dir → B4M_ADDITIONAL_DIRS).
|