@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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const AGENT_PERSONAS: {
|
|
2
2
|
readonly base: {
|
|
3
|
-
readonly displayName: "
|
|
3
|
+
readonly displayName: "Sage the Base Agent";
|
|
4
4
|
readonly purpose: "Base agent that orchestrates the full response.";
|
|
5
5
|
};
|
|
6
6
|
readonly ask: {
|
|
@@ -42,6 +42,6 @@ export declare const AGENT_IDS: (keyof typeof AGENT_PERSONAS)[];
|
|
|
42
42
|
export declare const AGENT_ID_PREFIX = "LevelCodeAI/";
|
|
43
43
|
export declare const AGENT_NAMES: Record<keyof typeof AGENT_PERSONAS, string>;
|
|
44
44
|
export type AgentName = (typeof AGENT_PERSONAS)[keyof typeof AGENT_PERSONAS]['displayName'];
|
|
45
|
-
export declare const UNIQUE_AGENT_NAMES: ("
|
|
45
|
+
export declare const UNIQUE_AGENT_NAMES: ("Sage the Base Agent" | "Ask Mode Agent" | "Theo the Theorizer" | "Dora The File Explorer" | "Fletcher the File Fetcher" | "Reid Searcher the Researcher" | "Peter Plan" | "Nit Pick Nick the Reviewer" | "Bob the Agent Builder")[];
|
|
46
46
|
export declare const AGENT_NAME_TO_TYPES: Record<string, string[]>;
|
|
47
47
|
export declare const MAX_AGENT_STEPS_DEFAULT = 100;
|
|
@@ -66,6 +66,8 @@ export declare const teamMemberSchema: z.ZodObject<{
|
|
|
66
66
|
status: z.ZodEnum<{
|
|
67
67
|
active: "active";
|
|
68
68
|
idle: "idle";
|
|
69
|
+
working: "working";
|
|
70
|
+
blocked: "blocked";
|
|
69
71
|
completed: "completed";
|
|
70
72
|
failed: "failed";
|
|
71
73
|
}>;
|
|
@@ -119,6 +121,8 @@ export declare const teamConfigSchema: z.ZodObject<{
|
|
|
119
121
|
status: z.ZodEnum<{
|
|
120
122
|
active: "active";
|
|
121
123
|
idle: "idle";
|
|
124
|
+
working: "working";
|
|
125
|
+
blocked: "blocked";
|
|
122
126
|
completed: "completed";
|
|
123
127
|
failed: "failed";
|
|
124
128
|
}>;
|