llmist 9.7.0 → 10.0.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/dist/index.cjs CHANGED
@@ -10649,6 +10649,9 @@ var init_builder = __esm({
10649
10649
  * **Signal Forwarding** - When parent context includes a signal, it's automatically
10650
10650
  * forwarded to the subagent for proper cancellation propagation.
10651
10651
  *
10652
+ * **Logger Inheritance** - When parent context includes a logger, it's inherited
10653
+ * by the subagent for consistent structured logging.
10654
+ *
10652
10655
  * @param ctx - ExecutionContext passed to the gadget's execute() method
10653
10656
  * @param depth - Nesting depth (default: 1 for direct child)
10654
10657
  * @returns This builder for chaining
@@ -10688,6 +10691,9 @@ var init_builder = __esm({
10688
10691
  if (ctx.signal && !this.signal) {
10689
10692
  this.signal = ctx.signal;
10690
10693
  }
10694
+ if (ctx.logger && !this.logger) {
10695
+ this.logger = ctx.logger;
10696
+ }
10691
10697
  return this;
10692
10698
  }
10693
10699
  /**