@dxos/blueprints 0.8.4-main.7ace549 → 0.8.4-main.937b3ca
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/lib/browser/index.mjs +47 -11
- package/dist/lib/browser/index.mjs.map +3 -3
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/node-esm/index.mjs +47 -11
- package/dist/lib/node-esm/index.mjs.map +3 -3
- package/dist/lib/node-esm/meta.json +1 -1
- package/dist/types/src/blueprint/blueprint.d.ts +27 -40
- package/dist/types/src/blueprint/blueprint.d.ts.map +1 -1
- package/dist/types/src/blueprint/registry.d.ts +1 -0
- package/dist/types/src/blueprint/registry.d.ts.map +1 -1
- package/dist/types/src/prompt/prompt.d.ts +28 -53
- package/dist/types/src/prompt/prompt.d.ts.map +1 -1
- package/dist/types/src/template/prompt.d.ts +5 -0
- package/dist/types/src/template/prompt.d.ts.map +1 -1
- package/dist/types/src/template/template.d.ts +9 -1
- package/dist/types/src/template/template.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +15 -11
- package/src/blueprint/blueprint.ts +9 -6
- package/src/blueprint/registry.ts +4 -0
- package/src/prompt/prompt.ts +3 -5
- package/src/template/prompt.ts +40 -0
- package/src/template/template.ts +10 -7
|
@@ -25,17 +25,23 @@ __export(template_exports, {
|
|
|
25
25
|
InputKind: () => InputKind,
|
|
26
26
|
Template: () => Template,
|
|
27
27
|
make: () => make,
|
|
28
|
-
process: () => process
|
|
28
|
+
process: () => process,
|
|
29
|
+
processTemplate: () => processTemplate
|
|
29
30
|
});
|
|
30
31
|
|
|
31
32
|
// src/template/prompt.ts
|
|
33
|
+
import * as Effect from "effect/Effect";
|
|
34
|
+
import * as Record from "effect/Record";
|
|
32
35
|
import handlebars from "handlebars";
|
|
36
|
+
import { Database } from "@dxos/echo";
|
|
37
|
+
import { FunctionInvocationService } from "@dxos/functions";
|
|
33
38
|
import { invariant } from "@dxos/invariant";
|
|
39
|
+
import { log } from "@dxos/log";
|
|
34
40
|
var __dxlog_file = "/__w/dxos/dxos/packages/core/blueprints/src/template/prompt.ts";
|
|
35
41
|
var process = (source, variables = {}) => {
|
|
36
42
|
invariant(typeof source === "string", void 0, {
|
|
37
43
|
F: __dxlog_file,
|
|
38
|
-
L:
|
|
44
|
+
L: 26,
|
|
39
45
|
S: void 0,
|
|
40
46
|
A: [
|
|
41
47
|
"typeof source === 'string'",
|
|
@@ -48,17 +54,45 @@ var process = (source, variables = {}) => {
|
|
|
48
54
|
const output = template(variables);
|
|
49
55
|
return output.trim().replace(/(\n\s*){3,}/g, "\n\n");
|
|
50
56
|
};
|
|
57
|
+
var processTemplate = (template) => Effect.gen(function* () {
|
|
58
|
+
const functionInvoker = yield* FunctionInvocationService;
|
|
59
|
+
const variables = yield* Effect.forEach(template.inputs ?? [], (input) => Effect.gen(function* () {
|
|
60
|
+
if (input.kind === "function") {
|
|
61
|
+
const fn = yield* functionInvoker.resolveFunction(input.function);
|
|
62
|
+
const result = yield* functionInvoker.invokeFunction(fn, {});
|
|
63
|
+
return [
|
|
64
|
+
input.name,
|
|
65
|
+
result
|
|
66
|
+
];
|
|
67
|
+
} else {
|
|
68
|
+
return yield* Effect.dieMessage(`Unsupported input kind: ${input.kind}`);
|
|
69
|
+
}
|
|
70
|
+
})).pipe(Effect.map(Record.fromEntries));
|
|
71
|
+
log("processTemplate", {
|
|
72
|
+
variables
|
|
73
|
+
}, {
|
|
74
|
+
F: __dxlog_file,
|
|
75
|
+
L: 56,
|
|
76
|
+
S: this,
|
|
77
|
+
C: (f, a) => f(...a)
|
|
78
|
+
});
|
|
79
|
+
return process((yield* Database.Service.load(template.source)).content, variables);
|
|
80
|
+
});
|
|
51
81
|
|
|
52
82
|
// src/template/template.ts
|
|
53
83
|
import * as Schema from "effect/Schema";
|
|
54
84
|
import { Ref, Type } from "@dxos/echo";
|
|
55
85
|
import { Text } from "@dxos/schema";
|
|
56
86
|
var InputKind = Schema.Literal("value", "pass-through", "retriever", "function", "query", "resolver", "context", "schema");
|
|
57
|
-
var Input = Schema.
|
|
87
|
+
var Input = Schema.Struct({
|
|
58
88
|
name: Schema.String,
|
|
59
89
|
kind: Schema.optional(InputKind),
|
|
60
|
-
default: Schema.optional(Schema.Any)
|
|
61
|
-
|
|
90
|
+
default: Schema.optional(Schema.Any),
|
|
91
|
+
/**
|
|
92
|
+
* Function to call if the kind is 'function'.
|
|
93
|
+
*/
|
|
94
|
+
function: Schema.optional(Schema.String)
|
|
95
|
+
}).pipe(Schema.mutable);
|
|
62
96
|
var Template = Schema.Struct({
|
|
63
97
|
source: Type.Ref(Text.Text).annotations({
|
|
64
98
|
description: "Handlebars template source"
|
|
@@ -105,7 +139,7 @@ var Blueprint = Schema2.Struct({
|
|
|
105
139
|
tools: Schema2.Array(ToolId).annotations({
|
|
106
140
|
description: "Array of tools that the AI assistant can use when this blueprint is active"
|
|
107
141
|
})
|
|
108
|
-
}).pipe(Type2.
|
|
142
|
+
}).pipe(Type2.object({
|
|
109
143
|
// TODO(burdon): Is this a DXN? Need to create a Format type for these IDs.
|
|
110
144
|
typename: "dxos.org/type/Blueprint",
|
|
111
145
|
version: "0.1.0"
|
|
@@ -123,7 +157,7 @@ var toolDefinitions = ({ tools = [], functions = [] }) => [
|
|
|
123
157
|
];
|
|
124
158
|
|
|
125
159
|
// src/blueprint/registry.ts
|
|
126
|
-
import { log } from "@dxos/log";
|
|
160
|
+
import { log as log2 } from "@dxos/log";
|
|
127
161
|
var __dxlog_file2 = "/__w/dxos/dxos/packages/core/blueprints/src/blueprint/registry.ts";
|
|
128
162
|
var Registry = class {
|
|
129
163
|
_blueprints = [];
|
|
@@ -131,7 +165,7 @@ var Registry = class {
|
|
|
131
165
|
const seen = /* @__PURE__ */ new Set();
|
|
132
166
|
blueprints.forEach((blueprint) => {
|
|
133
167
|
if (seen.has(blueprint.key)) {
|
|
134
|
-
|
|
168
|
+
log2.warn("duplicate blueprint", {
|
|
135
169
|
key: blueprint.key
|
|
136
170
|
}, {
|
|
137
171
|
F: __dxlog_file2,
|
|
@@ -146,6 +180,9 @@ var Registry = class {
|
|
|
146
180
|
});
|
|
147
181
|
this._blueprints.sort(({ name: a }, { name: b }) => a.localeCompare(b));
|
|
148
182
|
}
|
|
183
|
+
get blueprints() {
|
|
184
|
+
return this._blueprints;
|
|
185
|
+
}
|
|
149
186
|
getByKey(key) {
|
|
150
187
|
return this._blueprints.find((blueprint) => blueprint.key === key);
|
|
151
188
|
}
|
|
@@ -164,7 +201,7 @@ __export(prompt_exports, {
|
|
|
164
201
|
// src/prompt/prompt.ts
|
|
165
202
|
import * as Schema3 from "effect/Schema";
|
|
166
203
|
import { Annotation as Annotation2, JsonSchema, Obj as Obj2, Type as Type3 } from "@dxos/echo";
|
|
167
|
-
var Prompt
|
|
204
|
+
var Prompt = Schema3.Struct({
|
|
168
205
|
/**
|
|
169
206
|
* Name of the prompt.
|
|
170
207
|
*/
|
|
@@ -195,11 +232,10 @@ var Prompt$ = Schema3.Struct({
|
|
|
195
232
|
* Additional context that the prompt may utilize.
|
|
196
233
|
*/
|
|
197
234
|
context: Schema3.Array(Schema3.Any).pipe(Annotation2.FormInputAnnotation.set(false))
|
|
198
|
-
}).pipe(Type3.
|
|
235
|
+
}).pipe(Type3.object({
|
|
199
236
|
typename: "dxos.org/type/Prompt",
|
|
200
237
|
version: "0.1.0"
|
|
201
238
|
}));
|
|
202
|
-
var Prompt = Prompt$;
|
|
203
239
|
var make3 = (params) => Obj2.make(Prompt, {
|
|
204
240
|
name: params.name,
|
|
205
241
|
description: params.description,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/blueprint/index.ts", "../../../src/blueprint/blueprint.ts", "../../../src/template/index.ts", "../../../src/template/prompt.ts", "../../../src/template/template.ts", "../../../src/blueprint/registry.ts", "../../../src/prompt/index.ts", "../../../src/prompt/prompt.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nexport * from './blueprint';\nexport * from './registry';\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport * as Schema from 'effect/Schema';\n\nimport { ToolId } from '@dxos/ai';\nimport { Annotation, Obj, Type } from '@dxos/echo';\nimport { type FunctionDefinition } from '@dxos/functions';\n\nimport * as Template from '../template';\n\n/**\n * Blueprint schema defines the structure for AI assistant blueprints.\n * Blueprints contain instructions, tools, and artifacts that guide the AI's behavior.\n * Blueprints may use tools to create and read artifacts, which are managed by the assistant.\n */\nexport const Blueprint = Schema.Struct({\n /**\n * Global registry ID.\n * NOTE: The `key` property refers to the original registry entry.\n */\n // TODO(burdon): Create Format type for DXN-like ids, such as this and schema type.\n key: Schema.String.annotations({\n description: 'Unique registration key for the blueprint',\n }),\n\n /**\n * Human-readable name of the blueprint.\n */\n name: Schema.String.annotations({\n description: 'Human-readable name of the blueprint',\n }),\n\n /**\n * Description of the blueprint's purpose and functionality.\n */\n description: Schema.optional(Schema.String).annotations({\n description: \"Description of the blueprint's purpose and functionality\",\n }),\n\n /**\n * Instructions that guide the AI assistant's behavior and responses.\n * These are system prompts or guidelines that the AI should follow.\n */\n instructions: Template.Template.annotations({\n description: \"Instructions that guide the AI assistant's behavior and responses\",\n }),\n\n /**\n * Array of tools that the AI assistant can use when this blueprint is active.\n */\n tools: Schema.Array(ToolId).annotations({\n description: 'Array of tools that the AI assistant can use when this blueprint is active',\n }),\n}).pipe(\n Type.
|
|
5
|
-
"mappings": ";;;;;;;AAAA;;;;cAAAA;EAAA;;;;ACIA,YAAYC,aAAY;AAExB,SAASC,cAAc;AACvB,SAASC,YAAYC,KAAKC,QAAAA,aAAY;;;ACPtC
|
|
6
|
-
"names": ["make", "Schema", "ToolId", "Annotation", "Obj", "Type", "handlebars", "invariant", "process", "source", "variables", "section", "registerHelper", "String", "template", "compile", "trim", "output", "replace", "Schema", "Ref", "Type", "Text", "InputKind", "Literal", "Input", "
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nexport * from './blueprint';\nexport * from './registry';\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport * as Schema from 'effect/Schema';\n\nimport { ToolId } from '@dxos/ai';\nimport { Annotation, Obj, Type } from '@dxos/echo';\nimport { type FunctionDefinition } from '@dxos/functions';\n\nimport * as Template from '../template';\n\n/**\n * Blueprint schema defines the structure for AI assistant blueprints.\n * Blueprints contain instructions, tools, and artifacts that guide the AI's behavior.\n * Blueprints may use tools to create and read artifacts, which are managed by the assistant.\n */\nexport const Blueprint = Schema.Struct({\n /**\n * Global registry ID.\n * NOTE: The `key` property refers to the original registry entry.\n */\n // TODO(burdon): Create Format type for DXN-like ids, such as this and schema type.\n key: Schema.String.annotations({\n description: 'Unique registration key for the blueprint',\n }),\n\n /**\n * Human-readable name of the blueprint.\n */\n name: Schema.String.annotations({\n description: 'Human-readable name of the blueprint',\n }),\n\n /**\n * Description of the blueprint's purpose and functionality.\n */\n description: Schema.optional(Schema.String).annotations({\n description: \"Description of the blueprint's purpose and functionality\",\n }),\n\n /**\n * Instructions that guide the AI assistant's behavior and responses.\n * These are system prompts or guidelines that the AI should follow.\n */\n instructions: Template.Template.annotations({\n description: \"Instructions that guide the AI assistant's behavior and responses\",\n }),\n\n /**\n * Array of tools that the AI assistant can use when this blueprint is active.\n */\n tools: Schema.Array(ToolId).annotations({\n description: 'Array of tools that the AI assistant can use when this blueprint is active',\n }),\n}).pipe(\n Type.object({\n // TODO(burdon): Is this a DXN? Need to create a Format type for these IDs.\n typename: 'dxos.org/type/Blueprint',\n version: '0.1.0',\n }),\n Annotation.LabelAnnotation.set(['name']),\n);\n\n/**\n * TypeScript type for Blueprint.\n */\nexport interface Blueprint extends Schema.Schema.Type<typeof Blueprint> {}\n\ntype MakeProps = Pick<Blueprint, 'key' | 'name'> & Partial<Blueprint>;\n\n/**\n * Create a new Blueprint.\n */\nexport const make = ({ tools = [], instructions = Template.make(), ...props }: MakeProps) =>\n Obj.make(Blueprint, {\n tools,\n instructions,\n ...props,\n });\n\n/**\n * Util to create tool definitions for a blueprint.\n */\nexport const toolDefinitions = ({\n tools = [],\n functions = [],\n}: {\n tools?: string[];\n functions?: FunctionDefinition[];\n}) => [...functions.map((fn) => ToolId.make(fn.key)), ...tools.map((tool) => ToolId.make(tool))];\n", "//\n// Copyright 2025 DXOS.org\n//\n\nexport * from './prompt';\nexport * from './template';\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport * as Effect from 'effect/Effect';\nimport * as Record from 'effect/Record';\nimport handlebars from 'handlebars';\n\nimport { Database } from '@dxos/echo';\nimport type { ObjectNotFoundError } from '@dxos/echo/Err';\nimport {\n type FunctionDefinition,\n FunctionInvocationService,\n type FunctionNotFoundError,\n type TracingService,\n} from '@dxos/functions';\nimport { invariant } from '@dxos/invariant';\nimport { log } from '@dxos/log';\n\nimport type { Template } from '..';\n\n/**\n * Process Handlebars template.\n */\nexport const process = <Options extends {}>(source: string, variables: Partial<Options> = {}): string => {\n invariant(typeof source === 'string');\n let section = 0;\n handlebars.registerHelper('section', () => String(++section));\n const template = handlebars.compile(source.trim());\n const output = template(variables);\n return output.trim().replace(/(\\n\\s*){3,}/g, '\\n\\n');\n};\n\nexport const processTemplate = (\n template: Template.Template,\n): Effect.Effect<string, ObjectNotFoundError | FunctionNotFoundError, FunctionInvocationService | TracingService> =>\n Effect.gen(function* () {\n const functionInvoker = yield* FunctionInvocationService;\n\n const variables = yield* Effect.forEach(template.inputs ?? [], (input) =>\n Effect.gen(function* () {\n if (input.kind === 'function') {\n const fn = (yield* functionInvoker.resolveFunction(input.function!)) as FunctionDefinition<\n {},\n unknown,\n never\n >;\n const result = yield* functionInvoker.invokeFunction(fn, {});\n return [input.name, result] as const;\n } else {\n return yield* Effect.dieMessage(`Unsupported input kind: ${input.kind}`);\n }\n }),\n ).pipe(Effect.map(Record.fromEntries));\n\n log('processTemplate', { variables });\n\n return process((yield* Database.Service.load(template.source)).content, variables);\n });\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport * as Schema from 'effect/Schema';\n\nimport { Ref, Type } from '@dxos/echo';\nimport { type ObjectId } from '@dxos/keys';\nimport { Text } from '@dxos/schema';\n\n/**\n * Template input kind determines how template variables are resolved.\n */\nexport const InputKind = Schema.Literal(\n 'value', // Literal value.\n 'pass-through',\n 'retriever',\n 'function',\n 'query',\n 'resolver',\n 'context',\n 'schema',\n);\n\nexport type InputKind = Schema.Schema.Type<typeof InputKind>;\n\n/**\n * Template input variable.\n * E.g., {{foo}}\n */\nexport const Input = Schema.Struct({\n name: Schema.String,\n kind: Schema.optional(InputKind),\n default: Schema.optional(Schema.Any),\n\n /**\n * Function to call if the kind is 'function'.\n */\n function: Schema.optional(Schema.String),\n}).pipe(Schema.mutable);\n\nexport type Input = Schema.Schema.Type<typeof Input>;\n\n/**\n * Template type.\n */\nexport const Template = Schema.Struct({\n source: Type.Ref(Text.Text).annotations({ description: 'Handlebars template source' }),\n inputs: Schema.optional(Schema.mutable(Schema.Array(Input))),\n}).pipe(Schema.mutable);\n\nexport interface Template extends Schema.Schema.Type<typeof Template> {}\n\nexport const make = ({\n source,\n inputs = [],\n id,\n}: { source?: string; inputs?: Input[]; id?: ObjectId } = {}): Template => ({\n source: Ref.make(Text.make(source, id)),\n inputs,\n});\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport { log } from '@dxos/log';\n\nimport { type Blueprint } from './blueprint';\n\n/**\n * Blueprint registry.\n */\nexport class Registry {\n private readonly _blueprints: Blueprint[] = [];\n\n constructor(blueprints: Blueprint[]) {\n const seen = new Set<string>();\n blueprints.forEach((blueprint) => {\n if (seen.has(blueprint.key)) {\n log.warn('duplicate blueprint', { key: blueprint.key });\n } else {\n seen.add(blueprint.key);\n this._blueprints.push(blueprint);\n }\n });\n\n this._blueprints.sort(({ name: a }, { name: b }) => a.localeCompare(b));\n }\n\n get blueprints(): Blueprint[] {\n return this._blueprints;\n }\n\n getByKey(key: string): Blueprint | undefined {\n return this._blueprints.find((blueprint) => blueprint.key === key);\n }\n\n query(): Blueprint[] {\n return this._blueprints;\n }\n}\n", "//\n// Copyright 2025 DXOS.org\n//\n\nexport * from './prompt';\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport * as Schema from 'effect/Schema';\n\nimport { Annotation, JsonSchema, Obj, type Ref, Type } from '@dxos/echo';\n\nimport { Blueprint } from '../blueprint';\nimport * as Template from '../template';\n\n/**\n * Executable instructions, which may use Blueprints.\n * May reference additional context.\n */\nexport const Prompt = Schema.Struct({\n /**\n * Name of the prompt.\n */\n name: Schema.optional(Schema.String),\n\n /**\n * Description of the prompt's purpose and functionality.\n * Allows AI agents to execute prompts automatically as tools.\n */\n description: Schema.optional(Schema.String),\n\n /**\n * Input schema of the prompt.\n */\n input: JsonSchema.JsonSchema.pipe(Annotation.FormInputAnnotation.set(false)),\n\n /**\n * Output schema of the prompt.\n */\n output: JsonSchema.JsonSchema.pipe(Annotation.FormInputAnnotation.set(false)),\n\n /**\n * Natural language instructions for the prompt.\n * These should provide concrete course of action for the AI to follow.\n */\n instructions: Template.Template.pipe(Annotation.FormInputAnnotation.set(false)),\n\n /**\n * Blueprints that the prompt may utilize.\n */\n blueprints: Schema.Array(Type.Ref(Blueprint)),\n\n /**\n * Additional context that the prompt may utilize.\n */\n context: Schema.Array(Schema.Any).pipe(Annotation.FormInputAnnotation.set(false)),\n}).pipe(\n Type.object({\n typename: 'dxos.org/type/Prompt',\n version: '0.1.0',\n }),\n);\n\nexport interface Prompt extends Schema.Schema.Type<typeof Prompt> {}\n\nexport const make = (params: {\n name?: string;\n description?: string;\n input?: Schema.Schema.AnyNoContext;\n output?: Schema.Schema.AnyNoContext;\n instructions?: string;\n blueprints?: Ref.Ref<Blueprint>[];\n context?: any[];\n}): Prompt =>\n Obj.make(Prompt, {\n name: params.name,\n description: params.description,\n input: JsonSchema.toJsonSchema(params.input ?? Schema.Void),\n output: JsonSchema.toJsonSchema(params.output ?? Schema.Void),\n instructions: Template.make({ source: params.instructions }),\n blueprints: params.blueprints ?? [],\n context: params.context ?? [],\n });\n"],
|
|
5
|
+
"mappings": ";;;;;;;AAAA;;;;cAAAA;EAAA;;;;ACIA,YAAYC,aAAY;AAExB,SAASC,cAAc;AACvB,SAASC,YAAYC,KAAKC,QAAAA,aAAY;;;ACPtC;;;;;;;;;;;ACIA,YAAYC,YAAY;AACxB,YAAYC,YAAY;AACxB,OAAOC,gBAAgB;AAEvB,SAASC,gBAAgB;AAEzB,SAEEC,iCAGK;AACP,SAASC,iBAAiB;AAC1B,SAASC,WAAW;;AAOb,IAAMC,UAAU,CAAqBC,QAAgBC,YAA8B,CAAC,MAAC;AAC1FJ,YAAU,OAAOG,WAAW,UAAA,QAAA;;;;;;;;;AAC5B,MAAIE,UAAU;AACdR,aAAWS,eAAe,WAAW,MAAMC,OAAO,EAAEF,OAAAA,CAAAA;AACpD,QAAMG,WAAWX,WAAWY,QAAQN,OAAOO,KAAI,CAAA;AAC/C,QAAMC,SAASH,SAASJ,SAAAA;AACxB,SAAOO,OAAOD,KAAI,EAAGE,QAAQ,gBAAgB,MAAA;AAC/C;AAEO,IAAMC,kBAAkB,CAC7BL,aAEOM,WAAI,aAAA;AACT,QAAMC,kBAAkB,OAAOhB;AAE/B,QAAMK,YAAY,OAAcY,eAAQR,SAASS,UAAU,CAAA,GAAI,CAACC,UACvDJ,WAAI,aAAA;AACT,QAAII,MAAMC,SAAS,YAAY;AAC7B,YAAMC,KAAM,OAAOL,gBAAgBM,gBAAgBH,MAAMI,QAAQ;AAKjE,YAAMC,SAAS,OAAOR,gBAAgBS,eAAeJ,IAAI,CAAC,CAAA;AAC1D,aAAO;QAACF,MAAMO;QAAMF;;IACtB,OAAO;AACL,aAAO,OAAcG,kBAAW,2BAA2BR,MAAMC,IAAI,EAAE;IACzE;EACF,CAAA,CAAA,EACAQ,KAAYC,WAAWC,kBAAW,CAAA;AAEpC5B,MAAI,mBAAmB;IAAEG;EAAU,GAAA;;;;;;AAEnC,SAAOF,SAAS,OAAOJ,SAASgC,QAAQC,KAAKvB,SAASL,MAAM,GAAG6B,SAAS5B,SAAAA;AAC1E,CAAA;;;ACtDF,YAAY6B,YAAY;AAExB,SAASC,KAAKC,YAAY;AAE1B,SAASC,YAAY;AAKd,IAAMC,YAAmBC,eAC9B,SACA,gBACA,aACA,YACA,SACA,YACA,WACA,QAAA;AASK,IAAMC,QAAeC,cAAO;EACjCC,MAAaC;EACbC,MAAaC,gBAASP,SAAAA;EACtBQ,SAAgBD,gBAAgBE,UAAG;;;;EAKnCC,UAAiBH,gBAAgBF,aAAM;AACzC,CAAA,EAAGM,KAAYC,cAAO;AAOf,IAAMC,WAAkBV,cAAO;EACpCW,QAAQC,KAAKC,IAAIC,KAAKA,IAAI,EAAEC,YAAY;IAAEC,aAAa;EAA6B,CAAA;EACpFC,QAAeb,gBAAgBK,eAAeS,aAAMnB,KAAAA,CAAAA,CAAAA;AACtD,CAAA,EAAGS,KAAYC,cAAO;AAIf,IAAMU,OAAO,CAAC,EACnBR,QACAM,SAAS,CAAA,GACTG,GAAE,IACsD,CAAC,OAAiB;EAC1ET,QAAQE,IAAIM,KAAKL,KAAKK,KAAKR,QAAQS,EAAAA,CAAAA;EACnCH;AACF;;;AH3CO,IAAMI,YAAmBC,eAAO;;;;;;EAMrCC,KAAYC,eAAOC,YAAY;IAC7BC,aAAa;EACf,CAAA;;;;EAKAC,MAAaH,eAAOC,YAAY;IAC9BC,aAAa;EACf,CAAA;;;;EAKAA,aAAoBE,iBAAgBJ,cAAM,EAAEC,YAAY;IACtDC,aAAa;EACf,CAAA;;;;;EAMAG,cAAuBC,SAASL,YAAY;IAC1CC,aAAa;EACf,CAAA;;;;EAKAK,OAAcC,cAAMC,MAAAA,EAAQR,YAAY;IACtCC,aAAa;EACf,CAAA;AACF,CAAA,EAAGQ,KACDC,MAAKC,OAAO;;EAEVC,UAAU;EACVC,SAAS;AACX,CAAA,GACAC,WAAWC,gBAAgBC,IAAI;EAAC;CAAO,CAAA;AAalC,IAAMC,QAAO,CAAC,EAAEX,QAAQ,CAAA,GAAIF,eAAwBa,KAAI,GAAI,GAAGC,MAAAA,MACpEC,IAAIF,KAAKrB,WAAW;EAClBU;EACAF;EACA,GAAGc;AACL,CAAA;AAKK,IAAME,kBAAkB,CAAC,EAC9Bd,QAAQ,CAAA,GACRe,YAAY,CAAA,EAAE,MAIV;KAAIA,UAAUC,IAAI,CAACC,OAAOf,OAAOS,KAAKM,GAAGzB,GAAG,CAAA;KAAOQ,MAAMgB,IAAI,CAACE,SAAShB,OAAOS,KAAKO,IAAAA,CAAAA;;;;AItFzF,SAASC,OAAAA,YAAW;;AAOb,IAAMC,WAAN,MAAMA;EACMC,cAA2B,CAAA;EAE5C,YAAYC,YAAyB;AACnC,UAAMC,OAAO,oBAAIC,IAAAA;AACjBF,eAAWG,QAAQ,CAACC,cAAAA;AAClB,UAAIH,KAAKI,IAAID,UAAUE,GAAG,GAAG;AAC3BT,QAAAA,KAAIU,KAAK,uBAAuB;UAAED,KAAKF,UAAUE;QAAI,GAAA;;;;;;MACvD,OAAO;AACLL,aAAKO,IAAIJ,UAAUE,GAAG;AACtB,aAAKP,YAAYU,KAAKL,SAAAA;MACxB;IACF,CAAA;AAEA,SAAKL,YAAYW,KAAK,CAAC,EAAEC,MAAMC,EAAC,GAAI,EAAED,MAAME,EAAC,MAAOD,EAAEE,cAAcD,CAAAA,CAAAA;EACtE;EAEA,IAAIb,aAA0B;AAC5B,WAAO,KAAKD;EACd;EAEAgB,SAAST,KAAoC;AAC3C,WAAO,KAAKP,YAAYiB,KAAK,CAACZ,cAAcA,UAAUE,QAAQA,GAAAA;EAChE;EAEAW,QAAqB;AACnB,WAAO,KAAKlB;EACd;AACF;;;ACvCA;;;cAAAmB;;;;ACIA,YAAYC,aAAY;AAExB,SAASC,cAAAA,aAAYC,YAAYC,OAAAA,MAAeC,QAAAA,aAAY;AASrD,IAAMC,SAAgBC,eAAO;;;;EAIlCC,MAAaC,iBAAgBC,cAAM;;;;;EAMnCC,aAAoBF,iBAAgBC,cAAM;;;;EAK1CE,OAAOC,WAAWA,WAAWC,KAAKC,YAAWC,oBAAoBC,IAAI,KAAA,CAAA;;;;EAKrEC,QAAQL,WAAWA,WAAWC,KAAKC,YAAWC,oBAAoBC,IAAI,KAAA,CAAA;;;;;EAMtEE,cAAuBC,SAASN,KAAKC,YAAWC,oBAAoBC,IAAI,KAAA,CAAA;;;;EAKxEI,YAAmBC,cAAMC,MAAKC,IAAIC,SAAAA,CAAAA;;;;EAKlCC,SAAgBJ,cAAaK,WAAG,EAAEb,KAAKC,YAAWC,oBAAoBC,IAAI,KAAA,CAAA;AAC5E,CAAA,EAAGH,KACDS,MAAKK,OAAO;EACVC,UAAU;EACVC,SAAS;AACX,CAAA,CAAA;AAKK,IAAMC,QAAO,CAACC,WASnBC,KAAIF,KAAKzB,QAAQ;EACfE,MAAMwB,OAAOxB;EACbG,aAAaqB,OAAOrB;EACpBC,OAAOC,WAAWqB,aAAaF,OAAOpB,SAAgBuB,YAAI;EAC1DjB,QAAQL,WAAWqB,aAAaF,OAAOd,UAAiBiB,YAAI;EAC5DhB,cAAuBY,KAAK;IAAEK,QAAQJ,OAAOb;EAAa,CAAA;EAC1DE,YAAYW,OAAOX,cAAc,CAAA;EACjCK,SAASM,OAAON,WAAW,CAAA;AAC7B,CAAA;",
|
|
6
|
+
"names": ["make", "Schema", "ToolId", "Annotation", "Obj", "Type", "Effect", "Record", "handlebars", "Database", "FunctionInvocationService", "invariant", "log", "process", "source", "variables", "section", "registerHelper", "String", "template", "compile", "trim", "output", "replace", "processTemplate", "gen", "functionInvoker", "forEach", "inputs", "input", "kind", "fn", "resolveFunction", "function", "result", "invokeFunction", "name", "dieMessage", "pipe", "map", "fromEntries", "Service", "load", "content", "Schema", "Ref", "Type", "Text", "InputKind", "Literal", "Input", "Struct", "name", "String", "kind", "optional", "default", "Any", "function", "pipe", "mutable", "Template", "source", "Type", "Ref", "Text", "annotations", "description", "inputs", "Array", "make", "id", "Blueprint", "Struct", "key", "String", "annotations", "description", "name", "optional", "instructions", "Template", "tools", "Array", "ToolId", "pipe", "Type", "object", "typename", "version", "Annotation", "LabelAnnotation", "set", "make", "props", "Obj", "toolDefinitions", "functions", "map", "fn", "tool", "log", "Registry", "_blueprints", "blueprints", "seen", "Set", "forEach", "blueprint", "has", "key", "warn", "add", "push", "sort", "name", "a", "b", "localeCompare", "getByKey", "find", "query", "make", "Schema", "Annotation", "JsonSchema", "Obj", "Type", "Prompt", "Struct", "name", "optional", "String", "description", "input", "JsonSchema", "pipe", "Annotation", "FormInputAnnotation", "set", "output", "instructions", "Template", "blueprints", "Array", "Type", "Ref", "Blueprint", "context", "Any", "object", "typename", "version", "make", "params", "Obj", "toJsonSchema", "Void", "source"]
|
|
7
7
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/template/prompt.ts":{"bytes":
|
|
1
|
+
{"inputs":{"src/template/prompt.ts":{"bytes":6924,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Record","kind":"import-statement","external":true},{"path":"handlebars","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"src/template/template.ts":{"bytes":4720,"imports":[{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true}],"format":"esm"},"src/template/index.ts":{"bytes":546,"imports":[{"path":"src/template/prompt.ts","kind":"import-statement","original":"./prompt"},{"path":"src/template/template.ts","kind":"import-statement","original":"./template"}],"format":"esm"},"src/blueprint/blueprint.ts":{"bytes":8164,"imports":[{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"src/template/index.ts","kind":"import-statement","original":"../template"}],"format":"esm"},"src/blueprint/registry.ts":{"bytes":3662,"imports":[{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"src/blueprint/index.ts":{"bytes":554,"imports":[{"path":"src/blueprint/blueprint.ts","kind":"import-statement","original":"./blueprint"},{"path":"src/blueprint/registry.ts","kind":"import-statement","original":"./registry"}],"format":"esm"},"src/prompt/prompt.ts":{"bytes":7056,"imports":[{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"src/blueprint/index.ts","kind":"import-statement","original":"../blueprint"},{"path":"src/template/index.ts","kind":"import-statement","original":"../template"}],"format":"esm"},"src/prompt/index.ts":{"bytes":456,"imports":[{"path":"src/prompt/prompt.ts","kind":"import-statement","original":"./prompt"}],"format":"esm"},"src/index.ts":{"bytes":813,"imports":[{"path":"src/blueprint/index.ts","kind":"import-statement","original":"./blueprint"},{"path":"src/template/index.ts","kind":"import-statement","original":"./template"},{"path":"src/prompt/index.ts","kind":"import-statement","original":"./prompt"}],"format":"esm"}},"outputs":{"dist/lib/browser/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":15510},"dist/lib/browser/index.mjs":{"imports":[{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Record","kind":"import-statement","external":true},{"path":"handlebars","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true}],"exports":["Blueprint","Prompt","Template"],"entryPoint":"src/index.ts","inputs":{"src/blueprint/index.ts":{"bytesInOutput":182},"src/blueprint/blueprint.ts":{"bytesInOutput":1842},"src/template/index.ts":{"bytesInOutput":227},"src/template/prompt.ts":{"bytesInOutput":1642},"src/template/template.ts":{"bytesInOutput":819},"src/blueprint/registry.ts":{"bytesInOutput":897},"src/index.ts":{"bytesInOutput":0},"src/prompt/index.ts":{"bytesInOutput":100},"src/prompt/prompt.ts":{"bytesInOutput":1592}},"bytes":7858}}}
|
|
@@ -26,17 +26,23 @@ __export(template_exports, {
|
|
|
26
26
|
InputKind: () => InputKind,
|
|
27
27
|
Template: () => Template,
|
|
28
28
|
make: () => make,
|
|
29
|
-
process: () => process
|
|
29
|
+
process: () => process,
|
|
30
|
+
processTemplate: () => processTemplate
|
|
30
31
|
});
|
|
31
32
|
|
|
32
33
|
// src/template/prompt.ts
|
|
34
|
+
import * as Effect from "effect/Effect";
|
|
35
|
+
import * as Record from "effect/Record";
|
|
33
36
|
import handlebars from "handlebars";
|
|
37
|
+
import { Database } from "@dxos/echo";
|
|
38
|
+
import { FunctionInvocationService } from "@dxos/functions";
|
|
34
39
|
import { invariant } from "@dxos/invariant";
|
|
40
|
+
import { log } from "@dxos/log";
|
|
35
41
|
var __dxlog_file = "/__w/dxos/dxos/packages/core/blueprints/src/template/prompt.ts";
|
|
36
42
|
var process = (source, variables = {}) => {
|
|
37
43
|
invariant(typeof source === "string", void 0, {
|
|
38
44
|
F: __dxlog_file,
|
|
39
|
-
L:
|
|
45
|
+
L: 26,
|
|
40
46
|
S: void 0,
|
|
41
47
|
A: [
|
|
42
48
|
"typeof source === 'string'",
|
|
@@ -49,17 +55,45 @@ var process = (source, variables = {}) => {
|
|
|
49
55
|
const output = template(variables);
|
|
50
56
|
return output.trim().replace(/(\n\s*){3,}/g, "\n\n");
|
|
51
57
|
};
|
|
58
|
+
var processTemplate = (template) => Effect.gen(function* () {
|
|
59
|
+
const functionInvoker = yield* FunctionInvocationService;
|
|
60
|
+
const variables = yield* Effect.forEach(template.inputs ?? [], (input) => Effect.gen(function* () {
|
|
61
|
+
if (input.kind === "function") {
|
|
62
|
+
const fn = yield* functionInvoker.resolveFunction(input.function);
|
|
63
|
+
const result = yield* functionInvoker.invokeFunction(fn, {});
|
|
64
|
+
return [
|
|
65
|
+
input.name,
|
|
66
|
+
result
|
|
67
|
+
];
|
|
68
|
+
} else {
|
|
69
|
+
return yield* Effect.dieMessage(`Unsupported input kind: ${input.kind}`);
|
|
70
|
+
}
|
|
71
|
+
})).pipe(Effect.map(Record.fromEntries));
|
|
72
|
+
log("processTemplate", {
|
|
73
|
+
variables
|
|
74
|
+
}, {
|
|
75
|
+
F: __dxlog_file,
|
|
76
|
+
L: 56,
|
|
77
|
+
S: this,
|
|
78
|
+
C: (f, a) => f(...a)
|
|
79
|
+
});
|
|
80
|
+
return process((yield* Database.Service.load(template.source)).content, variables);
|
|
81
|
+
});
|
|
52
82
|
|
|
53
83
|
// src/template/template.ts
|
|
54
84
|
import * as Schema from "effect/Schema";
|
|
55
85
|
import { Ref, Type } from "@dxos/echo";
|
|
56
86
|
import { Text } from "@dxos/schema";
|
|
57
87
|
var InputKind = Schema.Literal("value", "pass-through", "retriever", "function", "query", "resolver", "context", "schema");
|
|
58
|
-
var Input = Schema.
|
|
88
|
+
var Input = Schema.Struct({
|
|
59
89
|
name: Schema.String,
|
|
60
90
|
kind: Schema.optional(InputKind),
|
|
61
|
-
default: Schema.optional(Schema.Any)
|
|
62
|
-
|
|
91
|
+
default: Schema.optional(Schema.Any),
|
|
92
|
+
/**
|
|
93
|
+
* Function to call if the kind is 'function'.
|
|
94
|
+
*/
|
|
95
|
+
function: Schema.optional(Schema.String)
|
|
96
|
+
}).pipe(Schema.mutable);
|
|
63
97
|
var Template = Schema.Struct({
|
|
64
98
|
source: Type.Ref(Text.Text).annotations({
|
|
65
99
|
description: "Handlebars template source"
|
|
@@ -106,7 +140,7 @@ var Blueprint = Schema2.Struct({
|
|
|
106
140
|
tools: Schema2.Array(ToolId).annotations({
|
|
107
141
|
description: "Array of tools that the AI assistant can use when this blueprint is active"
|
|
108
142
|
})
|
|
109
|
-
}).pipe(Type2.
|
|
143
|
+
}).pipe(Type2.object({
|
|
110
144
|
// TODO(burdon): Is this a DXN? Need to create a Format type for these IDs.
|
|
111
145
|
typename: "dxos.org/type/Blueprint",
|
|
112
146
|
version: "0.1.0"
|
|
@@ -124,7 +158,7 @@ var toolDefinitions = ({ tools = [], functions = [] }) => [
|
|
|
124
158
|
];
|
|
125
159
|
|
|
126
160
|
// src/blueprint/registry.ts
|
|
127
|
-
import { log } from "@dxos/log";
|
|
161
|
+
import { log as log2 } from "@dxos/log";
|
|
128
162
|
var __dxlog_file2 = "/__w/dxos/dxos/packages/core/blueprints/src/blueprint/registry.ts";
|
|
129
163
|
var Registry = class {
|
|
130
164
|
_blueprints = [];
|
|
@@ -132,7 +166,7 @@ var Registry = class {
|
|
|
132
166
|
const seen = /* @__PURE__ */ new Set();
|
|
133
167
|
blueprints.forEach((blueprint) => {
|
|
134
168
|
if (seen.has(blueprint.key)) {
|
|
135
|
-
|
|
169
|
+
log2.warn("duplicate blueprint", {
|
|
136
170
|
key: blueprint.key
|
|
137
171
|
}, {
|
|
138
172
|
F: __dxlog_file2,
|
|
@@ -147,6 +181,9 @@ var Registry = class {
|
|
|
147
181
|
});
|
|
148
182
|
this._blueprints.sort(({ name: a }, { name: b }) => a.localeCompare(b));
|
|
149
183
|
}
|
|
184
|
+
get blueprints() {
|
|
185
|
+
return this._blueprints;
|
|
186
|
+
}
|
|
150
187
|
getByKey(key) {
|
|
151
188
|
return this._blueprints.find((blueprint) => blueprint.key === key);
|
|
152
189
|
}
|
|
@@ -165,7 +202,7 @@ __export(prompt_exports, {
|
|
|
165
202
|
// src/prompt/prompt.ts
|
|
166
203
|
import * as Schema3 from "effect/Schema";
|
|
167
204
|
import { Annotation as Annotation2, JsonSchema, Obj as Obj2, Type as Type3 } from "@dxos/echo";
|
|
168
|
-
var Prompt
|
|
205
|
+
var Prompt = Schema3.Struct({
|
|
169
206
|
/**
|
|
170
207
|
* Name of the prompt.
|
|
171
208
|
*/
|
|
@@ -196,11 +233,10 @@ var Prompt$ = Schema3.Struct({
|
|
|
196
233
|
* Additional context that the prompt may utilize.
|
|
197
234
|
*/
|
|
198
235
|
context: Schema3.Array(Schema3.Any).pipe(Annotation2.FormInputAnnotation.set(false))
|
|
199
|
-
}).pipe(Type3.
|
|
236
|
+
}).pipe(Type3.object({
|
|
200
237
|
typename: "dxos.org/type/Prompt",
|
|
201
238
|
version: "0.1.0"
|
|
202
239
|
}));
|
|
203
|
-
var Prompt = Prompt$;
|
|
204
240
|
var make3 = (params) => Obj2.make(Prompt, {
|
|
205
241
|
name: params.name,
|
|
206
242
|
description: params.description,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/blueprint/index.ts", "../../../src/blueprint/blueprint.ts", "../../../src/template/index.ts", "../../../src/template/prompt.ts", "../../../src/template/template.ts", "../../../src/blueprint/registry.ts", "../../../src/prompt/index.ts", "../../../src/prompt/prompt.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nexport * from './blueprint';\nexport * from './registry';\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport * as Schema from 'effect/Schema';\n\nimport { ToolId } from '@dxos/ai';\nimport { Annotation, Obj, Type } from '@dxos/echo';\nimport { type FunctionDefinition } from '@dxos/functions';\n\nimport * as Template from '../template';\n\n/**\n * Blueprint schema defines the structure for AI assistant blueprints.\n * Blueprints contain instructions, tools, and artifacts that guide the AI's behavior.\n * Blueprints may use tools to create and read artifacts, which are managed by the assistant.\n */\nexport const Blueprint = Schema.Struct({\n /**\n * Global registry ID.\n * NOTE: The `key` property refers to the original registry entry.\n */\n // TODO(burdon): Create Format type for DXN-like ids, such as this and schema type.\n key: Schema.String.annotations({\n description: 'Unique registration key for the blueprint',\n }),\n\n /**\n * Human-readable name of the blueprint.\n */\n name: Schema.String.annotations({\n description: 'Human-readable name of the blueprint',\n }),\n\n /**\n * Description of the blueprint's purpose and functionality.\n */\n description: Schema.optional(Schema.String).annotations({\n description: \"Description of the blueprint's purpose and functionality\",\n }),\n\n /**\n * Instructions that guide the AI assistant's behavior and responses.\n * These are system prompts or guidelines that the AI should follow.\n */\n instructions: Template.Template.annotations({\n description: \"Instructions that guide the AI assistant's behavior and responses\",\n }),\n\n /**\n * Array of tools that the AI assistant can use when this blueprint is active.\n */\n tools: Schema.Array(ToolId).annotations({\n description: 'Array of tools that the AI assistant can use when this blueprint is active',\n }),\n}).pipe(\n Type.
|
|
5
|
-
"mappings": ";;;;;;;;AAAA;;;;cAAAA;EAAA;;;;ACIA,YAAYC,aAAY;AAExB,SAASC,cAAc;AACvB,SAASC,YAAYC,KAAKC,QAAAA,aAAY;;;ACPtC
|
|
6
|
-
"names": ["make", "Schema", "ToolId", "Annotation", "Obj", "Type", "handlebars", "invariant", "process", "source", "variables", "section", "registerHelper", "String", "template", "compile", "trim", "output", "replace", "Schema", "Ref", "Type", "Text", "InputKind", "Literal", "Input", "
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nexport * from './blueprint';\nexport * from './registry';\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport * as Schema from 'effect/Schema';\n\nimport { ToolId } from '@dxos/ai';\nimport { Annotation, Obj, Type } from '@dxos/echo';\nimport { type FunctionDefinition } from '@dxos/functions';\n\nimport * as Template from '../template';\n\n/**\n * Blueprint schema defines the structure for AI assistant blueprints.\n * Blueprints contain instructions, tools, and artifacts that guide the AI's behavior.\n * Blueprints may use tools to create and read artifacts, which are managed by the assistant.\n */\nexport const Blueprint = Schema.Struct({\n /**\n * Global registry ID.\n * NOTE: The `key` property refers to the original registry entry.\n */\n // TODO(burdon): Create Format type for DXN-like ids, such as this and schema type.\n key: Schema.String.annotations({\n description: 'Unique registration key for the blueprint',\n }),\n\n /**\n * Human-readable name of the blueprint.\n */\n name: Schema.String.annotations({\n description: 'Human-readable name of the blueprint',\n }),\n\n /**\n * Description of the blueprint's purpose and functionality.\n */\n description: Schema.optional(Schema.String).annotations({\n description: \"Description of the blueprint's purpose and functionality\",\n }),\n\n /**\n * Instructions that guide the AI assistant's behavior and responses.\n * These are system prompts or guidelines that the AI should follow.\n */\n instructions: Template.Template.annotations({\n description: \"Instructions that guide the AI assistant's behavior and responses\",\n }),\n\n /**\n * Array of tools that the AI assistant can use when this blueprint is active.\n */\n tools: Schema.Array(ToolId).annotations({\n description: 'Array of tools that the AI assistant can use when this blueprint is active',\n }),\n}).pipe(\n Type.object({\n // TODO(burdon): Is this a DXN? Need to create a Format type for these IDs.\n typename: 'dxos.org/type/Blueprint',\n version: '0.1.0',\n }),\n Annotation.LabelAnnotation.set(['name']),\n);\n\n/**\n * TypeScript type for Blueprint.\n */\nexport interface Blueprint extends Schema.Schema.Type<typeof Blueprint> {}\n\ntype MakeProps = Pick<Blueprint, 'key' | 'name'> & Partial<Blueprint>;\n\n/**\n * Create a new Blueprint.\n */\nexport const make = ({ tools = [], instructions = Template.make(), ...props }: MakeProps) =>\n Obj.make(Blueprint, {\n tools,\n instructions,\n ...props,\n });\n\n/**\n * Util to create tool definitions for a blueprint.\n */\nexport const toolDefinitions = ({\n tools = [],\n functions = [],\n}: {\n tools?: string[];\n functions?: FunctionDefinition[];\n}) => [...functions.map((fn) => ToolId.make(fn.key)), ...tools.map((tool) => ToolId.make(tool))];\n", "//\n// Copyright 2025 DXOS.org\n//\n\nexport * from './prompt';\nexport * from './template';\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport * as Effect from 'effect/Effect';\nimport * as Record from 'effect/Record';\nimport handlebars from 'handlebars';\n\nimport { Database } from '@dxos/echo';\nimport type { ObjectNotFoundError } from '@dxos/echo/Err';\nimport {\n type FunctionDefinition,\n FunctionInvocationService,\n type FunctionNotFoundError,\n type TracingService,\n} from '@dxos/functions';\nimport { invariant } from '@dxos/invariant';\nimport { log } from '@dxos/log';\n\nimport type { Template } from '..';\n\n/**\n * Process Handlebars template.\n */\nexport const process = <Options extends {}>(source: string, variables: Partial<Options> = {}): string => {\n invariant(typeof source === 'string');\n let section = 0;\n handlebars.registerHelper('section', () => String(++section));\n const template = handlebars.compile(source.trim());\n const output = template(variables);\n return output.trim().replace(/(\\n\\s*){3,}/g, '\\n\\n');\n};\n\nexport const processTemplate = (\n template: Template.Template,\n): Effect.Effect<string, ObjectNotFoundError | FunctionNotFoundError, FunctionInvocationService | TracingService> =>\n Effect.gen(function* () {\n const functionInvoker = yield* FunctionInvocationService;\n\n const variables = yield* Effect.forEach(template.inputs ?? [], (input) =>\n Effect.gen(function* () {\n if (input.kind === 'function') {\n const fn = (yield* functionInvoker.resolveFunction(input.function!)) as FunctionDefinition<\n {},\n unknown,\n never\n >;\n const result = yield* functionInvoker.invokeFunction(fn, {});\n return [input.name, result] as const;\n } else {\n return yield* Effect.dieMessage(`Unsupported input kind: ${input.kind}`);\n }\n }),\n ).pipe(Effect.map(Record.fromEntries));\n\n log('processTemplate', { variables });\n\n return process((yield* Database.Service.load(template.source)).content, variables);\n });\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport * as Schema from 'effect/Schema';\n\nimport { Ref, Type } from '@dxos/echo';\nimport { type ObjectId } from '@dxos/keys';\nimport { Text } from '@dxos/schema';\n\n/**\n * Template input kind determines how template variables are resolved.\n */\nexport const InputKind = Schema.Literal(\n 'value', // Literal value.\n 'pass-through',\n 'retriever',\n 'function',\n 'query',\n 'resolver',\n 'context',\n 'schema',\n);\n\nexport type InputKind = Schema.Schema.Type<typeof InputKind>;\n\n/**\n * Template input variable.\n * E.g., {{foo}}\n */\nexport const Input = Schema.Struct({\n name: Schema.String,\n kind: Schema.optional(InputKind),\n default: Schema.optional(Schema.Any),\n\n /**\n * Function to call if the kind is 'function'.\n */\n function: Schema.optional(Schema.String),\n}).pipe(Schema.mutable);\n\nexport type Input = Schema.Schema.Type<typeof Input>;\n\n/**\n * Template type.\n */\nexport const Template = Schema.Struct({\n source: Type.Ref(Text.Text).annotations({ description: 'Handlebars template source' }),\n inputs: Schema.optional(Schema.mutable(Schema.Array(Input))),\n}).pipe(Schema.mutable);\n\nexport interface Template extends Schema.Schema.Type<typeof Template> {}\n\nexport const make = ({\n source,\n inputs = [],\n id,\n}: { source?: string; inputs?: Input[]; id?: ObjectId } = {}): Template => ({\n source: Ref.make(Text.make(source, id)),\n inputs,\n});\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport { log } from '@dxos/log';\n\nimport { type Blueprint } from './blueprint';\n\n/**\n * Blueprint registry.\n */\nexport class Registry {\n private readonly _blueprints: Blueprint[] = [];\n\n constructor(blueprints: Blueprint[]) {\n const seen = new Set<string>();\n blueprints.forEach((blueprint) => {\n if (seen.has(blueprint.key)) {\n log.warn('duplicate blueprint', { key: blueprint.key });\n } else {\n seen.add(blueprint.key);\n this._blueprints.push(blueprint);\n }\n });\n\n this._blueprints.sort(({ name: a }, { name: b }) => a.localeCompare(b));\n }\n\n get blueprints(): Blueprint[] {\n return this._blueprints;\n }\n\n getByKey(key: string): Blueprint | undefined {\n return this._blueprints.find((blueprint) => blueprint.key === key);\n }\n\n query(): Blueprint[] {\n return this._blueprints;\n }\n}\n", "//\n// Copyright 2025 DXOS.org\n//\n\nexport * from './prompt';\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport * as Schema from 'effect/Schema';\n\nimport { Annotation, JsonSchema, Obj, type Ref, Type } from '@dxos/echo';\n\nimport { Blueprint } from '../blueprint';\nimport * as Template from '../template';\n\n/**\n * Executable instructions, which may use Blueprints.\n * May reference additional context.\n */\nexport const Prompt = Schema.Struct({\n /**\n * Name of the prompt.\n */\n name: Schema.optional(Schema.String),\n\n /**\n * Description of the prompt's purpose and functionality.\n * Allows AI agents to execute prompts automatically as tools.\n */\n description: Schema.optional(Schema.String),\n\n /**\n * Input schema of the prompt.\n */\n input: JsonSchema.JsonSchema.pipe(Annotation.FormInputAnnotation.set(false)),\n\n /**\n * Output schema of the prompt.\n */\n output: JsonSchema.JsonSchema.pipe(Annotation.FormInputAnnotation.set(false)),\n\n /**\n * Natural language instructions for the prompt.\n * These should provide concrete course of action for the AI to follow.\n */\n instructions: Template.Template.pipe(Annotation.FormInputAnnotation.set(false)),\n\n /**\n * Blueprints that the prompt may utilize.\n */\n blueprints: Schema.Array(Type.Ref(Blueprint)),\n\n /**\n * Additional context that the prompt may utilize.\n */\n context: Schema.Array(Schema.Any).pipe(Annotation.FormInputAnnotation.set(false)),\n}).pipe(\n Type.object({\n typename: 'dxos.org/type/Prompt',\n version: '0.1.0',\n }),\n);\n\nexport interface Prompt extends Schema.Schema.Type<typeof Prompt> {}\n\nexport const make = (params: {\n name?: string;\n description?: string;\n input?: Schema.Schema.AnyNoContext;\n output?: Schema.Schema.AnyNoContext;\n instructions?: string;\n blueprints?: Ref.Ref<Blueprint>[];\n context?: any[];\n}): Prompt =>\n Obj.make(Prompt, {\n name: params.name,\n description: params.description,\n input: JsonSchema.toJsonSchema(params.input ?? Schema.Void),\n output: JsonSchema.toJsonSchema(params.output ?? Schema.Void),\n instructions: Template.make({ source: params.instructions }),\n blueprints: params.blueprints ?? [],\n context: params.context ?? [],\n });\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
|
+
"names": ["make", "Schema", "ToolId", "Annotation", "Obj", "Type", "Effect", "Record", "handlebars", "Database", "FunctionInvocationService", "invariant", "log", "process", "source", "variables", "section", "registerHelper", "String", "template", "compile", "trim", "output", "replace", "processTemplate", "gen", "functionInvoker", "forEach", "inputs", "input", "kind", "fn", "resolveFunction", "function", "result", "invokeFunction", "name", "dieMessage", "pipe", "map", "fromEntries", "Service", "load", "content", "Schema", "Ref", "Type", "Text", "InputKind", "Literal", "Input", "Struct", "name", "String", "kind", "optional", "default", "Any", "function", "pipe", "mutable", "Template", "source", "Type", "Ref", "Text", "annotations", "description", "inputs", "Array", "make", "id", "Blueprint", "Struct", "key", "String", "annotations", "description", "name", "optional", "instructions", "Template", "tools", "Array", "ToolId", "pipe", "Type", "object", "typename", "version", "Annotation", "LabelAnnotation", "set", "make", "props", "Obj", "toolDefinitions", "functions", "map", "fn", "tool", "log", "Registry", "_blueprints", "blueprints", "seen", "Set", "forEach", "blueprint", "has", "key", "warn", "add", "push", "sort", "name", "a", "b", "localeCompare", "getByKey", "find", "query", "make", "Schema", "Annotation", "JsonSchema", "Obj", "Type", "Prompt", "Struct", "name", "optional", "String", "description", "input", "JsonSchema", "pipe", "Annotation", "FormInputAnnotation", "set", "output", "instructions", "Template", "blueprints", "Array", "Type", "Ref", "Blueprint", "context", "Any", "object", "typename", "version", "make", "params", "Obj", "toJsonSchema", "Void", "source"]
|
|
7
7
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/template/prompt.ts":{"bytes":
|
|
1
|
+
{"inputs":{"src/template/prompt.ts":{"bytes":6924,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Record","kind":"import-statement","external":true},{"path":"handlebars","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"src/template/template.ts":{"bytes":4720,"imports":[{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true}],"format":"esm"},"src/template/index.ts":{"bytes":546,"imports":[{"path":"src/template/prompt.ts","kind":"import-statement","original":"./prompt"},{"path":"src/template/template.ts","kind":"import-statement","original":"./template"}],"format":"esm"},"src/blueprint/blueprint.ts":{"bytes":8164,"imports":[{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"src/template/index.ts","kind":"import-statement","original":"../template"}],"format":"esm"},"src/blueprint/registry.ts":{"bytes":3662,"imports":[{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"src/blueprint/index.ts":{"bytes":554,"imports":[{"path":"src/blueprint/blueprint.ts","kind":"import-statement","original":"./blueprint"},{"path":"src/blueprint/registry.ts","kind":"import-statement","original":"./registry"}],"format":"esm"},"src/prompt/prompt.ts":{"bytes":7056,"imports":[{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"src/blueprint/index.ts","kind":"import-statement","original":"../blueprint"},{"path":"src/template/index.ts","kind":"import-statement","original":"../template"}],"format":"esm"},"src/prompt/index.ts":{"bytes":456,"imports":[{"path":"src/prompt/prompt.ts","kind":"import-statement","original":"./prompt"}],"format":"esm"},"src/index.ts":{"bytes":813,"imports":[{"path":"src/blueprint/index.ts","kind":"import-statement","original":"./blueprint"},{"path":"src/template/index.ts","kind":"import-statement","original":"./template"},{"path":"src/prompt/index.ts","kind":"import-statement","original":"./prompt"}],"format":"esm"}},"outputs":{"dist/lib/node-esm/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":15511},"dist/lib/node-esm/index.mjs":{"imports":[{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Record","kind":"import-statement","external":true},{"path":"handlebars","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true}],"exports":["Blueprint","Prompt","Template"],"entryPoint":"src/index.ts","inputs":{"src/blueprint/index.ts":{"bytesInOutput":182},"src/blueprint/blueprint.ts":{"bytesInOutput":1842},"src/template/index.ts":{"bytesInOutput":227},"src/template/prompt.ts":{"bytesInOutput":1642},"src/template/template.ts":{"bytesInOutput":819},"src/blueprint/registry.ts":{"bytesInOutput":897},"src/index.ts":{"bytesInOutput":0},"src/prompt/index.ts":{"bytesInOutput":100},"src/prompt/prompt.ts":{"bytesInOutput":1592}},"bytes":7950}}}
|
|
@@ -6,62 +6,48 @@ import { type FunctionDefinition } from '@dxos/functions';
|
|
|
6
6
|
* Blueprints contain instructions, tools, and artifacts that guide the AI's behavior.
|
|
7
7
|
* Blueprints may use tools to create and read artifacts, which are managed by the assistant.
|
|
8
8
|
*/
|
|
9
|
-
export declare const Blueprint: Type.
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
*/
|
|
27
|
-
instructions: Schema.mutable<Schema.Struct<{
|
|
28
|
-
source: Schema.SchemaClass<import("@dxos/echo/internal").Ref<import("@dxos/echo/Entity").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {
|
|
29
|
-
content: string;
|
|
30
|
-
}>, import("@dxos/echo-protocol").EncodedReference, never>;
|
|
31
|
-
inputs: Schema.optional<Schema.mutable<Schema.Array$<Schema.mutable<Schema.Struct<{
|
|
32
|
-
name: typeof Schema.String;
|
|
33
|
-
kind: Schema.optional<Schema.Literal<["value", "pass-through", "retriever", "function", "query", "resolver", "context", "schema"]>>;
|
|
34
|
-
default: Schema.optional<typeof Schema.Any>;
|
|
35
|
-
}>>>>>;
|
|
36
|
-
}>>;
|
|
37
|
-
/**
|
|
38
|
-
* Array of tools that the AI assistant can use when this blueprint is active.
|
|
39
|
-
*/
|
|
40
|
-
tools: Schema.Array$<Schema.brand<typeof Schema.String, "ToolId">>;
|
|
41
|
-
}>>;
|
|
9
|
+
export declare const Blueprint: Type.Obj<{
|
|
10
|
+
readonly description?: string | undefined;
|
|
11
|
+
readonly name: string;
|
|
12
|
+
readonly key: string;
|
|
13
|
+
readonly instructions: {
|
|
14
|
+
source: import("@dxos/echo/internal").Ref<import("@dxos/echo/Entity").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {
|
|
15
|
+
readonly content: string;
|
|
16
|
+
}>;
|
|
17
|
+
inputs?: {
|
|
18
|
+
function?: string | undefined;
|
|
19
|
+
name: string;
|
|
20
|
+
kind?: "function" | "value" | "pass-through" | "retriever" | "query" | "resolver" | "context" | "schema" | undefined;
|
|
21
|
+
default?: any;
|
|
22
|
+
}[] | undefined;
|
|
23
|
+
};
|
|
24
|
+
readonly tools: readonly (string & import("effect/Brand").Brand<"ToolId">)[];
|
|
25
|
+
}, Schema.Struct.Fields>;
|
|
42
26
|
/**
|
|
43
27
|
* TypeScript type for Blueprint.
|
|
44
28
|
*/
|
|
45
29
|
export interface Blueprint extends Schema.Schema.Type<typeof Blueprint> {
|
|
46
30
|
}
|
|
31
|
+
type MakeProps = Pick<Blueprint, 'key' | 'name'> & Partial<Blueprint>;
|
|
47
32
|
/**
|
|
48
33
|
* Create a new Blueprint.
|
|
49
34
|
*/
|
|
50
|
-
export declare const make: ({ tools, instructions, ...props }:
|
|
51
|
-
|
|
52
|
-
name: string;
|
|
53
|
-
|
|
54
|
-
instructions: {
|
|
35
|
+
export declare const make: ({ tools, instructions, ...props }: MakeProps) => Obj.Obj<import("@dxos/echo/Entity").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {
|
|
36
|
+
readonly description?: string | undefined;
|
|
37
|
+
readonly name: string;
|
|
38
|
+
readonly key: string;
|
|
39
|
+
readonly instructions: {
|
|
55
40
|
source: import("@dxos/echo/internal").Ref<import("@dxos/echo/Entity").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {
|
|
56
|
-
content: string;
|
|
41
|
+
readonly content: string;
|
|
57
42
|
}>;
|
|
58
43
|
inputs?: {
|
|
44
|
+
function?: string | undefined;
|
|
59
45
|
name: string;
|
|
60
46
|
kind?: "function" | "value" | "pass-through" | "retriever" | "query" | "resolver" | "context" | "schema" | undefined;
|
|
61
47
|
default?: any;
|
|
62
48
|
}[] | undefined;
|
|
63
49
|
};
|
|
64
|
-
tools: (string & import("effect/Brand").Brand<"ToolId">)[];
|
|
50
|
+
readonly tools: readonly (string & import("effect/Brand").Brand<"ToolId">)[];
|
|
65
51
|
}>;
|
|
66
52
|
/**
|
|
67
53
|
* Util to create tool definitions for a blueprint.
|
|
@@ -70,4 +56,5 @@ export declare const toolDefinitions: ({ tools, functions, }: {
|
|
|
70
56
|
tools?: string[];
|
|
71
57
|
functions?: FunctionDefinition[];
|
|
72
58
|
}) => (string & import("effect/Brand").Brand<"ToolId">)[];
|
|
59
|
+
export {};
|
|
73
60
|
//# sourceMappingURL=blueprint.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"blueprint.d.ts","sourceRoot":"","sources":["../../../../src/blueprint/blueprint.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAGxC,OAAO,EAAc,GAAG,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAI1D;;;;GAIG;AACH,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"blueprint.d.ts","sourceRoot":"","sources":["../../../../src/blueprint/blueprint.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAGxC,OAAO,EAAc,GAAG,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAI1D;;;;GAIG;AACH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;wBA6CrB,CAAC;AAEF;;GAEG;AACH,MAAM,WAAW,SAAU,SAAQ,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,SAAS,CAAC;CAAG;AAE1E,KAAK,SAAS,GAAG,IAAI,CAAC,SAAS,EAAE,KAAK,GAAG,MAAM,CAAC,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC;AAEtE;;GAEG;AACH,eAAO,MAAM,IAAI,GAAI,mCAA0D,SAAS;;;;;;;;;;;;;;;;EAKpF,CAAC;AAEL;;GAEG;AACH,eAAO,MAAM,eAAe,GAAI,uBAG7B;IACD,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,SAAS,CAAC,EAAE,kBAAkB,EAAE,CAAC;CAClC,wDAA+F,CAAC"}
|