@almadar/std 3.10.0 → 3.11.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.
- package/dist/behaviors/exports-reader.d.ts +4 -31
- package/dist/behaviors/exports-reader.js +21267 -40
- package/dist/behaviors/exports-reader.js.map +1 -1
- package/dist/behaviors/functions/index.js.map +1 -1
- package/dist/behaviors/index.js +1042 -617
- package/dist/behaviors/index.js.map +1 -1
- package/dist/behaviors/query.d.ts +6 -5
- package/dist/behaviors/query.js +21293 -29
- package/dist/behaviors/query.js.map +1 -1
- package/dist/behaviors/types.d.ts +7 -14
- package/dist/behaviors/types.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1367 -616
- package/dist/index.js.map +1 -1
- package/dist/modules/agent.d.ts +21 -0
- package/dist/modules/agent.js +322 -0
- package/dist/modules/agent.js.map +1 -0
- package/dist/modules/array.d.ts +1 -1
- package/dist/modules/async.d.ts +1 -1
- package/dist/modules/contract.d.ts +1 -1
- package/dist/modules/data.d.ts +1 -1
- package/dist/modules/format.d.ts +1 -1
- package/dist/modules/graph.d.ts +1 -1
- package/dist/modules/index.d.ts +2 -1
- package/dist/modules/index.js +320 -1
- package/dist/modules/index.js.map +1 -1
- package/dist/modules/math.d.ts +1 -1
- package/dist/modules/nn.d.ts +1 -1
- package/dist/modules/object.d.ts +1 -1
- package/dist/modules/os.d.ts +1 -1
- package/dist/modules/prob.d.ts +1 -1
- package/dist/modules/str.d.ts +1 -1
- package/dist/modules/tensor.d.ts +1 -1
- package/dist/modules/time.d.ts +1 -1
- package/dist/modules/train.d.ts +1 -1
- package/dist/modules/validate.d.ts +1 -1
- package/dist/registry.d.ts +1 -1
- package/dist/registry.js +321 -2
- package/dist/registry.js.map +1 -1
- package/dist/{types-DOeGXRCm.d.ts → types-BjP5nVQd.d.ts} +3 -3
- package/package.json +2 -2
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { a as StdOperatorMeta } from '../types-BjP5nVQd.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Agent Module - AI Agent Intelligence Operations
|
|
5
|
+
*
|
|
6
|
+
* Provides operators for agent memory management, LLM access,
|
|
7
|
+
* tool invocation, context window management, and session control.
|
|
8
|
+
*
|
|
9
|
+
* @packageDocumentation
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Agent module operators.
|
|
14
|
+
*/
|
|
15
|
+
declare const AGENT_OPERATORS: Record<string, StdOperatorMeta>;
|
|
16
|
+
/**
|
|
17
|
+
* Get all agent operator names.
|
|
18
|
+
*/
|
|
19
|
+
declare function getAgentOperators(): string[];
|
|
20
|
+
|
|
21
|
+
export { AGENT_OPERATORS, getAgentOperators };
|
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
// modules/agent.ts
|
|
2
|
+
var AGENT_OPERATORS = {
|
|
3
|
+
// ==========================================================================
|
|
4
|
+
// Memory (Pure)
|
|
5
|
+
// ==========================================================================
|
|
6
|
+
"agent/recall": {
|
|
7
|
+
module: "agent",
|
|
8
|
+
category: "std-agent",
|
|
9
|
+
minArity: 1,
|
|
10
|
+
maxArity: 2,
|
|
11
|
+
description: "Search memories by semantic query. Returns matching AgentMemoryRecord array.",
|
|
12
|
+
hasSideEffects: false,
|
|
13
|
+
returnType: "array",
|
|
14
|
+
params: [
|
|
15
|
+
{ name: "query", type: "string", description: "Semantic search query" },
|
|
16
|
+
{ name: "limit", type: "number", description: "Max results to return", optional: true }
|
|
17
|
+
],
|
|
18
|
+
example: '["agent/recall", "user prefers dark mode"] => [{id, content, strength, ...}]'
|
|
19
|
+
},
|
|
20
|
+
"agent/memories": {
|
|
21
|
+
module: "agent",
|
|
22
|
+
category: "std-agent",
|
|
23
|
+
minArity: 0,
|
|
24
|
+
maxArity: 1,
|
|
25
|
+
description: "List all memories, optionally filtered by category.",
|
|
26
|
+
hasSideEffects: false,
|
|
27
|
+
returnType: "array",
|
|
28
|
+
params: [
|
|
29
|
+
{ name: "category", type: "string", description: "Memory category filter", optional: true }
|
|
30
|
+
],
|
|
31
|
+
example: '["agent/memories", "preference"] => [{id, content, category, ...}]'
|
|
32
|
+
},
|
|
33
|
+
"agent/memory-strength": {
|
|
34
|
+
module: "agent",
|
|
35
|
+
category: "std-agent",
|
|
36
|
+
minArity: 1,
|
|
37
|
+
maxArity: 1,
|
|
38
|
+
description: "Get the strength value (0-1) of a specific memory.",
|
|
39
|
+
hasSideEffects: false,
|
|
40
|
+
returnType: "number",
|
|
41
|
+
params: [
|
|
42
|
+
{ name: "id", type: "string", description: "Memory record ID" }
|
|
43
|
+
],
|
|
44
|
+
example: '["agent/memory-strength", "mem_abc123"] => 0.85'
|
|
45
|
+
},
|
|
46
|
+
"agent/is-pinned": {
|
|
47
|
+
module: "agent",
|
|
48
|
+
category: "std-agent",
|
|
49
|
+
minArity: 1,
|
|
50
|
+
maxArity: 1,
|
|
51
|
+
description: "Check if a memory is pinned (immune to decay).",
|
|
52
|
+
hasSideEffects: false,
|
|
53
|
+
returnType: "boolean",
|
|
54
|
+
params: [
|
|
55
|
+
{ name: "id", type: "string", description: "Memory record ID" }
|
|
56
|
+
],
|
|
57
|
+
example: '["agent/is-pinned", "mem_abc123"] => true'
|
|
58
|
+
},
|
|
59
|
+
// ==========================================================================
|
|
60
|
+
// LLM (Pure)
|
|
61
|
+
// ==========================================================================
|
|
62
|
+
"agent/provider": {
|
|
63
|
+
module: "agent",
|
|
64
|
+
category: "std-agent",
|
|
65
|
+
minArity: 0,
|
|
66
|
+
maxArity: 0,
|
|
67
|
+
description: "Get the name of the current LLM provider.",
|
|
68
|
+
hasSideEffects: false,
|
|
69
|
+
returnType: "string",
|
|
70
|
+
params: [],
|
|
71
|
+
example: '["agent/provider"] => "deepseek"'
|
|
72
|
+
},
|
|
73
|
+
"agent/model": {
|
|
74
|
+
module: "agent",
|
|
75
|
+
category: "std-agent",
|
|
76
|
+
minArity: 0,
|
|
77
|
+
maxArity: 0,
|
|
78
|
+
description: "Get the name of the current LLM model.",
|
|
79
|
+
hasSideEffects: false,
|
|
80
|
+
returnType: "string",
|
|
81
|
+
params: [],
|
|
82
|
+
example: '["agent/model"] => "deepseek-chat"'
|
|
83
|
+
},
|
|
84
|
+
// ==========================================================================
|
|
85
|
+
// Tools (Pure)
|
|
86
|
+
// ==========================================================================
|
|
87
|
+
"agent/tools": {
|
|
88
|
+
module: "agent",
|
|
89
|
+
category: "std-agent",
|
|
90
|
+
minArity: 0,
|
|
91
|
+
maxArity: 0,
|
|
92
|
+
description: "Get the list of available tool names.",
|
|
93
|
+
hasSideEffects: false,
|
|
94
|
+
returnType: "array",
|
|
95
|
+
params: [],
|
|
96
|
+
example: '["agent/tools"] => ["execute", "validate-schema", "generate-schema"]'
|
|
97
|
+
},
|
|
98
|
+
// ==========================================================================
|
|
99
|
+
// Context (Pure)
|
|
100
|
+
// ==========================================================================
|
|
101
|
+
"agent/token-count": {
|
|
102
|
+
module: "agent",
|
|
103
|
+
category: "std-agent",
|
|
104
|
+
minArity: 0,
|
|
105
|
+
maxArity: 0,
|
|
106
|
+
description: "Get the current token count in the context window.",
|
|
107
|
+
hasSideEffects: false,
|
|
108
|
+
returnType: "number",
|
|
109
|
+
params: [],
|
|
110
|
+
example: '["agent/token-count"] => 12450'
|
|
111
|
+
},
|
|
112
|
+
"agent/context-usage": {
|
|
113
|
+
module: "agent",
|
|
114
|
+
category: "std-agent",
|
|
115
|
+
minArity: 0,
|
|
116
|
+
maxArity: 0,
|
|
117
|
+
description: "Get context window usage as a ratio (0-1).",
|
|
118
|
+
hasSideEffects: false,
|
|
119
|
+
returnType: "number",
|
|
120
|
+
params: [],
|
|
121
|
+
example: '["agent/context-usage"] => 0.62'
|
|
122
|
+
},
|
|
123
|
+
// ==========================================================================
|
|
124
|
+
// Session (Pure)
|
|
125
|
+
// ==========================================================================
|
|
126
|
+
"agent/session-id": {
|
|
127
|
+
module: "agent",
|
|
128
|
+
category: "std-agent",
|
|
129
|
+
minArity: 0,
|
|
130
|
+
maxArity: 0,
|
|
131
|
+
description: "Get the current session identifier.",
|
|
132
|
+
hasSideEffects: false,
|
|
133
|
+
returnType: "string",
|
|
134
|
+
params: [],
|
|
135
|
+
example: '["agent/session-id"] => "sess_a3f2k"'
|
|
136
|
+
},
|
|
137
|
+
// ==========================================================================
|
|
138
|
+
// Memory (Effects)
|
|
139
|
+
// ==========================================================================
|
|
140
|
+
"agent/memorize": {
|
|
141
|
+
module: "agent",
|
|
142
|
+
category: "std-agent",
|
|
143
|
+
minArity: 2,
|
|
144
|
+
maxArity: 3,
|
|
145
|
+
description: "Store a new memory. Returns the new memory ID.",
|
|
146
|
+
hasSideEffects: true,
|
|
147
|
+
returnType: "string",
|
|
148
|
+
params: [
|
|
149
|
+
{ name: "content", type: "string", description: "Memory content to store" },
|
|
150
|
+
{ name: "category", type: "string", description: "Category: preference, correction, pattern-affinity, entity-template, error-resolution" },
|
|
151
|
+
{ name: "scope", type: "string", description: "Scope: global or project", optional: true, defaultValue: "global" }
|
|
152
|
+
],
|
|
153
|
+
example: '["agent/memorize", "user prefers PascalCase", "preference"]'
|
|
154
|
+
},
|
|
155
|
+
"agent/forget": {
|
|
156
|
+
module: "agent",
|
|
157
|
+
category: "std-agent",
|
|
158
|
+
minArity: 1,
|
|
159
|
+
maxArity: 1,
|
|
160
|
+
description: "Remove a memory by ID.",
|
|
161
|
+
hasSideEffects: true,
|
|
162
|
+
returnType: "void",
|
|
163
|
+
params: [
|
|
164
|
+
{ name: "id", type: "string", description: "Memory record ID to remove" }
|
|
165
|
+
],
|
|
166
|
+
example: '["agent/forget", "mem_abc123"]'
|
|
167
|
+
},
|
|
168
|
+
"agent/pin": {
|
|
169
|
+
module: "agent",
|
|
170
|
+
category: "std-agent",
|
|
171
|
+
minArity: 1,
|
|
172
|
+
maxArity: 1,
|
|
173
|
+
description: "Pin a memory to prevent decay.",
|
|
174
|
+
hasSideEffects: true,
|
|
175
|
+
returnType: "void",
|
|
176
|
+
params: [
|
|
177
|
+
{ name: "id", type: "string", description: "Memory record ID to pin" }
|
|
178
|
+
],
|
|
179
|
+
example: '["agent/pin", "mem_abc123"]'
|
|
180
|
+
},
|
|
181
|
+
"agent/reinforce": {
|
|
182
|
+
module: "agent",
|
|
183
|
+
category: "std-agent",
|
|
184
|
+
minArity: 1,
|
|
185
|
+
maxArity: 1,
|
|
186
|
+
description: "Increase a memory's strength (reinforcement learning signal).",
|
|
187
|
+
hasSideEffects: true,
|
|
188
|
+
returnType: "void",
|
|
189
|
+
params: [
|
|
190
|
+
{ name: "id", type: "string", description: "Memory record ID to reinforce" }
|
|
191
|
+
],
|
|
192
|
+
example: '["agent/reinforce", "mem_abc123"]'
|
|
193
|
+
},
|
|
194
|
+
"agent/decay": {
|
|
195
|
+
module: "agent",
|
|
196
|
+
category: "std-agent",
|
|
197
|
+
minArity: 0,
|
|
198
|
+
maxArity: 0,
|
|
199
|
+
description: "Apply strength decay to all unpinned memories. Returns count of forgotten memories.",
|
|
200
|
+
hasSideEffects: true,
|
|
201
|
+
returnType: "number",
|
|
202
|
+
params: [],
|
|
203
|
+
example: '["agent/decay"] => 15'
|
|
204
|
+
},
|
|
205
|
+
// ==========================================================================
|
|
206
|
+
// LLM (Effects)
|
|
207
|
+
// ==========================================================================
|
|
208
|
+
"agent/generate": {
|
|
209
|
+
module: "agent",
|
|
210
|
+
category: "std-agent",
|
|
211
|
+
minArity: 1,
|
|
212
|
+
maxArity: 2,
|
|
213
|
+
description: "Generate text from the LLM. Returns generated string.",
|
|
214
|
+
hasSideEffects: true,
|
|
215
|
+
returnType: "string",
|
|
216
|
+
params: [
|
|
217
|
+
{ name: "prompt", type: "string", description: "Prompt text to send to LLM" },
|
|
218
|
+
{ name: "options", type: "object", description: "Options: { provider?, model?, maxTokens? }", optional: true }
|
|
219
|
+
],
|
|
220
|
+
example: '["agent/generate", "Summarize the user request"]'
|
|
221
|
+
},
|
|
222
|
+
"agent/switch-provider": {
|
|
223
|
+
module: "agent",
|
|
224
|
+
category: "std-agent",
|
|
225
|
+
minArity: 1,
|
|
226
|
+
maxArity: 2,
|
|
227
|
+
description: "Switch the active LLM provider and optionally the model.",
|
|
228
|
+
hasSideEffects: true,
|
|
229
|
+
returnType: "void",
|
|
230
|
+
params: [
|
|
231
|
+
{ name: "provider", type: "string", description: 'Provider name (e.g., "deepseek", "openai", "anthropic")' },
|
|
232
|
+
{ name: "model", type: "string", description: "Model name override", optional: true }
|
|
233
|
+
],
|
|
234
|
+
example: '["agent/switch-provider", "openai", "gpt-4o"]'
|
|
235
|
+
},
|
|
236
|
+
// ==========================================================================
|
|
237
|
+
// Tools (Effects)
|
|
238
|
+
// ==========================================================================
|
|
239
|
+
"agent/invoke": {
|
|
240
|
+
module: "agent",
|
|
241
|
+
category: "std-agent",
|
|
242
|
+
minArity: 2,
|
|
243
|
+
maxArity: 2,
|
|
244
|
+
description: "Invoke a tool by name with arguments. Returns tool result.",
|
|
245
|
+
hasSideEffects: true,
|
|
246
|
+
returnType: "any",
|
|
247
|
+
params: [
|
|
248
|
+
{ name: "toolName", type: "string", description: "Name of the tool to invoke" },
|
|
249
|
+
{ name: "args", type: "object", description: "Arguments to pass to the tool" }
|
|
250
|
+
],
|
|
251
|
+
example: '["agent/invoke", "validate-schema", {"schema": "@entity"}]'
|
|
252
|
+
},
|
|
253
|
+
// ==========================================================================
|
|
254
|
+
// Context (Effects)
|
|
255
|
+
// ==========================================================================
|
|
256
|
+
"agent/compact": {
|
|
257
|
+
module: "agent",
|
|
258
|
+
category: "std-agent",
|
|
259
|
+
minArity: 0,
|
|
260
|
+
maxArity: 1,
|
|
261
|
+
description: "Compact the context window. Returns { before, after, strategy, summary? }.",
|
|
262
|
+
hasSideEffects: true,
|
|
263
|
+
returnType: "object",
|
|
264
|
+
params: [
|
|
265
|
+
{ name: "strategy", type: "string", description: "Strategy: hybrid, summarize, truncate, extract", optional: true, defaultValue: "hybrid" }
|
|
266
|
+
],
|
|
267
|
+
example: '["agent/compact", "summarize"] => {before: 50000, after: 12000, ...}'
|
|
268
|
+
},
|
|
269
|
+
// ==========================================================================
|
|
270
|
+
// Session (Effects)
|
|
271
|
+
// ==========================================================================
|
|
272
|
+
"agent/fork": {
|
|
273
|
+
module: "agent",
|
|
274
|
+
category: "std-agent",
|
|
275
|
+
minArity: 0,
|
|
276
|
+
maxArity: 1,
|
|
277
|
+
description: "Fork the current session. Returns new session ID.",
|
|
278
|
+
hasSideEffects: true,
|
|
279
|
+
returnType: "string",
|
|
280
|
+
params: [
|
|
281
|
+
{ name: "label", type: "string", description: "Optional label for the fork point", optional: true }
|
|
282
|
+
],
|
|
283
|
+
example: '["agent/fork", "before-refactor"] => "sess_fork_x7k2m"'
|
|
284
|
+
},
|
|
285
|
+
"agent/label": {
|
|
286
|
+
module: "agent",
|
|
287
|
+
category: "std-agent",
|
|
288
|
+
minArity: 1,
|
|
289
|
+
maxArity: 1,
|
|
290
|
+
description: "Label the current session checkpoint for later reference.",
|
|
291
|
+
hasSideEffects: true,
|
|
292
|
+
returnType: "void",
|
|
293
|
+
params: [
|
|
294
|
+
{ name: "text", type: "string", description: "Label text for the checkpoint" }
|
|
295
|
+
],
|
|
296
|
+
example: '["agent/label", "schema-v2-complete"]'
|
|
297
|
+
},
|
|
298
|
+
// ==========================================================================
|
|
299
|
+
// Search (Effects)
|
|
300
|
+
// ==========================================================================
|
|
301
|
+
"agent/search-code": {
|
|
302
|
+
module: "agent",
|
|
303
|
+
category: "std-agent",
|
|
304
|
+
minArity: 1,
|
|
305
|
+
maxArity: 2,
|
|
306
|
+
description: "Search code repositories. Returns array of { repo, path, url }.",
|
|
307
|
+
hasSideEffects: true,
|
|
308
|
+
returnType: "array",
|
|
309
|
+
params: [
|
|
310
|
+
{ name: "query", type: "string", description: "Code search query" },
|
|
311
|
+
{ name: "language", type: "string", description: "Programming language filter", optional: true }
|
|
312
|
+
],
|
|
313
|
+
example: '["agent/search-code", "orbital schema validation", "typescript"]'
|
|
314
|
+
}
|
|
315
|
+
};
|
|
316
|
+
function getAgentOperators() {
|
|
317
|
+
return Object.keys(AGENT_OPERATORS);
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
export { AGENT_OPERATORS, getAgentOperators };
|
|
321
|
+
//# sourceMappingURL=agent.js.map
|
|
322
|
+
//# sourceMappingURL=agent.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../modules/agent.ts"],"names":[],"mappings":"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","file":"agent.js","sourcesContent":["/**\n * Agent Module - AI Agent Intelligence Operations\n *\n * Provides operators for agent memory management, LLM access,\n * tool invocation, context window management, and session control.\n *\n * @packageDocumentation\n */\n\nimport type { StdOperatorMeta } from '../types.js';\n\n/**\n * Agent module operators.\n */\nexport const AGENT_OPERATORS: Record<string, StdOperatorMeta> = {\n // ==========================================================================\n // Memory (Pure)\n // ==========================================================================\n 'agent/recall': {\n module: 'agent',\n category: 'std-agent',\n minArity: 1,\n maxArity: 2,\n description: 'Search memories by semantic query. Returns matching AgentMemoryRecord array.',\n hasSideEffects: false,\n returnType: 'array',\n params: [\n { name: 'query', type: 'string', description: 'Semantic search query' },\n { name: 'limit', type: 'number', description: 'Max results to return', optional: true },\n ],\n example: '[\"agent/recall\", \"user prefers dark mode\"] => [{id, content, strength, ...}]',\n },\n 'agent/memories': {\n module: 'agent',\n category: 'std-agent',\n minArity: 0,\n maxArity: 1,\n description: 'List all memories, optionally filtered by category.',\n hasSideEffects: false,\n returnType: 'array',\n params: [\n { name: 'category', type: 'string', description: 'Memory category filter', optional: true },\n ],\n example: '[\"agent/memories\", \"preference\"] => [{id, content, category, ...}]',\n },\n 'agent/memory-strength': {\n module: 'agent',\n category: 'std-agent',\n minArity: 1,\n maxArity: 1,\n description: 'Get the strength value (0-1) of a specific memory.',\n hasSideEffects: false,\n returnType: 'number',\n params: [\n { name: 'id', type: 'string', description: 'Memory record ID' },\n ],\n example: '[\"agent/memory-strength\", \"mem_abc123\"] => 0.85',\n },\n 'agent/is-pinned': {\n module: 'agent',\n category: 'std-agent',\n minArity: 1,\n maxArity: 1,\n description: 'Check if a memory is pinned (immune to decay).',\n hasSideEffects: false,\n returnType: 'boolean',\n params: [\n { name: 'id', type: 'string', description: 'Memory record ID' },\n ],\n example: '[\"agent/is-pinned\", \"mem_abc123\"] => true',\n },\n\n // ==========================================================================\n // LLM (Pure)\n // ==========================================================================\n 'agent/provider': {\n module: 'agent',\n category: 'std-agent',\n minArity: 0,\n maxArity: 0,\n description: 'Get the name of the current LLM provider.',\n hasSideEffects: false,\n returnType: 'string',\n params: [],\n example: '[\"agent/provider\"] => \"deepseek\"',\n },\n 'agent/model': {\n module: 'agent',\n category: 'std-agent',\n minArity: 0,\n maxArity: 0,\n description: 'Get the name of the current LLM model.',\n hasSideEffects: false,\n returnType: 'string',\n params: [],\n example: '[\"agent/model\"] => \"deepseek-chat\"',\n },\n\n // ==========================================================================\n // Tools (Pure)\n // ==========================================================================\n 'agent/tools': {\n module: 'agent',\n category: 'std-agent',\n minArity: 0,\n maxArity: 0,\n description: 'Get the list of available tool names.',\n hasSideEffects: false,\n returnType: 'array',\n params: [],\n example: '[\"agent/tools\"] => [\"execute\", \"validate-schema\", \"generate-schema\"]',\n },\n\n // ==========================================================================\n // Context (Pure)\n // ==========================================================================\n 'agent/token-count': {\n module: 'agent',\n category: 'std-agent',\n minArity: 0,\n maxArity: 0,\n description: 'Get the current token count in the context window.',\n hasSideEffects: false,\n returnType: 'number',\n params: [],\n example: '[\"agent/token-count\"] => 12450',\n },\n 'agent/context-usage': {\n module: 'agent',\n category: 'std-agent',\n minArity: 0,\n maxArity: 0,\n description: 'Get context window usage as a ratio (0-1).',\n hasSideEffects: false,\n returnType: 'number',\n params: [],\n example: '[\"agent/context-usage\"] => 0.62',\n },\n\n // ==========================================================================\n // Session (Pure)\n // ==========================================================================\n 'agent/session-id': {\n module: 'agent',\n category: 'std-agent',\n minArity: 0,\n maxArity: 0,\n description: 'Get the current session identifier.',\n hasSideEffects: false,\n returnType: 'string',\n params: [],\n example: '[\"agent/session-id\"] => \"sess_a3f2k\"',\n },\n\n // ==========================================================================\n // Memory (Effects)\n // ==========================================================================\n 'agent/memorize': {\n module: 'agent',\n category: 'std-agent',\n minArity: 2,\n maxArity: 3,\n description: 'Store a new memory. Returns the new memory ID.',\n hasSideEffects: true,\n returnType: 'string',\n params: [\n { name: 'content', type: 'string', description: 'Memory content to store' },\n { name: 'category', type: 'string', description: 'Category: preference, correction, pattern-affinity, entity-template, error-resolution' },\n { name: 'scope', type: 'string', description: 'Scope: global or project', optional: true, defaultValue: 'global' },\n ],\n example: '[\"agent/memorize\", \"user prefers PascalCase\", \"preference\"]',\n },\n 'agent/forget': {\n module: 'agent',\n category: 'std-agent',\n minArity: 1,\n maxArity: 1,\n description: 'Remove a memory by ID.',\n hasSideEffects: true,\n returnType: 'void',\n params: [\n { name: 'id', type: 'string', description: 'Memory record ID to remove' },\n ],\n example: '[\"agent/forget\", \"mem_abc123\"]',\n },\n 'agent/pin': {\n module: 'agent',\n category: 'std-agent',\n minArity: 1,\n maxArity: 1,\n description: 'Pin a memory to prevent decay.',\n hasSideEffects: true,\n returnType: 'void',\n params: [\n { name: 'id', type: 'string', description: 'Memory record ID to pin' },\n ],\n example: '[\"agent/pin\", \"mem_abc123\"]',\n },\n 'agent/reinforce': {\n module: 'agent',\n category: 'std-agent',\n minArity: 1,\n maxArity: 1,\n description: 'Increase a memory\\'s strength (reinforcement learning signal).',\n hasSideEffects: true,\n returnType: 'void',\n params: [\n { name: 'id', type: 'string', description: 'Memory record ID to reinforce' },\n ],\n example: '[\"agent/reinforce\", \"mem_abc123\"]',\n },\n 'agent/decay': {\n module: 'agent',\n category: 'std-agent',\n minArity: 0,\n maxArity: 0,\n description: 'Apply strength decay to all unpinned memories. Returns count of forgotten memories.',\n hasSideEffects: true,\n returnType: 'number',\n params: [],\n example: '[\"agent/decay\"] => 15',\n },\n\n // ==========================================================================\n // LLM (Effects)\n // ==========================================================================\n 'agent/generate': {\n module: 'agent',\n category: 'std-agent',\n minArity: 1,\n maxArity: 2,\n description: 'Generate text from the LLM. Returns generated string.',\n hasSideEffects: true,\n returnType: 'string',\n params: [\n { name: 'prompt', type: 'string', description: 'Prompt text to send to LLM' },\n { name: 'options', type: 'object', description: 'Options: { provider?, model?, maxTokens? }', optional: true },\n ],\n example: '[\"agent/generate\", \"Summarize the user request\"]',\n },\n 'agent/switch-provider': {\n module: 'agent',\n category: 'std-agent',\n minArity: 1,\n maxArity: 2,\n description: 'Switch the active LLM provider and optionally the model.',\n hasSideEffects: true,\n returnType: 'void',\n params: [\n { name: 'provider', type: 'string', description: 'Provider name (e.g., \"deepseek\", \"openai\", \"anthropic\")' },\n { name: 'model', type: 'string', description: 'Model name override', optional: true },\n ],\n example: '[\"agent/switch-provider\", \"openai\", \"gpt-4o\"]',\n },\n\n // ==========================================================================\n // Tools (Effects)\n // ==========================================================================\n 'agent/invoke': {\n module: 'agent',\n category: 'std-agent',\n minArity: 2,\n maxArity: 2,\n description: 'Invoke a tool by name with arguments. Returns tool result.',\n hasSideEffects: true,\n returnType: 'any',\n params: [\n { name: 'toolName', type: 'string', description: 'Name of the tool to invoke' },\n { name: 'args', type: 'object', description: 'Arguments to pass to the tool' },\n ],\n example: '[\"agent/invoke\", \"validate-schema\", {\"schema\": \"@entity\"}]',\n },\n\n // ==========================================================================\n // Context (Effects)\n // ==========================================================================\n 'agent/compact': {\n module: 'agent',\n category: 'std-agent',\n minArity: 0,\n maxArity: 1,\n description: 'Compact the context window. Returns { before, after, strategy, summary? }.',\n hasSideEffects: true,\n returnType: 'object',\n params: [\n { name: 'strategy', type: 'string', description: 'Strategy: hybrid, summarize, truncate, extract', optional: true, defaultValue: 'hybrid' },\n ],\n example: '[\"agent/compact\", \"summarize\"] => {before: 50000, after: 12000, ...}',\n },\n\n // ==========================================================================\n // Session (Effects)\n // ==========================================================================\n 'agent/fork': {\n module: 'agent',\n category: 'std-agent',\n minArity: 0,\n maxArity: 1,\n description: 'Fork the current session. Returns new session ID.',\n hasSideEffects: true,\n returnType: 'string',\n params: [\n { name: 'label', type: 'string', description: 'Optional label for the fork point', optional: true },\n ],\n example: '[\"agent/fork\", \"before-refactor\"] => \"sess_fork_x7k2m\"',\n },\n 'agent/label': {\n module: 'agent',\n category: 'std-agent',\n minArity: 1,\n maxArity: 1,\n description: 'Label the current session checkpoint for later reference.',\n hasSideEffects: true,\n returnType: 'void',\n params: [\n { name: 'text', type: 'string', description: 'Label text for the checkpoint' },\n ],\n example: '[\"agent/label\", \"schema-v2-complete\"]',\n },\n\n // ==========================================================================\n // Search (Effects)\n // ==========================================================================\n 'agent/search-code': {\n module: 'agent',\n category: 'std-agent',\n minArity: 1,\n maxArity: 2,\n description: 'Search code repositories. Returns array of { repo, path, url }.',\n hasSideEffects: true,\n returnType: 'array',\n params: [\n { name: 'query', type: 'string', description: 'Code search query' },\n { name: 'language', type: 'string', description: 'Programming language filter', optional: true },\n ],\n example: '[\"agent/search-code\", \"orbital schema validation\", \"typescript\"]',\n },\n};\n\n/**\n * Get all agent operator names.\n */\nexport function getAgentOperators(): string[] {\n return Object.keys(AGENT_OPERATORS);\n}\n"]}
|
package/dist/modules/array.d.ts
CHANGED
package/dist/modules/async.d.ts
CHANGED
package/dist/modules/data.d.ts
CHANGED
package/dist/modules/format.d.ts
CHANGED
package/dist/modules/graph.d.ts
CHANGED
package/dist/modules/index.d.ts
CHANGED
|
@@ -14,4 +14,5 @@ export { CONTRACT_OPERATORS, getContractOperators } from './contract.js';
|
|
|
14
14
|
export { DATA_OPERATORS, getDataOperators } from './data.js';
|
|
15
15
|
export { PROB_OPERATORS, getProbOperators } from './prob.js';
|
|
16
16
|
export { OS_OPERATORS } from './os.js';
|
|
17
|
-
|
|
17
|
+
export { AGENT_OPERATORS, getAgentOperators } from './agent.js';
|
|
18
|
+
import '../types-BjP5nVQd.js';
|