@kolisachint/hoocode-agent 0.4.141 → 0.4.142

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.
@@ -567,7 +567,11 @@ export class InteractiveMode {
567
567
  // environments, and awaiting here froze first paint. Resolve in the background
568
568
  // (silently, so download notices never corrupt the TUI) and wire fd in when ready;
569
569
  // the grep/find tools resolve rg/fd on demand with a native fallback regardless.
570
- void Promise.all([ensureTool("fd", true), ensureTool("rg", true)])
570
+ void Promise.all([
571
+ ensureTool("fd", true),
572
+ ensureTool("rg", true),
573
+ this.settingsManager.getEnableEmbsearchTools() ? ensureTool("embsearch", true) : Promise.resolve(null),
574
+ ])
571
575
  .then(([fdPath]) => {
572
576
  this.fdPath = fdPath;
573
577
  })