@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.
@@ -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).