@locusai/sdk 0.9.18 → 0.10.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/agent/git-workflow.d.ts +44 -0
- package/dist/agent/git-workflow.d.ts.map +1 -0
- package/dist/agent/index.d.ts +2 -0
- package/dist/agent/index.d.ts.map +1 -1
- package/dist/agent/reviewer-worker.d.ts.map +1 -1
- package/dist/agent/worker-cli.d.ts +6 -0
- package/dist/agent/worker-cli.d.ts.map +1 -0
- package/dist/agent/worker-types.d.ts +44 -0
- package/dist/agent/worker-types.d.ts.map +1 -0
- package/dist/agent/worker.d.ts +12 -48
- package/dist/agent/worker.d.ts.map +1 -1
- package/dist/agent/worker.js +1026 -847
- package/dist/ai/claude-runner.d.ts.map +1 -1
- package/dist/index-node.d.ts +1 -1
- package/dist/index-node.d.ts.map +1 -1
- package/dist/index-node.js +1660 -1133
- package/dist/index.js +363 -316
- package/dist/orchestrator/agent-pool.d.ts +59 -0
- package/dist/orchestrator/agent-pool.d.ts.map +1 -0
- package/dist/orchestrator/execution.d.ts +55 -0
- package/dist/orchestrator/execution.d.ts.map +1 -0
- package/dist/orchestrator/index.d.ts +91 -0
- package/dist/orchestrator/index.d.ts.map +1 -0
- package/dist/orchestrator/tier-merge.d.ts +50 -0
- package/dist/orchestrator/tier-merge.d.ts.map +1 -0
- package/dist/orchestrator/types.d.ts +45 -0
- package/dist/orchestrator/types.d.ts.map +1 -0
- package/dist/planning/agents/cross-task-reviewer.d.ts.map +1 -1
- package/dist/planning/agents/sprint-organizer.d.ts.map +1 -1
- package/dist/planning/plan-manager.d.ts.map +1 -1
- package/dist/planning/sprint-plan.d.ts +2 -0
- package/dist/planning/sprint-plan.d.ts.map +1 -1
- package/dist/project/knowledge-base.d.ts +4 -5
- package/dist/project/knowledge-base.d.ts.map +1 -1
- package/dist/utils/resolve-bin.d.ts +3 -0
- package/dist/utils/resolve-bin.d.ts.map +1 -1
- package/dist/worktree/worktree-manager.d.ts.map +1 -1
- package/package.json +2 -2
- package/dist/orchestrator.d.ts +0 -124
- package/dist/orchestrator.d.ts.map +0 -1
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import type { Task } from "@locusai/shared";
|
|
2
|
+
import type { LogFn } from "../ai/factory.js";
|
|
3
|
+
import { TaskExecutor } from "./task-executor.js";
|
|
4
|
+
import type { CommitPushResult, WorkerConfig } from "./worker-types.js";
|
|
5
|
+
/**
|
|
6
|
+
* Handles the git side of task execution:
|
|
7
|
+
* - Creating per-task worktrees
|
|
8
|
+
* - Committing and pushing changes
|
|
9
|
+
* - Creating pull requests
|
|
10
|
+
* - Cleaning up worktrees
|
|
11
|
+
*/
|
|
12
|
+
export declare class GitWorkflow {
|
|
13
|
+
private config;
|
|
14
|
+
private log;
|
|
15
|
+
private ghUsername;
|
|
16
|
+
private worktreeManager;
|
|
17
|
+
private prService;
|
|
18
|
+
constructor(config: WorkerConfig, log: LogFn, ghUsername: string | null);
|
|
19
|
+
/**
|
|
20
|
+
* Create a per-task worktree and return an executor configured for it.
|
|
21
|
+
* Falls back to the default executor if worktrees are disabled.
|
|
22
|
+
*/
|
|
23
|
+
createTaskWorktree(task: Task, defaultExecutor: TaskExecutor): {
|
|
24
|
+
worktreePath: string | null;
|
|
25
|
+
baseBranch: string | null;
|
|
26
|
+
executor: TaskExecutor;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Commit changes in a task worktree and optionally push to remote.
|
|
30
|
+
*/
|
|
31
|
+
commitAndPush(worktreePath: string, task: Task, baseBranch?: string): CommitPushResult;
|
|
32
|
+
/**
|
|
33
|
+
* Create a pull request for a completed task.
|
|
34
|
+
*/
|
|
35
|
+
createPullRequest(task: Task, branch: string, summary?: string, baseBranch?: string): {
|
|
36
|
+
url: string | null;
|
|
37
|
+
error?: string;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Clean up a task-specific worktree.
|
|
41
|
+
*/
|
|
42
|
+
cleanupWorktree(worktreePath: string | null, keepBranch: boolean): void;
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=git-workflow.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"git-workflow.d.ts","sourceRoot":"","sources":["../../src/agent/git-workflow.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAK9C,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,KAAK,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAExE;;;;;;GAMG;AACH,qBAAa,WAAW;IAKpB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,GAAG;IACX,OAAO,CAAC,UAAU;IANpB,OAAO,CAAC,eAAe,CAAyB;IAChD,OAAO,CAAC,SAAS,CAAmB;gBAG1B,MAAM,EAAE,YAAY,EACpB,GAAG,EAAE,KAAK,EACV,UAAU,EAAE,MAAM,GAAG,IAAI;IAWnC;;;OAGG;IACH,kBAAkB,CAChB,IAAI,EAAE,IAAI,EACV,eAAe,EAAE,YAAY,GAC5B;QACD,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;QAC5B,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;QAC1B,QAAQ,EAAE,YAAY,CAAC;KACxB;IA+CD;;OAEG;IACH,aAAa,CACX,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE,IAAI,EACV,UAAU,CAAC,EAAE,MAAM,GAClB,gBAAgB;IAqEnB;;OAEG;IACH,iBAAiB,CACf,IAAI,EAAE,IAAI,EACV,MAAM,EAAE,MAAM,EACd,OAAO,CAAC,EAAE,MAAM,EAChB,UAAU,CAAC,EAAE,MAAM,GAClB;QAAE,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAA;KAAE;IA0BzC;;OAEG;IACH,eAAe,CAAC,YAAY,EAAE,MAAM,GAAG,IAAI,EAAE,UAAU,EAAE,OAAO,GAAG,IAAI;CAexE"}
|
package/dist/agent/index.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export { CodebaseIndexerService } from "./codebase-indexer-service.js";
|
|
2
2
|
export { DocumentFetcher } from "./document-fetcher.js";
|
|
3
|
+
export { GitWorkflow } from "./git-workflow.js";
|
|
3
4
|
export { ReviewService, type ReviewServiceDeps } from "./review-service.js";
|
|
4
5
|
export { type ReviewerConfig, ReviewerWorker, } from "./reviewer-worker.js";
|
|
5
6
|
export { TaskExecutor } from "./task-executor.js";
|
|
6
7
|
export { AgentWorker, type WorkerConfig } from "./worker.js";
|
|
8
|
+
export type { CommitPushResult, TaskResult } from "./worker-types.js";
|
|
7
9
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/agent/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,+BAA+B,CAAC;AACvE,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,aAAa,EAAE,KAAK,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAC5E,OAAO,EACL,KAAK,cAAc,EACnB,cAAc,GACf,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,WAAW,EAAE,KAAK,YAAY,EAAE,MAAM,aAAa,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/agent/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,+BAA+B,CAAC;AACvE,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,KAAK,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAC5E,OAAO,EACL,KAAK,cAAc,EACnB,cAAc,GACf,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,WAAW,EAAE,KAAK,YAAY,EAAE,MAAM,aAAa,CAAC;AAC7D,YAAY,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reviewer-worker.d.ts","sourceRoot":"","sources":["../../src/agent/reviewer-worker.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAY,MAAM,iBAAiB,CAAC;AAc5D,MAAM,WAAW,cAAc;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,UAAU,CAAC;CACvB;AAED;;;;GAIG;AACH,qBAAa,cAAc;IAUb,OAAO,CAAC,MAAM;IAT1B,OAAO,CAAC,MAAM,CAAc;IAC5B,OAAO,CAAC,QAAQ,CAAW;IAC3B,OAAO,CAAC,SAAS,CAAY;IAC7B,OAAO,CAAC,aAAa,CAAgB;IACrC,OAAO,CAAC,iBAAiB,CAA+C;IACxE,OAAO,CAAC,aAAa,CAAuB;IAC5C,OAAO,CAAC,UAAU,CAAM;IACxB,OAAO,CAAC,gBAAgB,CAAK;gBAET,MAAM,EAAE,cAAc;IA6B1C,GAAG,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,GAAE,MAAM,GAAG,SAAS,GAAG,MAAM,GAAG,OAAgB;IAe1E;;OAEG;IACH,OAAO,CAAC,mBAAmB;IAU3B;;OAEG;YACW,QAAQ;IAiFtB,OAAO,CAAC,cAAc;IAKtB,OAAO,CAAC,aAAa;IAOrB,OAAO,CAAC,aAAa;IAgBf,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"reviewer-worker.d.ts","sourceRoot":"","sources":["../../src/agent/reviewer-worker.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAY,MAAM,iBAAiB,CAAC;AAc5D,MAAM,WAAW,cAAc;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,UAAU,CAAC;CACvB;AAED;;;;GAIG;AACH,qBAAa,cAAc;IAUb,OAAO,CAAC,MAAM;IAT1B,OAAO,CAAC,MAAM,CAAc;IAC5B,OAAO,CAAC,QAAQ,CAAW;IAC3B,OAAO,CAAC,SAAS,CAAY;IAC7B,OAAO,CAAC,aAAa,CAAgB;IACrC,OAAO,CAAC,iBAAiB,CAA+C;IACxE,OAAO,CAAC,aAAa,CAAuB;IAC5C,OAAO,CAAC,UAAU,CAAM;IACxB,OAAO,CAAC,gBAAgB,CAAK;gBAET,MAAM,EAAE,cAAc;IA6B1C,GAAG,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,GAAE,MAAM,GAAG,SAAS,GAAG,MAAM,GAAG,OAAgB;IAe1E;;OAEG;IACH,OAAO,CAAC,mBAAmB;IAU3B;;OAEG;YACW,QAAQ;IAiFtB,OAAO,CAAC,cAAc;IAKtB,OAAO,CAAC,aAAa;IAOrB,OAAO,CAAC,aAAa;IAgBf,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAiF3B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"worker-cli.d.ts","sourceRoot":"","sources":["../../src/agent/worker-cli.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAgBtD;;GAEG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,YAAY,CAoC5D"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import type { AiProvider } from "../ai/runner.js";
|
|
2
|
+
export interface WorkerConfig {
|
|
3
|
+
/** Unique identifier for the agent */
|
|
4
|
+
agentId: string;
|
|
5
|
+
/** Unique identifier for the workspace */
|
|
6
|
+
workspaceId: string;
|
|
7
|
+
/** Unique identifier for the sprint */
|
|
8
|
+
sprintId?: string;
|
|
9
|
+
/** Base URL for the API */
|
|
10
|
+
apiBase: string;
|
|
11
|
+
/** Path to the project */
|
|
12
|
+
projectPath: string;
|
|
13
|
+
/** API key */
|
|
14
|
+
apiKey: string;
|
|
15
|
+
/** AI model */
|
|
16
|
+
model?: string;
|
|
17
|
+
/** AI provider */
|
|
18
|
+
provider?: AiProvider;
|
|
19
|
+
/** When running in a worktree, this is the path to the main repo for progress updates */
|
|
20
|
+
mainProjectPath?: string;
|
|
21
|
+
/** Whether to use per-task worktrees for isolation */
|
|
22
|
+
useWorktrees?: boolean;
|
|
23
|
+
/** Whether to push branches to remote after committing */
|
|
24
|
+
autoPush?: boolean;
|
|
25
|
+
/** Base branch for worktree creation and PR targeting (set by orchestrator for tier-based execution) */
|
|
26
|
+
baseBranch?: string;
|
|
27
|
+
}
|
|
28
|
+
export interface CommitPushResult {
|
|
29
|
+
branch: string | null;
|
|
30
|
+
pushed: boolean;
|
|
31
|
+
pushFailed: boolean;
|
|
32
|
+
pushError?: string;
|
|
33
|
+
skipReason?: string;
|
|
34
|
+
noChanges?: boolean;
|
|
35
|
+
}
|
|
36
|
+
export interface TaskResult {
|
|
37
|
+
success: boolean;
|
|
38
|
+
summary: string;
|
|
39
|
+
branch?: string;
|
|
40
|
+
prUrl?: string;
|
|
41
|
+
prError?: string;
|
|
42
|
+
noChanges?: boolean;
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=worker-types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"worker-types.d.ts","sourceRoot":"","sources":["../../src/agent/worker-types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAElD,MAAM,WAAW,YAAY;IAC3B,sCAAsC;IACtC,OAAO,EAAE,MAAM,CAAC;IAChB,0CAA0C;IAC1C,WAAW,EAAE,MAAM,CAAC;IACpB,uCAAuC;IACvC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,2BAA2B;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,0BAA0B;IAC1B,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc;IACd,MAAM,EAAE,MAAM,CAAC;IACf,eAAe;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,kBAAkB;IAClB,QAAQ,CAAC,EAAE,UAAU,CAAC;IACtB,yFAAyF;IACzF,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,sDAAsD;IACtD,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,0DAA0D;IAC1D,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,wGAAwG;IACxG,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,MAAM,EAAE,OAAO,CAAC;IAChB,UAAU,EAAE,OAAO,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,MAAM,WAAW,UAAU;IACzB,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB"}
|
package/dist/agent/worker.d.ts
CHANGED
|
@@ -1,23 +1,14 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
export
|
|
3
|
-
agentId: string;
|
|
4
|
-
workspaceId: string;
|
|
5
|
-
sprintId?: string;
|
|
6
|
-
apiBase: string;
|
|
7
|
-
projectPath: string;
|
|
8
|
-
apiKey: string;
|
|
9
|
-
model?: string;
|
|
10
|
-
provider?: AiProvider;
|
|
11
|
-
/** When running in a worktree, this is the path to the main repo for progress updates */
|
|
12
|
-
mainProjectPath?: string;
|
|
13
|
-
/** Whether to use per-task worktrees for isolation */
|
|
14
|
-
useWorktrees?: boolean;
|
|
15
|
-
/** Whether to push branches to remote after committing */
|
|
16
|
-
autoPush?: boolean;
|
|
17
|
-
}
|
|
1
|
+
import type { WorkerConfig } from "./worker-types.js";
|
|
2
|
+
export type { WorkerConfig } from "./worker-types.js";
|
|
18
3
|
/**
|
|
19
|
-
* Main agent worker that
|
|
20
|
-
*
|
|
4
|
+
* Main agent worker that claims and executes tasks.
|
|
5
|
+
*
|
|
6
|
+
* Responsibilities:
|
|
7
|
+
* - Claiming tasks from the API via dispatch
|
|
8
|
+
* - Executing tasks using the AI runner
|
|
9
|
+
* - Delegating git operations (worktree, commit, push, PR) to `GitWorkflow`
|
|
10
|
+
* - Reporting task status back to the API
|
|
11
|
+
* - Heartbeat reporting to the orchestrator
|
|
21
12
|
*/
|
|
22
13
|
export declare class AgentWorker {
|
|
23
14
|
private config;
|
|
@@ -25,49 +16,22 @@ export declare class AgentWorker {
|
|
|
25
16
|
private aiRunner;
|
|
26
17
|
private taskExecutor;
|
|
27
18
|
private knowledgeBase;
|
|
28
|
-
private
|
|
29
|
-
private prService;
|
|
19
|
+
private gitWorkflow;
|
|
30
20
|
private maxTasks;
|
|
31
21
|
private tasksCompleted;
|
|
32
22
|
private heartbeatInterval;
|
|
33
23
|
private currentTaskId;
|
|
34
24
|
private currentWorktreePath;
|
|
35
25
|
private postCleanupDelayMs;
|
|
36
|
-
/** Cached GitHub username for co-authorship in commits */
|
|
37
|
-
private ghUsername;
|
|
38
26
|
constructor(config: WorkerConfig);
|
|
39
27
|
log(message: string, level?: "info" | "success" | "warn" | "error"): void;
|
|
40
28
|
private getActiveSprint;
|
|
41
29
|
private getNextTask;
|
|
42
30
|
/**
|
|
43
|
-
*
|
|
44
|
-
* Falls back to the main project path if worktrees are disabled.
|
|
45
|
-
*/
|
|
46
|
-
private createTaskWorktree;
|
|
47
|
-
/**
|
|
48
|
-
* Commit changes in a task worktree and optionally push to remote.
|
|
49
|
-
* Distinguishes "no commit", "push failed", and "branch pushed" outcomes.
|
|
31
|
+
* Execute a single task: create worktree -> run AI -> commit -> push -> PR.
|
|
50
32
|
*/
|
|
51
|
-
private commitAndPushWorktree;
|
|
52
|
-
/**
|
|
53
|
-
* Create a pull request for a completed task.
|
|
54
|
-
* Returns the PR URL if successful, null otherwise.
|
|
55
|
-
*/
|
|
56
|
-
private createPullRequest;
|
|
57
|
-
/**
|
|
58
|
-
* Clean up a task-specific worktree.
|
|
59
|
-
* Keep the branch if a commit was created so follow-up is possible.
|
|
60
|
-
*/
|
|
61
|
-
private cleanupTaskWorktree;
|
|
62
33
|
private executeTask;
|
|
63
|
-
/**
|
|
64
|
-
* Update progress.md in the main project after task completion
|
|
65
|
-
*/
|
|
66
34
|
private updateProgress;
|
|
67
|
-
/**
|
|
68
|
-
* Start sending periodic heartbeats to the API so the server
|
|
69
|
-
* knows this agent is alive and which task it's working on.
|
|
70
|
-
*/
|
|
71
35
|
private startHeartbeat;
|
|
72
36
|
private stopHeartbeat;
|
|
73
37
|
private sendHeartbeat;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"worker.d.ts","sourceRoot":"","sources":["../../src/agent/worker.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"worker.d.ts","sourceRoot":"","sources":["../../src/agent/worker.ts"],"names":[],"mappings":"AAcA,OAAO,KAAK,EAAc,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAGlE,YAAY,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEtD;;;;;;;;;GASG;AACH,qBAAa,WAAW;IAeV,OAAO,CAAC,MAAM;IAd1B,OAAO,CAAC,MAAM,CAAc;IAC5B,OAAO,CAAC,QAAQ,CAAW;IAC3B,OAAO,CAAC,YAAY,CAAe;IACnC,OAAO,CAAC,aAAa,CAAgB;IACrC,OAAO,CAAC,WAAW,CAAc;IAGjC,OAAO,CAAC,QAAQ,CAAM;IACtB,OAAO,CAAC,cAAc,CAAK;IAC3B,OAAO,CAAC,iBAAiB,CAA+C;IACxE,OAAO,CAAC,aAAa,CAAuB;IAC5C,OAAO,CAAC,mBAAmB,CAAuB;IAClD,OAAO,CAAC,kBAAkB,CAAS;gBAEf,MAAM,EAAE,YAAY;IA2ExC,GAAG,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,GAAE,MAAM,GAAG,SAAS,GAAG,MAAM,GAAG,OAAgB;YAmB5D,eAAe;YAcf,WAAW;IAgDzB;;OAEG;YACW,WAAW;IA2FzB,OAAO,CAAC,cAAc;IAmBtB,OAAO,CAAC,cAAc;IAKtB,OAAO,CAAC,aAAa;IAOrB,OAAO,CAAC,aAAa;YAgBP,iBAAiB;IAezB,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAoH3B"}
|