@trops/dash-core 0.1.380 → 0.1.382

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.
@@ -28260,8 +28260,24 @@ const cliController$2 = {
28260
28260
  return;
28261
28261
  }
28262
28262
 
28263
- // Build CLI args
28264
- const args = ["-p", "--output-format", "stream-json", "--verbose"];
28263
+ // Build CLI args.
28264
+ //
28265
+ // --disable-slash-commands: prevent Claude from auto-triggering project
28266
+ // skills by description match. When running in a project with a
28267
+ // `.claude/skills/<name>/SKILL.md`, Claude would otherwise internalize
28268
+ // that skill's content even when the host app's system prompt says not
28269
+ // to — causing long reasoning loops or silent hangs. We pass only the
28270
+ // caller's `systemPrompt` as context.
28271
+ //
28272
+ // (We intentionally avoid `--bare` — it also disables keychain reads,
28273
+ // which breaks OAuth login for users authenticated via `claude login`.)
28274
+ const args = [
28275
+ "-p",
28276
+ "--disable-slash-commands",
28277
+ "--output-format",
28278
+ "stream-json",
28279
+ "--verbose",
28280
+ ];
28265
28281
 
28266
28282
  if (model) {
28267
28283
  args.push("--model", model);