@wundr.io/prompt-templates 1.0.3
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/engine.d.ts +206 -0
- package/dist/engine.d.ts.map +1 -0
- package/dist/engine.js +506 -0
- package/dist/engine.js.map +1 -0
- package/dist/helpers.d.ts +201 -0
- package/dist/helpers.d.ts.map +1 -0
- package/dist/helpers.js +566 -0
- package/dist/helpers.js.map +1 -0
- package/dist/index.d.ts +56 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +102 -0
- package/dist/index.js.map +1 -0
- package/dist/loader.d.ts +129 -0
- package/dist/loader.d.ts.map +1 -0
- package/dist/loader.js +415 -0
- package/dist/loader.js.map +1 -0
- package/dist/macros.d.ts +64 -0
- package/dist/macros.d.ts.map +1 -0
- package/dist/macros.js +620 -0
- package/dist/macros.js.map +1 -0
- package/dist/types.d.ts +443 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +62 -0
- package/dist/types.js.map +1 -0
- package/package.json +45 -0
- package/src/engine.ts +616 -0
- package/src/helpers.ts +650 -0
- package/src/index.ts +138 -0
- package/src/loader.ts +468 -0
- package/src/macros.ts +635 -0
- package/src/types.ts +380 -0
package/dist/types.d.ts
ADDED
|
@@ -0,0 +1,443 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @wundr/prompt-templates - Type definitions for dynamic prompt templating
|
|
3
|
+
*/
|
|
4
|
+
import { z } from 'zod';
|
|
5
|
+
/**
|
|
6
|
+
* JSON-compatible primitive types
|
|
7
|
+
*/
|
|
8
|
+
export type JsonPrimitive = string | number | boolean | null;
|
|
9
|
+
/**
|
|
10
|
+
* JSON-compatible value types
|
|
11
|
+
*/
|
|
12
|
+
export type JsonValue = JsonPrimitive | JsonObject | JsonArray;
|
|
13
|
+
/**
|
|
14
|
+
* JSON-compatible object type
|
|
15
|
+
*/
|
|
16
|
+
export interface JsonObject {
|
|
17
|
+
readonly [key: string]: JsonValue;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* JSON-compatible array type
|
|
21
|
+
*/
|
|
22
|
+
export type JsonArray = ReadonlyArray<JsonValue>;
|
|
23
|
+
/**
|
|
24
|
+
* Context data passed to templates for rendering
|
|
25
|
+
*/
|
|
26
|
+
export interface TemplateContext {
|
|
27
|
+
/** Variables available in the template */
|
|
28
|
+
readonly variables: Record<string, unknown>;
|
|
29
|
+
/** System-level context (e.g., current date, user info) */
|
|
30
|
+
readonly system?: SystemContext;
|
|
31
|
+
/** Memory/history context for conversation-aware templates */
|
|
32
|
+
readonly memory?: MemoryContext;
|
|
33
|
+
/** Tools/functions available to the AI */
|
|
34
|
+
readonly tools?: ToolDefinition[];
|
|
35
|
+
/** Additional metadata */
|
|
36
|
+
readonly metadata?: Record<string, unknown>;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* System-level context available to all templates
|
|
40
|
+
*/
|
|
41
|
+
export interface SystemContext {
|
|
42
|
+
/** Current timestamp */
|
|
43
|
+
readonly timestamp?: Date;
|
|
44
|
+
/** User identifier */
|
|
45
|
+
readonly userId?: string;
|
|
46
|
+
/** Session identifier */
|
|
47
|
+
readonly sessionId?: string;
|
|
48
|
+
/** Environment (development, production, test) */
|
|
49
|
+
readonly environment?: 'development' | 'production' | 'test';
|
|
50
|
+
/** Model being used */
|
|
51
|
+
readonly model?: string;
|
|
52
|
+
/** Custom system values */
|
|
53
|
+
readonly [key: string]: unknown;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Memory context for conversation history
|
|
57
|
+
*/
|
|
58
|
+
export interface MemoryContext {
|
|
59
|
+
/** Previous messages in the conversation */
|
|
60
|
+
readonly messages?: ConversationMessage[];
|
|
61
|
+
/** Key facts/context to remember */
|
|
62
|
+
readonly facts?: string[];
|
|
63
|
+
/** Short-term working memory */
|
|
64
|
+
readonly shortTerm?: Record<string, unknown>;
|
|
65
|
+
/** Long-term persistent memory */
|
|
66
|
+
readonly longTerm?: Record<string, unknown>;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Conversation message structure
|
|
70
|
+
*/
|
|
71
|
+
export interface ConversationMessage {
|
|
72
|
+
/** Role of the message sender */
|
|
73
|
+
readonly role: 'system' | 'user' | 'assistant' | 'tool';
|
|
74
|
+
/** Message content */
|
|
75
|
+
readonly content: string;
|
|
76
|
+
/** Optional message name */
|
|
77
|
+
readonly name?: string;
|
|
78
|
+
/** Timestamp when message was sent */
|
|
79
|
+
readonly timestamp?: Date;
|
|
80
|
+
/** Additional message metadata */
|
|
81
|
+
readonly metadata?: Record<string, unknown>;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Tool/function definition for AI prompts
|
|
85
|
+
*/
|
|
86
|
+
export interface ToolDefinition {
|
|
87
|
+
/** Tool name */
|
|
88
|
+
readonly name: string;
|
|
89
|
+
/** Tool description */
|
|
90
|
+
readonly description: string;
|
|
91
|
+
/** Input parameters schema */
|
|
92
|
+
readonly parameters?: ToolParameters;
|
|
93
|
+
/** Whether the tool returns data */
|
|
94
|
+
readonly returnsData?: boolean;
|
|
95
|
+
/** Example usage */
|
|
96
|
+
readonly examples?: string[];
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* Tool parameters schema (JSON Schema-like)
|
|
100
|
+
*/
|
|
101
|
+
export interface ToolParameters {
|
|
102
|
+
/** Parameter type */
|
|
103
|
+
readonly type: 'object' | 'array' | 'string' | 'number' | 'boolean';
|
|
104
|
+
/** Object properties */
|
|
105
|
+
readonly properties?: Record<string, ToolParameterProperty>;
|
|
106
|
+
/** Required property names */
|
|
107
|
+
readonly required?: string[];
|
|
108
|
+
/** Additional properties allowed */
|
|
109
|
+
readonly additionalProperties?: boolean;
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* Individual tool parameter property
|
|
113
|
+
*/
|
|
114
|
+
export interface ToolParameterProperty {
|
|
115
|
+
/** Property type */
|
|
116
|
+
readonly type: 'string' | 'number' | 'boolean' | 'array' | 'object';
|
|
117
|
+
/** Property description */
|
|
118
|
+
readonly description?: string;
|
|
119
|
+
/** Enum values for constrained types */
|
|
120
|
+
readonly enum?: readonly (string | number)[];
|
|
121
|
+
/** Default value */
|
|
122
|
+
readonly default?: unknown;
|
|
123
|
+
/** Array item schema */
|
|
124
|
+
readonly items?: ToolParameterProperty;
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* Prompt template configuration
|
|
128
|
+
*/
|
|
129
|
+
export interface PromptTemplateConfig {
|
|
130
|
+
/** Unique template identifier */
|
|
131
|
+
readonly id: string;
|
|
132
|
+
/** Template name for display */
|
|
133
|
+
readonly name: string;
|
|
134
|
+
/** Template description */
|
|
135
|
+
readonly description?: string;
|
|
136
|
+
/** Template version */
|
|
137
|
+
readonly version: string;
|
|
138
|
+
/** The template content (Handlebars format) */
|
|
139
|
+
readonly template: string;
|
|
140
|
+
/** Default context values */
|
|
141
|
+
readonly defaults?: Partial<TemplateContext>;
|
|
142
|
+
/** Required variables that must be provided */
|
|
143
|
+
readonly requiredVariables?: string[];
|
|
144
|
+
/** Template tags for categorization */
|
|
145
|
+
readonly tags?: string[];
|
|
146
|
+
/** Template author */
|
|
147
|
+
readonly author?: string;
|
|
148
|
+
/** Creation timestamp */
|
|
149
|
+
readonly createdAt?: Date;
|
|
150
|
+
/** Last update timestamp */
|
|
151
|
+
readonly updatedAt?: Date;
|
|
152
|
+
}
|
|
153
|
+
/**
|
|
154
|
+
* Macro definition for reusable template components
|
|
155
|
+
*/
|
|
156
|
+
export interface MacroDefinition {
|
|
157
|
+
/** Macro name */
|
|
158
|
+
readonly name: string;
|
|
159
|
+
/** Macro description */
|
|
160
|
+
readonly description?: string;
|
|
161
|
+
/** Macro template content */
|
|
162
|
+
readonly template: string;
|
|
163
|
+
/** Expected parameters */
|
|
164
|
+
readonly parameters?: MacroParameter[];
|
|
165
|
+
/** Example usage */
|
|
166
|
+
readonly example?: string;
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* Macro parameter definition
|
|
170
|
+
*/
|
|
171
|
+
export interface MacroParameter {
|
|
172
|
+
/** Parameter name */
|
|
173
|
+
readonly name: string;
|
|
174
|
+
/** Parameter description */
|
|
175
|
+
readonly description?: string;
|
|
176
|
+
/** Parameter type */
|
|
177
|
+
readonly type?: 'string' | 'number' | 'boolean' | 'array' | 'object';
|
|
178
|
+
/** Whether the parameter is required */
|
|
179
|
+
readonly required?: boolean;
|
|
180
|
+
/** Default value */
|
|
181
|
+
readonly default?: unknown;
|
|
182
|
+
}
|
|
183
|
+
/**
|
|
184
|
+
* Helper function definition
|
|
185
|
+
*/
|
|
186
|
+
export interface HelperDefinition {
|
|
187
|
+
/** Helper name */
|
|
188
|
+
readonly name: string;
|
|
189
|
+
/** Helper description */
|
|
190
|
+
readonly description?: string;
|
|
191
|
+
/** The helper function implementation */
|
|
192
|
+
readonly fn: HelperFunction;
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* Helper function signature (Handlebars-compatible)
|
|
196
|
+
*/
|
|
197
|
+
export type HelperFunction = (...args: unknown[]) => string | SafeString | undefined;
|
|
198
|
+
/**
|
|
199
|
+
* Handlebars SafeString type for HTML-safe output
|
|
200
|
+
*/
|
|
201
|
+
export interface SafeString {
|
|
202
|
+
readonly toHTML: () => string;
|
|
203
|
+
readonly toString: () => string;
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
* Template render options
|
|
207
|
+
*/
|
|
208
|
+
export interface RenderOptions {
|
|
209
|
+
/** Strict mode - throw on undefined variables */
|
|
210
|
+
readonly strict?: boolean;
|
|
211
|
+
/** Custom delimiters for template parsing */
|
|
212
|
+
readonly delimiters?: [string, string];
|
|
213
|
+
/** Enable HTML escaping (default: false for prompts) */
|
|
214
|
+
readonly escapeHtml?: boolean;
|
|
215
|
+
/** Maximum template depth for nested templates */
|
|
216
|
+
readonly maxDepth?: number;
|
|
217
|
+
/** Timeout for template rendering (ms) */
|
|
218
|
+
readonly timeout?: number;
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* Template render result
|
|
222
|
+
*/
|
|
223
|
+
export interface RenderResult {
|
|
224
|
+
/** Whether rendering was successful */
|
|
225
|
+
readonly success: boolean;
|
|
226
|
+
/** Rendered output (if successful) */
|
|
227
|
+
readonly output?: string;
|
|
228
|
+
/** Error information (if failed) */
|
|
229
|
+
readonly error?: TemplateError;
|
|
230
|
+
/** Rendering metadata */
|
|
231
|
+
readonly metadata?: RenderMetadata;
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* Template error information
|
|
235
|
+
*/
|
|
236
|
+
export interface TemplateError {
|
|
237
|
+
/** Error code */
|
|
238
|
+
readonly code: string;
|
|
239
|
+
/** Error message */
|
|
240
|
+
readonly message: string;
|
|
241
|
+
/** Line number where error occurred */
|
|
242
|
+
readonly line?: number;
|
|
243
|
+
/** Column number where error occurred */
|
|
244
|
+
readonly column?: number;
|
|
245
|
+
/** Template ID that caused the error */
|
|
246
|
+
readonly templateId?: string;
|
|
247
|
+
/** Original error stack */
|
|
248
|
+
readonly stack?: string;
|
|
249
|
+
}
|
|
250
|
+
/**
|
|
251
|
+
* Metadata about the render operation
|
|
252
|
+
*/
|
|
253
|
+
export interface RenderMetadata {
|
|
254
|
+
/** Time taken to render (ms) */
|
|
255
|
+
readonly renderTime: number;
|
|
256
|
+
/** Template ID used */
|
|
257
|
+
readonly templateId?: string;
|
|
258
|
+
/** Variables that were used */
|
|
259
|
+
readonly usedVariables?: string[];
|
|
260
|
+
/** Macros that were invoked */
|
|
261
|
+
readonly usedMacros?: string[];
|
|
262
|
+
/** Helpers that were invoked */
|
|
263
|
+
readonly usedHelpers?: string[];
|
|
264
|
+
}
|
|
265
|
+
/**
|
|
266
|
+
* Template loader options
|
|
267
|
+
*/
|
|
268
|
+
export interface LoaderOptions {
|
|
269
|
+
/** Base directory for template files */
|
|
270
|
+
readonly baseDir?: string;
|
|
271
|
+
/** File extension for template files */
|
|
272
|
+
readonly extension?: string;
|
|
273
|
+
/** Enable template caching */
|
|
274
|
+
readonly cache?: boolean;
|
|
275
|
+
/** Watch for file changes */
|
|
276
|
+
readonly watch?: boolean;
|
|
277
|
+
}
|
|
278
|
+
/**
|
|
279
|
+
* Template engine events
|
|
280
|
+
*/
|
|
281
|
+
export interface EngineEvents {
|
|
282
|
+
readonly 'template:loaded': {
|
|
283
|
+
templateId: string;
|
|
284
|
+
};
|
|
285
|
+
readonly 'template:rendered': {
|
|
286
|
+
templateId: string;
|
|
287
|
+
renderTime: number;
|
|
288
|
+
};
|
|
289
|
+
readonly 'template:error': {
|
|
290
|
+
templateId: string;
|
|
291
|
+
error: TemplateError;
|
|
292
|
+
};
|
|
293
|
+
readonly 'macro:registered': {
|
|
294
|
+
name: string;
|
|
295
|
+
};
|
|
296
|
+
readonly 'helper:registered': {
|
|
297
|
+
name: string;
|
|
298
|
+
};
|
|
299
|
+
}
|
|
300
|
+
/**
|
|
301
|
+
* Template engine event handler
|
|
302
|
+
*/
|
|
303
|
+
export type EngineEventHandler<K extends keyof EngineEvents> = (event: EngineEvents[K]) => void;
|
|
304
|
+
/**
|
|
305
|
+
* Zod schema for PromptTemplateConfig
|
|
306
|
+
*/
|
|
307
|
+
export declare const PromptTemplateConfigSchema: z.ZodObject<{
|
|
308
|
+
id: z.ZodString;
|
|
309
|
+
name: z.ZodString;
|
|
310
|
+
description: z.ZodOptional<z.ZodString>;
|
|
311
|
+
version: z.ZodString;
|
|
312
|
+
template: z.ZodString;
|
|
313
|
+
defaults: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
314
|
+
requiredVariables: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
315
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
316
|
+
author: z.ZodOptional<z.ZodString>;
|
|
317
|
+
createdAt: z.ZodOptional<z.ZodDate>;
|
|
318
|
+
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
319
|
+
}, "strip", z.ZodTypeAny, {
|
|
320
|
+
id: string;
|
|
321
|
+
name: string;
|
|
322
|
+
version: string;
|
|
323
|
+
template: string;
|
|
324
|
+
description?: string | undefined;
|
|
325
|
+
defaults?: Record<string, unknown> | undefined;
|
|
326
|
+
requiredVariables?: string[] | undefined;
|
|
327
|
+
tags?: string[] | undefined;
|
|
328
|
+
author?: string | undefined;
|
|
329
|
+
createdAt?: Date | undefined;
|
|
330
|
+
updatedAt?: Date | undefined;
|
|
331
|
+
}, {
|
|
332
|
+
id: string;
|
|
333
|
+
name: string;
|
|
334
|
+
version: string;
|
|
335
|
+
template: string;
|
|
336
|
+
description?: string | undefined;
|
|
337
|
+
defaults?: Record<string, unknown> | undefined;
|
|
338
|
+
requiredVariables?: string[] | undefined;
|
|
339
|
+
tags?: string[] | undefined;
|
|
340
|
+
author?: string | undefined;
|
|
341
|
+
createdAt?: Date | undefined;
|
|
342
|
+
updatedAt?: Date | undefined;
|
|
343
|
+
}>;
|
|
344
|
+
/**
|
|
345
|
+
* Zod schema for ToolDefinition
|
|
346
|
+
*/
|
|
347
|
+
export declare const ToolDefinitionSchema: z.ZodObject<{
|
|
348
|
+
name: z.ZodString;
|
|
349
|
+
description: z.ZodString;
|
|
350
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
351
|
+
type: z.ZodEnum<["object", "array", "string", "number", "boolean"]>;
|
|
352
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
353
|
+
required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
354
|
+
additionalProperties: z.ZodOptional<z.ZodBoolean>;
|
|
355
|
+
}, "strip", z.ZodTypeAny, {
|
|
356
|
+
type: "string" | "number" | "boolean" | "object" | "array";
|
|
357
|
+
properties?: Record<string, unknown> | undefined;
|
|
358
|
+
required?: string[] | undefined;
|
|
359
|
+
additionalProperties?: boolean | undefined;
|
|
360
|
+
}, {
|
|
361
|
+
type: "string" | "number" | "boolean" | "object" | "array";
|
|
362
|
+
properties?: Record<string, unknown> | undefined;
|
|
363
|
+
required?: string[] | undefined;
|
|
364
|
+
additionalProperties?: boolean | undefined;
|
|
365
|
+
}>>;
|
|
366
|
+
returnsData: z.ZodOptional<z.ZodBoolean>;
|
|
367
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
368
|
+
}, "strip", z.ZodTypeAny, {
|
|
369
|
+
name: string;
|
|
370
|
+
description: string;
|
|
371
|
+
parameters?: {
|
|
372
|
+
type: "string" | "number" | "boolean" | "object" | "array";
|
|
373
|
+
properties?: Record<string, unknown> | undefined;
|
|
374
|
+
required?: string[] | undefined;
|
|
375
|
+
additionalProperties?: boolean | undefined;
|
|
376
|
+
} | undefined;
|
|
377
|
+
returnsData?: boolean | undefined;
|
|
378
|
+
examples?: string[] | undefined;
|
|
379
|
+
}, {
|
|
380
|
+
name: string;
|
|
381
|
+
description: string;
|
|
382
|
+
parameters?: {
|
|
383
|
+
type: "string" | "number" | "boolean" | "object" | "array";
|
|
384
|
+
properties?: Record<string, unknown> | undefined;
|
|
385
|
+
required?: string[] | undefined;
|
|
386
|
+
additionalProperties?: boolean | undefined;
|
|
387
|
+
} | undefined;
|
|
388
|
+
returnsData?: boolean | undefined;
|
|
389
|
+
examples?: string[] | undefined;
|
|
390
|
+
}>;
|
|
391
|
+
/**
|
|
392
|
+
* Zod schema for MacroDefinition
|
|
393
|
+
*/
|
|
394
|
+
export declare const MacroDefinitionSchema: z.ZodObject<{
|
|
395
|
+
name: z.ZodString;
|
|
396
|
+
description: z.ZodOptional<z.ZodString>;
|
|
397
|
+
template: z.ZodString;
|
|
398
|
+
parameters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
399
|
+
name: z.ZodString;
|
|
400
|
+
description: z.ZodOptional<z.ZodString>;
|
|
401
|
+
type: z.ZodOptional<z.ZodEnum<["string", "number", "boolean", "array", "object"]>>;
|
|
402
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
403
|
+
default: z.ZodOptional<z.ZodUnknown>;
|
|
404
|
+
}, "strip", z.ZodTypeAny, {
|
|
405
|
+
name: string;
|
|
406
|
+
description?: string | undefined;
|
|
407
|
+
type?: "string" | "number" | "boolean" | "object" | "array" | undefined;
|
|
408
|
+
required?: boolean | undefined;
|
|
409
|
+
default?: unknown;
|
|
410
|
+
}, {
|
|
411
|
+
name: string;
|
|
412
|
+
description?: string | undefined;
|
|
413
|
+
type?: "string" | "number" | "boolean" | "object" | "array" | undefined;
|
|
414
|
+
required?: boolean | undefined;
|
|
415
|
+
default?: unknown;
|
|
416
|
+
}>, "many">>;
|
|
417
|
+
example: z.ZodOptional<z.ZodString>;
|
|
418
|
+
}, "strip", z.ZodTypeAny, {
|
|
419
|
+
name: string;
|
|
420
|
+
template: string;
|
|
421
|
+
description?: string | undefined;
|
|
422
|
+
parameters?: {
|
|
423
|
+
name: string;
|
|
424
|
+
description?: string | undefined;
|
|
425
|
+
type?: "string" | "number" | "boolean" | "object" | "array" | undefined;
|
|
426
|
+
required?: boolean | undefined;
|
|
427
|
+
default?: unknown;
|
|
428
|
+
}[] | undefined;
|
|
429
|
+
example?: string | undefined;
|
|
430
|
+
}, {
|
|
431
|
+
name: string;
|
|
432
|
+
template: string;
|
|
433
|
+
description?: string | undefined;
|
|
434
|
+
parameters?: {
|
|
435
|
+
name: string;
|
|
436
|
+
description?: string | undefined;
|
|
437
|
+
type?: "string" | "number" | "boolean" | "object" | "array" | undefined;
|
|
438
|
+
required?: boolean | undefined;
|
|
439
|
+
default?: unknown;
|
|
440
|
+
}[] | undefined;
|
|
441
|
+
example?: string | undefined;
|
|
442
|
+
}>;
|
|
443
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/dist/types.js
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* @wundr/prompt-templates - Type definitions for dynamic prompt templating
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.MacroDefinitionSchema = exports.ToolDefinitionSchema = exports.PromptTemplateConfigSchema = void 0;
|
|
7
|
+
const zod_1 = require("zod");
|
|
8
|
+
// Zod schemas for validation
|
|
9
|
+
/**
|
|
10
|
+
* Zod schema for PromptTemplateConfig
|
|
11
|
+
*/
|
|
12
|
+
exports.PromptTemplateConfigSchema = zod_1.z.object({
|
|
13
|
+
id: zod_1.z.string().min(1),
|
|
14
|
+
name: zod_1.z.string().min(1),
|
|
15
|
+
description: zod_1.z.string().optional(),
|
|
16
|
+
version: zod_1.z.string().regex(/^\d+\.\d+\.\d+$/),
|
|
17
|
+
template: zod_1.z.string().min(1),
|
|
18
|
+
defaults: zod_1.z.record(zod_1.z.unknown()).optional(),
|
|
19
|
+
requiredVariables: zod_1.z.array(zod_1.z.string()).optional(),
|
|
20
|
+
tags: zod_1.z.array(zod_1.z.string()).optional(),
|
|
21
|
+
author: zod_1.z.string().optional(),
|
|
22
|
+
createdAt: zod_1.z.date().optional(),
|
|
23
|
+
updatedAt: zod_1.z.date().optional(),
|
|
24
|
+
});
|
|
25
|
+
/**
|
|
26
|
+
* Zod schema for ToolDefinition
|
|
27
|
+
*/
|
|
28
|
+
exports.ToolDefinitionSchema = zod_1.z.object({
|
|
29
|
+
name: zod_1.z.string().min(1),
|
|
30
|
+
description: zod_1.z.string().min(1),
|
|
31
|
+
parameters: zod_1.z
|
|
32
|
+
.object({
|
|
33
|
+
type: zod_1.z.enum(['object', 'array', 'string', 'number', 'boolean']),
|
|
34
|
+
properties: zod_1.z.record(zod_1.z.unknown()).optional(),
|
|
35
|
+
required: zod_1.z.array(zod_1.z.string()).optional(),
|
|
36
|
+
additionalProperties: zod_1.z.boolean().optional(),
|
|
37
|
+
})
|
|
38
|
+
.optional(),
|
|
39
|
+
returnsData: zod_1.z.boolean().optional(),
|
|
40
|
+
examples: zod_1.z.array(zod_1.z.string()).optional(),
|
|
41
|
+
});
|
|
42
|
+
/**
|
|
43
|
+
* Zod schema for MacroDefinition
|
|
44
|
+
*/
|
|
45
|
+
exports.MacroDefinitionSchema = zod_1.z.object({
|
|
46
|
+
name: zod_1.z.string().min(1),
|
|
47
|
+
description: zod_1.z.string().optional(),
|
|
48
|
+
template: zod_1.z.string().min(1),
|
|
49
|
+
parameters: zod_1.z
|
|
50
|
+
.array(zod_1.z.object({
|
|
51
|
+
name: zod_1.z.string().min(1),
|
|
52
|
+
description: zod_1.z.string().optional(),
|
|
53
|
+
type: zod_1.z
|
|
54
|
+
.enum(['string', 'number', 'boolean', 'array', 'object'])
|
|
55
|
+
.optional(),
|
|
56
|
+
required: zod_1.z.boolean().optional(),
|
|
57
|
+
default: zod_1.z.unknown().optional(),
|
|
58
|
+
}))
|
|
59
|
+
.optional(),
|
|
60
|
+
example: zod_1.z.string().optional(),
|
|
61
|
+
});
|
|
62
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@wundr.io/prompt-templates",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "Jinja2-style dynamic prompt templating using Handlebars for the Wundr platform",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": ["dist", "src"],
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "tsc",
|
|
10
|
+
"build:watch": "tsc --watch",
|
|
11
|
+
"clean": "rm -rf dist",
|
|
12
|
+
"dev": "tsc --watch",
|
|
13
|
+
"test": "jest",
|
|
14
|
+
"test:watch": "jest --watch",
|
|
15
|
+
"test:coverage": "jest --coverage",
|
|
16
|
+
"lint": "eslint src/**/*.ts",
|
|
17
|
+
"format": "prettier --write src/**/*.ts",
|
|
18
|
+
"format:check": "prettier --check src/**/*.ts",
|
|
19
|
+
"typecheck": "tsc --noEmit"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"handlebars": "^4.7.8",
|
|
23
|
+
"zod": "^3.25.76"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@types/node": "^20.9.0",
|
|
27
|
+
"jest": "^29.7.0",
|
|
28
|
+
"ts-jest": "^29.4.1",
|
|
29
|
+
"typescript": "^5.2.2",
|
|
30
|
+
"eslint": "^8.57.1",
|
|
31
|
+
"prettier": "^3.3.3"
|
|
32
|
+
},
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
},
|
|
36
|
+
"keywords": [
|
|
37
|
+
"wundr",
|
|
38
|
+
"prompt",
|
|
39
|
+
"templates",
|
|
40
|
+
"handlebars",
|
|
41
|
+
"jinja2",
|
|
42
|
+
"ai",
|
|
43
|
+
"llm"
|
|
44
|
+
]
|
|
45
|
+
}
|