@levelcode/sdk 0.2.0 → 0.2.1
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/common/src/constants/agents.d.ts +2 -2
- package/dist/common/src/types/team-config-schemas.d.ts +4 -0
- package/dist/index.cjs +306 -296
- package/dist/index.cjs.map +19 -19
- package/dist/index.mjs +339 -329
- package/dist/index.mjs.map +19 -19
- package/dist/packages/agent-runtime/src/tools/handlers/list.d.ts +4 -0
- package/dist/packages/agent-runtime/src/tools/handlers/tool/task-create.d.ts +1 -0
- package/dist/packages/agent-runtime/src/tools/handlers/tool/task-get.d.ts +1 -0
- package/dist/packages/agent-runtime/src/tools/handlers/tool/task-list.d.ts +1 -0
- package/dist/packages/agent-runtime/src/tools/handlers/tool/task-update.d.ts +1 -0
- package/dist/sdk/src/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -253,24 +253,28 @@ export declare const levelcodeToolHandlers: {
|
|
|
253
253
|
task_create: (params: {
|
|
254
254
|
previousToolCallFinished: Promise<void>;
|
|
255
255
|
toolCall: import("@levelcode/common/tools/list").LevelCodeToolCall<"task_create">;
|
|
256
|
+
agentStepId: string;
|
|
256
257
|
}) => Promise<{
|
|
257
258
|
output: import("src").LevelCodeToolOutput<"task_create">;
|
|
258
259
|
}>;
|
|
259
260
|
task_get: (params: {
|
|
260
261
|
previousToolCallFinished: Promise<void>;
|
|
261
262
|
toolCall: import("@levelcode/common/tools/list").LevelCodeToolCall<"task_get">;
|
|
263
|
+
agentStepId: string;
|
|
262
264
|
}) => Promise<{
|
|
263
265
|
output: import("src").LevelCodeToolOutput<"task_get">;
|
|
264
266
|
}>;
|
|
265
267
|
task_list: (params: {
|
|
266
268
|
previousToolCallFinished: Promise<void>;
|
|
267
269
|
toolCall: import("@levelcode/common/tools/list").LevelCodeToolCall<"task_list">;
|
|
270
|
+
agentStepId: string;
|
|
268
271
|
}) => Promise<{
|
|
269
272
|
output: import("src").LevelCodeToolOutput<"task_list">;
|
|
270
273
|
}>;
|
|
271
274
|
task_update: (params: {
|
|
272
275
|
previousToolCallFinished: Promise<void>;
|
|
273
276
|
toolCall: import("@levelcode/common/tools/list").LevelCodeToolCall<"task_update">;
|
|
277
|
+
agentStepId: string;
|
|
274
278
|
trackEvent: import("@levelcode/common/types/contracts/analytics").TrackEventFn;
|
|
275
279
|
userId: string | undefined;
|
|
276
280
|
logger: import("@levelcode/common/types/contracts/logger").Logger;
|
package/dist/sdk/src/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export type { AgentDefinition } from '@levelcode/common/templates/initial-agents
|
|
|
12
12
|
export type { ToolName } from '@levelcode/common/tools/constants';
|
|
13
13
|
export type { ClientToolCall, ClientToolName, LevelCodeToolOutput, } from '@levelcode/common/tools/list';
|
|
14
14
|
export * from './client';
|
|
15
|
+
export * from './team';
|
|
15
16
|
export * from './custom-tool';
|
|
16
17
|
export * from './native/ripgrep';
|
|
17
18
|
export * from './run-state';
|