@almadar/agent 2.0.2 → 2.0.4
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/index.js +4 -5
- package/dist/agent/index.js.map +1 -1
- package/dist/agent/session-manager.d.ts +1 -1
- package/dist/contracts.d.ts +218 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -5
- package/dist/index.js.map +1 -1
- package/dist/tools/domain-orbital.d.ts +16 -16
- package/dist/tools/index.d.ts +16 -16
- package/dist/tools/index.js +4 -4
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/orbital-batch-subagent.d.ts +5 -5
- package/dist/tools/orbital-subagent.d.ts +8 -8
- package/package.json +7 -3
|
@@ -30,7 +30,7 @@ export interface OrbitalBatchSubagentToolOptions {
|
|
|
30
30
|
*/
|
|
31
31
|
export declare function createOrbitalBatchSubagentTool(options?: OrbitalBatchSubagentToolOptions): {
|
|
32
32
|
tool: import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
|
|
33
|
-
orbitals: z.ZodArray<z.
|
|
33
|
+
orbitals: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
34
34
|
options: z.ZodOptional<z.ZodObject<{
|
|
35
35
|
mode: z.ZodDefault<z.ZodOptional<z.ZodEnum<["single-call", "parallel-individual", "adaptive"]>>>;
|
|
36
36
|
batchSize: z.ZodOptional<z.ZodNumber>;
|
|
@@ -48,7 +48,7 @@ export declare function createOrbitalBatchSubagentTool(options?: OrbitalBatchSub
|
|
|
48
48
|
maxConcurrency?: number | undefined;
|
|
49
49
|
}>>;
|
|
50
50
|
}, "strip", z.ZodTypeAny, {
|
|
51
|
-
orbitals:
|
|
51
|
+
orbitals: Record<string, unknown>[];
|
|
52
52
|
options?: {
|
|
53
53
|
mode: "single-call" | "parallel-individual" | "adaptive";
|
|
54
54
|
preserveRelationships: boolean;
|
|
@@ -56,7 +56,7 @@ export declare function createOrbitalBatchSubagentTool(options?: OrbitalBatchSub
|
|
|
56
56
|
maxConcurrency?: number | undefined;
|
|
57
57
|
} | undefined;
|
|
58
58
|
}, {
|
|
59
|
-
orbitals:
|
|
59
|
+
orbitals: Record<string, unknown>[];
|
|
60
60
|
options?: {
|
|
61
61
|
batchSize?: number | undefined;
|
|
62
62
|
mode?: "single-call" | "parallel-individual" | "adaptive" | undefined;
|
|
@@ -64,7 +64,7 @@ export declare function createOrbitalBatchSubagentTool(options?: OrbitalBatchSub
|
|
|
64
64
|
maxConcurrency?: number | undefined;
|
|
65
65
|
} | undefined;
|
|
66
66
|
}>, {
|
|
67
|
-
orbitals:
|
|
67
|
+
orbitals: Record<string, unknown>[];
|
|
68
68
|
options?: {
|
|
69
69
|
mode: "single-call" | "parallel-individual" | "adaptive";
|
|
70
70
|
preserveRelationships: boolean;
|
|
@@ -72,7 +72,7 @@ export declare function createOrbitalBatchSubagentTool(options?: OrbitalBatchSub
|
|
|
72
72
|
maxConcurrency?: number | undefined;
|
|
73
73
|
} | undefined;
|
|
74
74
|
}, {
|
|
75
|
-
orbitals:
|
|
75
|
+
orbitals: Record<string, unknown>[];
|
|
76
76
|
options?: {
|
|
77
77
|
batchSize?: number | undefined;
|
|
78
78
|
mode?: "single-call" | "parallel-individual" | "adaptive" | undefined;
|
|
@@ -98,13 +98,13 @@ export declare function createOrbitalSubagentTool(options?: OrbitalSubagentToolO
|
|
|
98
98
|
category: z.ZodEnum<["game", "business", "dashboard", "form", "content", "social", "ecommerce", "workflow"]>;
|
|
99
99
|
vocabulary: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
100
100
|
}, "strip", z.ZodTypeAny, {
|
|
101
|
-
request: string;
|
|
102
101
|
category: "game" | "business" | "dashboard" | "form" | "content" | "social" | "ecommerce" | "workflow";
|
|
102
|
+
request: string;
|
|
103
103
|
requestFragment?: string | undefined;
|
|
104
104
|
vocabulary?: Record<string, string> | undefined;
|
|
105
105
|
}, {
|
|
106
|
-
request: string;
|
|
107
106
|
category: "game" | "business" | "dashboard" | "form" | "content" | "social" | "ecommerce" | "workflow";
|
|
107
|
+
request: string;
|
|
108
108
|
requestFragment?: string | undefined;
|
|
109
109
|
vocabulary?: Record<string, string> | undefined;
|
|
110
110
|
}>>;
|
|
@@ -191,8 +191,8 @@ export declare function createOrbitalSubagentTool(options?: OrbitalSubagentToolO
|
|
|
191
191
|
}[] | undefined;
|
|
192
192
|
patterns?: string[] | undefined;
|
|
193
193
|
domainContext?: {
|
|
194
|
-
request: string;
|
|
195
194
|
category: "game" | "business" | "dashboard" | "form" | "content" | "social" | "ecommerce" | "workflow";
|
|
195
|
+
request: string;
|
|
196
196
|
requestFragment?: string | undefined;
|
|
197
197
|
vocabulary?: Record<string, string> | undefined;
|
|
198
198
|
} | undefined;
|
|
@@ -234,8 +234,8 @@ export declare function createOrbitalSubagentTool(options?: OrbitalSubagentToolO
|
|
|
234
234
|
}[] | undefined;
|
|
235
235
|
patterns?: string[] | undefined;
|
|
236
236
|
domainContext?: {
|
|
237
|
-
request: string;
|
|
238
237
|
category: "game" | "business" | "dashboard" | "form" | "content" | "social" | "ecommerce" | "workflow";
|
|
238
|
+
request: string;
|
|
239
239
|
requestFragment?: string | undefined;
|
|
240
240
|
vocabulary?: Record<string, string> | undefined;
|
|
241
241
|
} | undefined;
|
|
@@ -281,8 +281,8 @@ export declare function createOrbitalSubagentTool(options?: OrbitalSubagentToolO
|
|
|
281
281
|
}[] | undefined;
|
|
282
282
|
patterns?: string[] | undefined;
|
|
283
283
|
domainContext?: {
|
|
284
|
-
request: string;
|
|
285
284
|
category: "game" | "business" | "dashboard" | "form" | "content" | "social" | "ecommerce" | "workflow";
|
|
285
|
+
request: string;
|
|
286
286
|
requestFragment?: string | undefined;
|
|
287
287
|
vocabulary?: Record<string, string> | undefined;
|
|
288
288
|
} | undefined;
|
|
@@ -328,8 +328,8 @@ export declare function createOrbitalSubagentTool(options?: OrbitalSubagentToolO
|
|
|
328
328
|
}[] | undefined;
|
|
329
329
|
patterns?: string[] | undefined;
|
|
330
330
|
domainContext?: {
|
|
331
|
-
request: string;
|
|
332
331
|
category: "game" | "business" | "dashboard" | "form" | "content" | "social" | "ecommerce" | "workflow";
|
|
332
|
+
request: string;
|
|
333
333
|
requestFragment?: string | undefined;
|
|
334
334
|
vocabulary?: Record<string, string> | undefined;
|
|
335
335
|
} | undefined;
|
|
@@ -375,8 +375,8 @@ export declare function createOrbitalSubagentTool(options?: OrbitalSubagentToolO
|
|
|
375
375
|
}[] | undefined;
|
|
376
376
|
patterns?: string[] | undefined;
|
|
377
377
|
domainContext?: {
|
|
378
|
-
request: string;
|
|
379
378
|
category: "game" | "business" | "dashboard" | "form" | "content" | "social" | "ecommerce" | "workflow";
|
|
379
|
+
request: string;
|
|
380
380
|
requestFragment?: string | undefined;
|
|
381
381
|
vocabulary?: Record<string, string> | undefined;
|
|
382
382
|
} | undefined;
|
|
@@ -422,8 +422,8 @@ export declare function createOrbitalSubagentTool(options?: OrbitalSubagentToolO
|
|
|
422
422
|
}[] | undefined;
|
|
423
423
|
patterns?: string[] | undefined;
|
|
424
424
|
domainContext?: {
|
|
425
|
-
request: string;
|
|
426
425
|
category: "game" | "business" | "dashboard" | "form" | "content" | "social" | "ecommerce" | "workflow";
|
|
426
|
+
request: string;
|
|
427
427
|
requestFragment?: string | undefined;
|
|
428
428
|
vocabulary?: Record<string, string> | undefined;
|
|
429
429
|
} | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/agent",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "AI agent infrastructure for Almadar orbital schema generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"@almadar/llm": ">=2.0.1",
|
|
49
49
|
"@almadar/patterns": ">=2.0.0",
|
|
50
50
|
"@almadar/skills": ">=2.0.1",
|
|
51
|
+
"langsmith": "^0.1.0",
|
|
51
52
|
"uuid": "^9.0.0",
|
|
52
53
|
"zod": "^3.22.0"
|
|
53
54
|
},
|
|
@@ -75,15 +76,18 @@
|
|
|
75
76
|
"isolated-vm": "^4.7.2"
|
|
76
77
|
},
|
|
77
78
|
"devDependencies": {
|
|
79
|
+
"@almadar/eslint-plugin": ">=2.3.0",
|
|
78
80
|
"@langchain/core": "^1.1.26",
|
|
79
81
|
"@langchain/langgraph": "^1.1.4",
|
|
80
82
|
"@langchain/langgraph-checkpoint": "^1.0.0",
|
|
83
|
+
"@types/node": "^22.0.0",
|
|
81
84
|
"@types/uuid": "^9.0.0",
|
|
85
|
+
"@typescript-eslint/parser": "8.56.0",
|
|
82
86
|
"deepagents": "^1.7.3",
|
|
87
|
+
"eslint": "10.0.0",
|
|
83
88
|
"tsup": "^8.0.0",
|
|
84
89
|
"typescript": "^5.4.0",
|
|
85
|
-
"vitest": "^3.0.0"
|
|
86
|
-
"@types/node": "^22.0.0"
|
|
90
|
+
"vitest": "^3.0.0"
|
|
87
91
|
},
|
|
88
92
|
"repository": {
|
|
89
93
|
"type": "git",
|