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.
- package/dist/core/agent-session.d.ts +3 -0
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +11 -0
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/slash-commands.d.ts.map +1 -1
- package/dist/core/slash-commands.js +1 -0
- package/dist/core/slash-commands.js.map +1 -1
- package/dist/core/tools/worker.d.ts +6 -1
- package/dist/core/tools/worker.d.ts.map +1 -1
- package/dist/core/tools/worker.js +31 -25
- package/dist/core/tools/worker.js.map +1 -1
- package/dist/core/worker-integration.d.ts +2 -3
- package/dist/core/worker-integration.d.ts.map +1 -1
- package/dist/core/worker-integration.js +7 -1
- package/dist/core/worker-integration.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts +1 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +47 -0
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/package.json +1 -1
|
@@ -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);
|