leaf-coding-agent 1.0.0 → 1.0.2

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.
@@ -23,6 +23,7 @@ import { type PromptTemplate } from "./prompt-templates.ts";
23
23
  import type { ResourceLoader } from "./resource-loader.ts";
24
24
  import type { BranchSummaryEntry, SessionManager } from "./session-manager.ts";
25
25
  import type { SettingsManager } from "./settings-manager.ts";
26
+ import { type WorkerIntegration } from "./worker-integration.ts";
26
27
  import { type BashOperations } from "./tools/bash.ts";
27
28
  /** Parsed skill block from a user message */
28
29
  export interface ParsedSkillBlock {
@@ -203,6 +204,8 @@ export declare class AgentSession {
203
204
  private _toolDefinitions;
204
205
  private _toolPromptSnippets;
205
206
  private _toolPromptGuidelines;
207
+ workerEnabled: boolean;
208
+ workerIntegration?: WorkerIntegration;
206
209
  private _baseSystemPrompt;
207
210
  private _baseSystemPromptOptions;
208
211
  constructor(config: AgentSessionConfig);