@almadar/agent 3.2.0 → 3.3.0

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.
@@ -151,4 +151,4 @@ export declare function createCombineSchemasTool(workDir?: string): import("@lan
151
151
  listens?: any[] | undefined;
152
152
  }[] | undefined;
153
153
  defaultRoute?: string | undefined;
154
- }, string, "construct_combined_schema">;
154
+ }, string, unknown, "construct_combined_schema">;
@@ -514,7 +514,7 @@ export declare function createGenerateOrbitalDomainTool(options?: DomainOrbitalT
514
514
  };
515
515
  orbitalIndex: number;
516
516
  totalOrbitals: number;
517
- }, string, "generate_orbital_domain">;
517
+ }, string, unknown, "generate_orbital_domain">;
518
518
  setEventCallback: (callback: DomainOrbitalEventCallback) => void;
519
519
  setCompleteCallback: (callback: DomainOrbitalCompleteCallback) => void;
520
520
  };
@@ -535,7 +535,7 @@ export declare function createConstructCombinedDomainTool(options?: {
535
535
  appName: string;
536
536
  }, {
537
537
  appName: string;
538
- }, string, "construct_combined_domain">;
538
+ }, string, unknown, "construct_combined_domain">;
539
539
  setEventCallback: (callback: DomainOrbitalEventCallback) => void;
540
540
  };
541
541
  /**
@@ -980,7 +980,7 @@ export declare function createDomainOrbitalTools(options?: DomainOrbitalToolOpti
980
980
  };
981
981
  orbitalIndex: number;
982
982
  totalOrbitals: number;
983
- }, string, "generate_orbital_domain">;
983
+ }, string, unknown, "generate_orbital_domain">;
984
984
  constructCombinedDomain: import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
985
985
  appName: z.ZodString;
986
986
  }, "strip", z.ZodTypeAny, {
@@ -991,7 +991,7 @@ export declare function createDomainOrbitalTools(options?: DomainOrbitalToolOpti
991
991
  appName: string;
992
992
  }, {
993
993
  appName: string;
994
- }, string, "construct_combined_domain">;
994
+ }, string, unknown, "construct_combined_domain">;
995
995
  setEventCallback: (callback: DomainOrbitalEventCallback) => void;
996
996
  setCompleteCallback: (callback: DomainOrbitalCompleteCallback) => void;
997
997
  };
@@ -35,4 +35,4 @@ export declare function createExecuteTool(workDir: string, auditLog?: AuditLog):
35
35
  }, {
36
36
  command: string;
37
37
  timeout?: number | undefined;
38
- }, string, "execute">;
38
+ }, string, unknown, "execute">;
@@ -53,4 +53,4 @@ export declare function createFinishTaskTool(workDir: string | undefined): impor
53
53
  };
54
54
  schemaPath: string | undefined;
55
55
  nextAction: string;
56
- }, "finish_task">;
56
+ }, unknown, "finish_task">;
@@ -50,4 +50,4 @@ export declare function createGenerateSchemaTool(): import("@langchain/core/tool
50
50
  suggestedPatterns?: string[] | undefined;
51
51
  additionalInstructions?: string | undefined;
52
52
  existingSchema?: string | undefined;
53
- }, string, "generate_schema">;
53
+ }, string, unknown, "generate_schema">;
@@ -42,7 +42,7 @@ export declare function createGitHubTools(config: GitHubToolsConfig): {
42
42
  repoUrl: string;
43
43
  branch?: string | undefined;
44
44
  depth?: number | undefined;
45
- }, string, "github_clone">;
45
+ }, string, unknown, "github_clone">;
46
46
  github_create_branch: import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
47
47
  branchName: z.ZodString;
48
48
  baseBranch: z.ZodOptional<z.ZodString>;
@@ -58,7 +58,7 @@ export declare function createGitHubTools(config: GitHubToolsConfig): {
58
58
  }, {
59
59
  branchName: string;
60
60
  baseBranch?: string | undefined;
61
- }, string, "github_create_branch">;
61
+ }, string, unknown, "github_create_branch">;
62
62
  github_commit: import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
63
63
  message: z.ZodString;
64
64
  files: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -74,7 +74,7 @@ export declare function createGitHubTools(config: GitHubToolsConfig): {
74
74
  }, {
75
75
  message: string;
76
76
  files?: string[] | undefined;
77
- }, string, "github_commit">;
77
+ }, string, unknown, "github_commit">;
78
78
  github_push: import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
79
79
  branchName: z.ZodString;
80
80
  }, "strip", z.ZodTypeAny, {
@@ -85,7 +85,7 @@ export declare function createGitHubTools(config: GitHubToolsConfig): {
85
85
  branchName: string;
86
86
  }, {
87
87
  branchName: string;
88
- }, string, "github_push">;
88
+ }, string, unknown, "github_push">;
89
89
  github_create_pr: import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
90
90
  title: z.ZodString;
91
91
  body: z.ZodString;
@@ -116,7 +116,7 @@ export declare function createGitHubTools(config: GitHubToolsConfig): {
116
116
  body: string;
117
117
  headBranch: string;
118
118
  draft?: boolean | undefined;
119
- }, string, "github_create_pr">;
119
+ }, string, unknown, "github_create_pr">;
120
120
  github_list_issues: import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
121
121
  state: z.ZodOptional<z.ZodEnum<["open", "closed", "all"]>>;
122
122
  labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -137,7 +137,7 @@ export declare function createGitHubTools(config: GitHubToolsConfig): {
137
137
  limit?: number | undefined;
138
138
  state?: "open" | "closed" | "all" | undefined;
139
139
  labels?: string[] | undefined;
140
- }, string, "github_list_issues">;
140
+ }, string, unknown, "github_list_issues">;
141
141
  github_get_issue: import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
142
142
  issueNumber: z.ZodNumber;
143
143
  }, "strip", z.ZodTypeAny, {
@@ -148,7 +148,7 @@ export declare function createGitHubTools(config: GitHubToolsConfig): {
148
148
  issueNumber: number;
149
149
  }, {
150
150
  issueNumber: number;
151
- }, string, "github_get_issue">;
151
+ }, string, unknown, "github_get_issue">;
152
152
  github_get_pr_comments: import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
153
153
  prNumber: z.ZodNumber;
154
154
  }, "strip", z.ZodTypeAny, {
@@ -159,7 +159,7 @@ export declare function createGitHubTools(config: GitHubToolsConfig): {
159
159
  prNumber: number;
160
160
  }, {
161
161
  prNumber: number;
162
- }, string, "github_get_pr_comments">;
162
+ }, string, unknown, "github_get_pr_comments">;
163
163
  };
164
164
  /**
165
165
  * Create GitHub tools as array (for easy spreading into agent tools)
@@ -184,7 +184,7 @@ export declare function createGitHubToolsArray(config: GitHubToolsConfig): (impo
184
184
  repoUrl: string;
185
185
  branch?: string | undefined;
186
186
  depth?: number | undefined;
187
- }, string, "github_clone"> | import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
187
+ }, string, unknown, "github_clone"> | import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
188
188
  branchName: z.ZodString;
189
189
  baseBranch: z.ZodOptional<z.ZodString>;
190
190
  }, "strip", z.ZodTypeAny, {
@@ -199,7 +199,7 @@ export declare function createGitHubToolsArray(config: GitHubToolsConfig): (impo
199
199
  }, {
200
200
  branchName: string;
201
201
  baseBranch?: string | undefined;
202
- }, string, "github_create_branch"> | import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
202
+ }, string, unknown, "github_create_branch"> | import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
203
203
  message: z.ZodString;
204
204
  files: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
205
205
  }, "strip", z.ZodTypeAny, {
@@ -214,7 +214,7 @@ export declare function createGitHubToolsArray(config: GitHubToolsConfig): (impo
214
214
  }, {
215
215
  message: string;
216
216
  files?: string[] | undefined;
217
- }, string, "github_commit"> | import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
217
+ }, string, unknown, "github_commit"> | import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
218
218
  branchName: z.ZodString;
219
219
  }, "strip", z.ZodTypeAny, {
220
220
  branchName: string;
@@ -224,7 +224,7 @@ export declare function createGitHubToolsArray(config: GitHubToolsConfig): (impo
224
224
  branchName: string;
225
225
  }, {
226
226
  branchName: string;
227
- }, string, "github_push"> | import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
227
+ }, string, unknown, "github_push"> | import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
228
228
  title: z.ZodString;
229
229
  body: z.ZodString;
230
230
  baseBranch: z.ZodString;
@@ -254,7 +254,7 @@ export declare function createGitHubToolsArray(config: GitHubToolsConfig): (impo
254
254
  body: string;
255
255
  headBranch: string;
256
256
  draft?: boolean | undefined;
257
- }, string, "github_create_pr"> | import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
257
+ }, string, unknown, "github_create_pr"> | import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
258
258
  state: z.ZodOptional<z.ZodEnum<["open", "closed", "all"]>>;
259
259
  labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
260
260
  limit: z.ZodOptional<z.ZodNumber>;
@@ -274,7 +274,7 @@ export declare function createGitHubToolsArray(config: GitHubToolsConfig): (impo
274
274
  limit?: number | undefined;
275
275
  state?: "open" | "closed" | "all" | undefined;
276
276
  labels?: string[] | undefined;
277
- }, string, "github_list_issues"> | import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
277
+ }, string, unknown, "github_list_issues"> | import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
278
278
  issueNumber: z.ZodNumber;
279
279
  }, "strip", z.ZodTypeAny, {
280
280
  issueNumber: number;
@@ -284,7 +284,7 @@ export declare function createGitHubToolsArray(config: GitHubToolsConfig): (impo
284
284
  issueNumber: number;
285
285
  }, {
286
286
  issueNumber: number;
287
- }, string, "github_get_issue"> | import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
287
+ }, string, unknown, "github_get_issue"> | import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
288
288
  prNumber: z.ZodNumber;
289
289
  }, "strip", z.ZodTypeAny, {
290
290
  prNumber: number;
@@ -294,4 +294,4 @@ export declare function createGitHubToolsArray(config: GitHubToolsConfig): (impo
294
294
  prNumber: number;
295
295
  }, {
296
296
  prNumber: number;
297
- }, string, "github_get_pr_comments">)[];
297
+ }, string, unknown, "github_get_pr_comments">)[];
@@ -42,8 +42,8 @@ export declare function createAgentTools(workDir: string): {
42
42
  }, {
43
43
  command: string;
44
44
  timeout?: number | undefined;
45
- }, string, "execute">;
46
- validateSchema: import("@langchain/core/tools").DynamicStructuredTool<import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>, {}, {}, string, "validate_schema">;
45
+ }, string, unknown, "execute">;
46
+ validateSchema: import("@langchain/core/tools").DynamicStructuredTool<import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>, {}, {}, string, unknown, "validate_schema">;
47
47
  generateSchema: import("@langchain/core/tools").DynamicStructuredTool<import("zod").ZodObject<{
48
48
  userRequest: import("zod").ZodString;
49
49
  suggestedTraits: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
@@ -84,7 +84,7 @@ export declare function createAgentTools(workDir: string): {
84
84
  suggestedPatterns?: string[] | undefined;
85
85
  additionalInstructions?: string | undefined;
86
86
  existingSchema?: string | undefined;
87
- }, string, "generate_schema">;
87
+ }, string, unknown, "generate_schema">;
88
88
  finishTask: import("@langchain/core/tools").DynamicStructuredTool<import("zod").ZodObject<{
89
89
  summary: import("zod").ZodString;
90
90
  schemaPath: import("zod").ZodOptional<import("zod").ZodString>;
@@ -124,7 +124,7 @@ export declare function createAgentTools(workDir: string): {
124
124
  };
125
125
  schemaPath: string | undefined;
126
126
  nextAction: string;
127
- }, "finish_task">;
127
+ }, unknown, "finish_task">;
128
128
  combineSchemas: import("@langchain/core/tools").DynamicStructuredTool<import("zod").ZodObject<{
129
129
  orbitals: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
130
130
  name: import("zod").ZodString;
@@ -266,7 +266,7 @@ export declare function createAgentTools(workDir: string): {
266
266
  listens?: any[] | undefined;
267
267
  }[] | undefined;
268
268
  defaultRoute?: string | undefined;
269
- }, string, "construct_combined_schema">;
269
+ }, string, unknown, "construct_combined_schema">;
270
270
  orbitalSubagent: {
271
271
  tool: import("@langchain/core/tools").DynamicStructuredTool<import("zod").ZodObject<{
272
272
  orbital: import("zod").ZodObject<{
@@ -671,7 +671,7 @@ export declare function createAgentTools(workDir: string): {
671
671
  };
672
672
  orbitalIndex?: number | undefined;
673
673
  totalOrbitals?: number | undefined;
674
- }, string, "generate_orbital">;
674
+ }, string, unknown, "generate_orbital">;
675
675
  setEventCallback: (callback: import("./orbital-subagent.js").SubagentEventCallback) => void;
676
676
  setOrbitalCompleteCallback: (callback: import("./orbital-subagent.js").OrbitalCompleteCallback) => void;
677
677
  };
@@ -802,7 +802,7 @@ export declare function createAgentTools(workDir: string): {
802
802
  };
803
803
  traitIndex?: number | undefined;
804
804
  totalTraits?: number | undefined;
805
- }, string, "generate_custom_trait">;
805
+ }, string, unknown, "generate_custom_trait">;
806
806
  setEventCallback: (callback: import("./trait-subagent.js").TraitEventCallback) => void;
807
807
  setTraitCompleteCallback: (callback: import("./trait-subagent.js").TraitCompleteCallback) => void;
808
808
  };
@@ -1245,7 +1245,7 @@ export declare function createAgentTools(workDir: string): {
1245
1245
  };
1246
1246
  orbitalIndex: number;
1247
1247
  totalOrbitals: number;
1248
- }, string, "generate_orbital_domain">;
1248
+ }, string, unknown, "generate_orbital_domain">;
1249
1249
  constructCombinedDomain: import("@langchain/core/tools").DynamicStructuredTool<import("zod").ZodObject<{
1250
1250
  appName: import("zod").ZodString;
1251
1251
  }, "strip", import("zod").ZodTypeAny, {
@@ -1256,7 +1256,7 @@ export declare function createAgentTools(workDir: string): {
1256
1256
  appName: string;
1257
1257
  }, {
1258
1258
  appName: string;
1259
- }, string, "construct_combined_domain">;
1259
+ }, string, unknown, "construct_combined_domain">;
1260
1260
  setEventCallback: (callback: import("./domain-orbital.js").DomainOrbitalEventCallback) => void;
1261
1261
  setCompleteCallback: (callback: import("./domain-orbital.js").DomainOrbitalCompleteCallback) => void;
1262
1262
  };
@@ -1271,7 +1271,7 @@ export declare function createAgentTools(workDir: string): {
1271
1271
  file: string;
1272
1272
  }, {
1273
1273
  file: string;
1274
- }, string, "query_schema_structure">;
1274
+ }, string, unknown, "query_schema_structure">;
1275
1275
  extractChunk: import("@langchain/core/tools").DynamicStructuredTool<import("zod").ZodObject<{
1276
1276
  file: import("zod").ZodString;
1277
1277
  type: import("zod").ZodEnum<["orbital", "trait", "inline-trait"]>;
@@ -1302,7 +1302,7 @@ export declare function createAgentTools(workDir: string): {
1302
1302
  file: string;
1303
1303
  parentOrbital?: string | undefined;
1304
1304
  includeTraits?: boolean | undefined;
1305
- }, string, "extract_chunk">;
1305
+ }, string, unknown, "extract_chunk">;
1306
1306
  applyChunk: import("@langchain/core/tools").DynamicStructuredTool<import("zod").ZodObject<{
1307
1307
  chunkId: import("zod").ZodString;
1308
1308
  }, "strip", import("zod").ZodTypeAny, {
@@ -1313,6 +1313,6 @@ export declare function createAgentTools(workDir: string): {
1313
1313
  chunkId: string;
1314
1314
  }, {
1315
1315
  chunkId: string;
1316
- }, string, "apply_chunk">;
1316
+ }, string, unknown, "apply_chunk">;
1317
1317
  };
1318
1318
  };
@@ -79,7 +79,7 @@ export declare function createOrbitalBatchSubagentTool(options?: OrbitalBatchSub
79
79
  preserveRelationships?: boolean | undefined;
80
80
  maxConcurrency?: number | undefined;
81
81
  } | undefined;
82
- }, string, "generate_orbitals_batch">;
82
+ }, string, unknown, "generate_orbitals_batch">;
83
83
  setEventCallback: (callback: SubagentEventCallback) => void;
84
84
  setBatchCompleteCallback: (callback: BatchCompleteCallback) => void;
85
85
  };
@@ -444,7 +444,7 @@ export declare function createOrbitalSubagentTool(options?: OrbitalSubagentToolO
444
444
  };
445
445
  orbitalIndex?: number | undefined;
446
446
  totalOrbitals?: number | undefined;
447
- }, string, "generate_orbital">;
447
+ }, string, unknown, "generate_orbital">;
448
448
  setEventCallback: (callback: SubagentEventCallback) => void;
449
449
  setOrbitalCompleteCallback: (callback: OrbitalCompleteCallback) => void;
450
450
  };
@@ -52,7 +52,7 @@ export declare function createOrchestratedFixingTool(options: OrchestratedFixing
52
52
  schema: {};
53
53
  }, {
54
54
  schema: {};
55
- }, OrchestratedFixingResult, "fix_schema_orchestrated">;
55
+ }, OrchestratedFixingResult, unknown, "fix_schema_orchestrated">;
56
56
  /**
57
57
  * Create a validation-only tool (no fixing).
58
58
  * Useful for checking schema validity before/after other operations.
@@ -71,4 +71,4 @@ export declare function createValidateTool(): import("@langchain/core/tools").Dy
71
71
  valid: boolean;
72
72
  errorCount: number;
73
73
  errors: unknown[];
74
- }, "validate_schema">;
74
+ }, unknown, "validate_schema">;
@@ -52,7 +52,7 @@ export declare function createOrchestratedGenerationTool(options: OrchestratedGe
52
52
  prompt: string;
53
53
  }, {
54
54
  prompt: string;
55
- }, OrchestratedGenerationResult, "generate_schema_orchestrated">;
55
+ }, OrchestratedGenerationResult, unknown, "generate_schema_orchestrated">;
56
56
  /**
57
57
  * Create a tool that provides complexity estimation without full generation.
58
58
  * Useful for UI feedback before starting generation.
@@ -72,4 +72,4 @@ export declare function createComplexityCheckTool(): import("@langchain/core/too
72
72
  confidence: "medium" | "high" | "low";
73
73
  likelyComplex: boolean;
74
74
  recommendedStrategy: string;
75
- }, "check_complexity">;
75
+ }, unknown, "check_complexity">;
@@ -17,7 +17,7 @@ export declare function createQuerySchemaStructureTool(workDir: string): import(
17
17
  file: string;
18
18
  }, {
19
19
  file: string;
20
- }, string, "query_schema_structure">;
20
+ }, string, unknown, "query_schema_structure">;
21
21
  export declare function createExtractChunkTool(workDir: string): import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
22
22
  file: z.ZodString;
23
23
  type: z.ZodEnum<["orbital", "trait", "inline-trait"]>;
@@ -48,7 +48,7 @@ export declare function createExtractChunkTool(workDir: string): import("@langch
48
48
  file: string;
49
49
  parentOrbital?: string | undefined;
50
50
  includeTraits?: boolean | undefined;
51
- }, string, "extract_chunk">;
51
+ }, string, unknown, "extract_chunk">;
52
52
  export declare function createApplyChunkTool(workDir: string): import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
53
53
  chunkId: z.ZodString;
54
54
  }, "strip", z.ZodTypeAny, {
@@ -59,7 +59,7 @@ export declare function createApplyChunkTool(workDir: string): import("@langchai
59
59
  chunkId: string;
60
60
  }, {
61
61
  chunkId: string;
62
- }, string, "apply_chunk">;
62
+ }, string, unknown, "apply_chunk">;
63
63
  export declare function createSchemaChunkingTools(workDir: string): {
64
64
  querySchemaStructure: import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
65
65
  file: z.ZodString;
@@ -71,7 +71,7 @@ export declare function createSchemaChunkingTools(workDir: string): {
71
71
  file: string;
72
72
  }, {
73
73
  file: string;
74
- }, string, "query_schema_structure">;
74
+ }, string, unknown, "query_schema_structure">;
75
75
  extractChunk: import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
76
76
  file: z.ZodString;
77
77
  type: z.ZodEnum<["orbital", "trait", "inline-trait"]>;
@@ -102,7 +102,7 @@ export declare function createSchemaChunkingTools(workDir: string): {
102
102
  file: string;
103
103
  parentOrbital?: string | undefined;
104
104
  includeTraits?: boolean | undefined;
105
- }, string, "extract_chunk">;
105
+ }, string, unknown, "extract_chunk">;
106
106
  applyChunk: import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{
107
107
  chunkId: z.ZodString;
108
108
  }, "strip", z.ZodTypeAny, {
@@ -113,5 +113,5 @@ export declare function createSchemaChunkingTools(workDir: string): {
113
113
  chunkId: string;
114
114
  }, {
115
115
  chunkId: string;
116
- }, string, "apply_chunk">;
116
+ }, string, unknown, "apply_chunk">;
117
117
  };
@@ -165,7 +165,7 @@ export declare function createTraitSubagentTool(options?: TraitSubagentToolOptio
165
165
  };
166
166
  traitIndex?: number | undefined;
167
167
  totalTraits?: number | undefined;
168
- }, string, "generate_custom_trait">;
168
+ }, string, unknown, "generate_custom_trait">;
169
169
  setEventCallback: (callback: TraitEventCallback) => void;
170
170
  setTraitCompleteCallback: (callback: TraitCompleteCallback) => void;
171
171
  };
@@ -14,4 +14,4 @@ import { z } from 'zod';
14
14
  * Has a built-in cap of MAX_VALIDATION_ATTEMPTS to prevent
15
15
  * infinite validation-fix loops.
16
16
  */
17
- export declare function createValidateSchemaTool(workDir: string): import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, {}, {}, string, "validate_schema">;
17
+ export declare function createValidateSchemaTool(workDir: string): import("@langchain/core/tools").DynamicStructuredTool<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, {}, {}, string, unknown, "validate_schema">;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/agent",
3
- "version": "3.2.0",
3
+ "version": "3.3.0",
4
4
  "description": "AI agent infrastructure for Almadar orbital schema generation",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",