@nxuss/lemma 1.18.1 → 1.18.2

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.
Files changed (53) hide show
  1. package/dist/cjs/mcp/tools/context-tools.d.ts.map +1 -1
  2. package/dist/cjs/mcp/tools/context-tools.js +11 -2
  3. package/dist/cjs/mcp/tools/context-tools.js.map +1 -1
  4. package/dist/cjs/mcp/tools/squeeze-cache.d.ts.map +1 -1
  5. package/dist/cjs/mcp/tools/squeeze-cache.js +2 -0
  6. package/dist/cjs/mcp/tools/squeeze-cache.js.map +1 -1
  7. package/dist/cjs/mcp/tools/workspace.d.ts.map +1 -1
  8. package/dist/cjs/mcp/tools/workspace.js +13 -1
  9. package/dist/cjs/mcp/tools/workspace.js.map +1 -1
  10. package/dist/cjs/mcp/tools.js +10 -0
  11. package/dist/cjs/mcp/tools.js.map +1 -1
  12. package/dist/cjs/mcp/utils.d.ts +22 -2
  13. package/dist/cjs/mcp/utils.d.ts.map +1 -1
  14. package/dist/cjs/mcp/utils.js +98 -10
  15. package/dist/cjs/mcp/utils.js.map +1 -1
  16. package/dist/cjs/utils/ExecAuditLog.d.ts +27 -0
  17. package/dist/cjs/utils/ExecAuditLog.d.ts.map +1 -0
  18. package/dist/cjs/utils/ExecAuditLog.js +53 -0
  19. package/dist/cjs/utils/ExecAuditLog.js.map +1 -0
  20. package/dist/esm/mcp/tools/context-tools.d.ts.map +1 -1
  21. package/dist/esm/mcp/tools/context-tools.js +11 -2
  22. package/dist/esm/mcp/tools/context-tools.js.map +1 -1
  23. package/dist/esm/mcp/tools/squeeze-cache.d.ts.map +1 -1
  24. package/dist/esm/mcp/tools/squeeze-cache.js +3 -1
  25. package/dist/esm/mcp/tools/squeeze-cache.js.map +1 -1
  26. package/dist/esm/mcp/tools/workspace.d.ts.map +1 -1
  27. package/dist/esm/mcp/tools/workspace.js +13 -1
  28. package/dist/esm/mcp/tools/workspace.js.map +1 -1
  29. package/dist/esm/mcp/tools.js +11 -1
  30. package/dist/esm/mcp/tools.js.map +1 -1
  31. package/dist/esm/mcp/utils.d.ts +22 -2
  32. package/dist/esm/mcp/utils.d.ts.map +1 -1
  33. package/dist/esm/mcp/utils.js +97 -10
  34. package/dist/esm/mcp/utils.js.map +1 -1
  35. package/dist/esm/utils/ExecAuditLog.d.ts +27 -0
  36. package/dist/esm/utils/ExecAuditLog.d.ts.map +1 -0
  37. package/dist/esm/utils/ExecAuditLog.js +45 -0
  38. package/dist/esm/utils/ExecAuditLog.js.map +1 -0
  39. package/package.json +3 -1
  40. package/sdks/crewai/dist/crewai/src/index.d.ts +131 -0
  41. package/sdks/crewai/dist/crewai/src/index.js +325 -0
  42. package/sdks/crewai/dist/crewai/src/memory.d.ts +36 -0
  43. package/sdks/crewai/dist/crewai/src/memory.js +61 -0
  44. package/sdks/crewai/dist/ts/src/client.d.ts +39 -0
  45. package/sdks/crewai/dist/ts/src/client.js +124 -0
  46. package/sdks/crewai/dist/ts/src/errors.d.ts +19 -0
  47. package/sdks/crewai/dist/ts/src/errors.js +18 -0
  48. package/sdks/crewai/dist/ts/src/evidence.d.ts +30 -0
  49. package/sdks/crewai/dist/ts/src/evidence.js +175 -0
  50. package/sdks/crewai/dist/ts/src/index.d.ts +4 -0
  51. package/sdks/crewai/dist/ts/src/index.js +27 -0
  52. package/sdks/crewai/dist/ts/src/types.d.ts +112 -0
  53. package/sdks/crewai/dist/ts/src/types.js +11 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxuss/lemma",
3
- "version": "1.18.1",
3
+ "version": "1.18.2",
4
4
  "description": "Intelligent AI Gateway for IDEs & Agents — Semantic cache, Privacy Firewall, Infrastructure Command Center, and Autonomous Cost-Optimization.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",
@@ -179,6 +179,7 @@
179
179
  "express": "^4.18.2",
180
180
  "openai": "^6.37.0",
181
181
  "pg": "^8.11.0",
182
+ "shell-quote": "^1.10.0",
182
183
  "socket.io": "^4.7.2",
183
184
  "typescript": "^5.3.3",
184
185
  "uuid": "^14.0.0"
@@ -195,6 +196,7 @@
195
196
  "@types/jest": "^29.5.11",
196
197
  "@types/node": "^20.11.0",
197
198
  "@types/pg": "^8.20.0",
199
+ "@types/shell-quote": "^1.7.5",
198
200
  "@types/uuid": "^10.0.0",
199
201
  "@types/ws": "^8.5.10",
200
202
  "jest": "^29.7.0",
@@ -0,0 +1,131 @@
1
+ /**
2
+ * Lemma Crew Configuration
3
+ */
4
+ export interface LemmaCrewConfig {
5
+ /** WebSocket URL of the Lemma router */
6
+ routerUrl: string;
7
+ /** Agent ID */
8
+ agentId: string;
9
+ /** Agent role (CrewAI concept) */
10
+ role: string;
11
+ /** Agent goal */
12
+ goal: string;
13
+ /** Agent backstory */
14
+ backstory?: string;
15
+ /** Capabilities this agent provides */
16
+ capabilities?: string[];
17
+ /** Enable verbose logging */
18
+ verbose?: boolean;
19
+ /** Allow task delegation */
20
+ allowDelegation?: boolean;
21
+ }
22
+ /**
23
+ * Task execution request
24
+ */
25
+ export interface TaskRequest {
26
+ description: string;
27
+ expectedOutput?: string;
28
+ context?: any;
29
+ allowDelegation?: boolean;
30
+ }
31
+ /**
32
+ * Task execution result
33
+ */
34
+ export interface TaskResult {
35
+ success: boolean;
36
+ output?: string;
37
+ error?: string;
38
+ executionTime: number;
39
+ cached?: boolean;
40
+ similarity?: number;
41
+ }
42
+ /**
43
+ * CrewAI Agent integrated with Lemma Router
44
+ */
45
+ export declare class LemmaCrewAgent {
46
+ private ws;
47
+ private config;
48
+ private connected;
49
+ private pendingTasks;
50
+ constructor(config: LemmaCrewConfig);
51
+ /**
52
+ * Connect to Lemma router
53
+ */
54
+ connect(): Promise<void>;
55
+ /**
56
+ * Disconnect from router
57
+ */
58
+ disconnect(): void;
59
+ /**
60
+ * Execute a task
61
+ */
62
+ execute(task: TaskRequest): Promise<TaskResult>;
63
+ /**
64
+ * Handle incoming message from router
65
+ */
66
+ private handleMessage;
67
+ /**
68
+ * Handle task assignment from router
69
+ */
70
+ private handleTaskAssign;
71
+ /**
72
+ * Handle task response from router
73
+ */
74
+ private handleTaskResponse;
75
+ /**
76
+ * Perform task (override in subclasses)
77
+ */
78
+ protected performTask(description: string, parameters: any): Promise<string>;
79
+ /**
80
+ * Send message to router
81
+ */
82
+ private send;
83
+ /**
84
+ * Log message if verbose
85
+ */
86
+ private log;
87
+ /**
88
+ * Get agent info
89
+ */
90
+ getInfo(): {
91
+ agentId: string;
92
+ role: string;
93
+ goal: string;
94
+ backstory: string;
95
+ capabilities: string[];
96
+ };
97
+ }
98
+ /**
99
+ * Lemma Crew - Multi-agent orchestration
100
+ */
101
+ export interface LemmaCrewOptions {
102
+ routerUrl: string;
103
+ agents: Omit<LemmaCrewConfig, 'routerUrl'>[];
104
+ verbose?: boolean;
105
+ }
106
+ export declare class LemmaCrew {
107
+ private agents;
108
+ private config;
109
+ constructor(config: LemmaCrewOptions);
110
+ /**
111
+ * Connect all agents
112
+ */
113
+ connect(): Promise<void>;
114
+ /**
115
+ * Disconnect all agents
116
+ */
117
+ disconnect(): void;
118
+ /**
119
+ * Execute a multi-agent workflow
120
+ */
121
+ kickoff(options: {
122
+ task: string;
123
+ process?: 'sequential' | 'hierarchical';
124
+ }): Promise<any>;
125
+ /**
126
+ * Get all agents
127
+ */
128
+ getAgents(): LemmaCrewAgent[];
129
+ }
130
+ export default LemmaCrewAgent;
131
+ export * from './memory';
@@ -0,0 +1,325 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ var __importDefault = (this && this.__importDefault) || function (mod) {
17
+ return (mod && mod.__esModule) ? mod : { "default": mod };
18
+ };
19
+ Object.defineProperty(exports, "__esModule", { value: true });
20
+ exports.LemmaCrew = exports.LemmaCrewAgent = void 0;
21
+ const ws_1 = __importDefault(require("ws"));
22
+ const uuid_1 = require("uuid");
23
+ /**
24
+ * CrewAI Agent integrated with Lemma Router
25
+ */
26
+ class LemmaCrewAgent {
27
+ constructor(config) {
28
+ this.ws = null;
29
+ this.connected = false;
30
+ this.pendingTasks = new Map();
31
+ this.config = {
32
+ routerUrl: config.routerUrl,
33
+ agentId: config.agentId,
34
+ role: config.role,
35
+ goal: config.goal,
36
+ backstory: config.backstory || '',
37
+ capabilities: config.capabilities || ['crewai'],
38
+ verbose: config.verbose || false,
39
+ allowDelegation: config.allowDelegation !== false,
40
+ };
41
+ }
42
+ /**
43
+ * Connect to Lemma router
44
+ */
45
+ async connect() {
46
+ return new Promise((resolve, reject) => {
47
+ this.ws = new ws_1.default(this.config.routerUrl);
48
+ this.ws.on('open', () => {
49
+ this.log('Connected to Lemma router');
50
+ // Send handshake
51
+ this.send({
52
+ type: 'HANDSHAKE',
53
+ messageId: (0, uuid_1.v4)(),
54
+ timestamp: Date.now(),
55
+ payload: {
56
+ agentId: this.config.agentId,
57
+ agentName: `${this.config.role} (CrewAI)`,
58
+ version: '1.0.0',
59
+ capabilities: this.config.capabilities.map(name => ({
60
+ name,
61
+ version: '1.0.0',
62
+ })),
63
+ metadata: {
64
+ role: this.config.role,
65
+ goal: this.config.goal,
66
+ backstory: this.config.backstory,
67
+ framework: 'crewai',
68
+ },
69
+ },
70
+ });
71
+ });
72
+ this.ws.on('message', (data) => {
73
+ try {
74
+ const message = JSON.parse(data.toString());
75
+ this.handleMessage(message);
76
+ if (message.type === 'HANDSHAKE_ACK') {
77
+ this.connected = true;
78
+ this.log('Handshake acknowledged');
79
+ resolve();
80
+ }
81
+ }
82
+ catch (error) {
83
+ console.error('Error parsing message:', error);
84
+ }
85
+ });
86
+ this.ws.on('error', (error) => {
87
+ console.error('WebSocket error:', error);
88
+ if (!this.connected) {
89
+ reject(error);
90
+ }
91
+ });
92
+ this.ws.on('close', () => {
93
+ this.connected = false;
94
+ this.log('Disconnected from router');
95
+ });
96
+ // Connection timeout
97
+ setTimeout(() => {
98
+ if (!this.connected) {
99
+ reject(new Error('Connection timeout'));
100
+ }
101
+ }, 10000);
102
+ });
103
+ }
104
+ /**
105
+ * Disconnect from router
106
+ */
107
+ disconnect() {
108
+ if (this.ws) {
109
+ this.ws.close();
110
+ this.ws = null;
111
+ this.connected = false;
112
+ }
113
+ }
114
+ /**
115
+ * Execute a task
116
+ */
117
+ async execute(task) {
118
+ if (!this.connected) {
119
+ throw new Error('Not connected to router. Call connect() first.');
120
+ }
121
+ const taskId = (0, uuid_1.v4)();
122
+ this.log(`Executing task: ${task.description}`);
123
+ return new Promise((resolve, reject) => {
124
+ this.pendingTasks.set(taskId, { resolve, reject });
125
+ // Send task request to router
126
+ this.send({
127
+ type: 'TASK_REQUEST',
128
+ messageId: (0, uuid_1.v4)(),
129
+ timestamp: Date.now(),
130
+ payload: {
131
+ taskId,
132
+ description: task.description,
133
+ requiredCapabilities: this.config.capabilities,
134
+ parameters: {
135
+ expectedOutput: task.expectedOutput,
136
+ context: task.context,
137
+ allowDelegation: task.allowDelegation ?? this.config.allowDelegation,
138
+ },
139
+ },
140
+ });
141
+ });
142
+ }
143
+ /**
144
+ * Handle incoming message from router
145
+ */
146
+ handleMessage(message) {
147
+ switch (message.type) {
148
+ case 'TASK_ASSIGN':
149
+ this.handleTaskAssign(message);
150
+ break;
151
+ case 'TASK_RESPONSE':
152
+ this.handleTaskResponse(message);
153
+ break;
154
+ case 'PING':
155
+ this.send({
156
+ type: 'PONG',
157
+ messageId: (0, uuid_1.v4)(),
158
+ timestamp: Date.now(),
159
+ payload: {
160
+ originalMessageId: message.messageId,
161
+ },
162
+ });
163
+ break;
164
+ }
165
+ }
166
+ /**
167
+ * Handle task assignment from router
168
+ */
169
+ async handleTaskAssign(message) {
170
+ const { taskId, description, parameters } = message.payload;
171
+ const startTime = Date.now();
172
+ this.log(`Received task assignment: ${description}`);
173
+ try {
174
+ // Execute the task (override this method in subclasses)
175
+ const output = await this.performTask(description, parameters);
176
+ // Send response back to router
177
+ this.send({
178
+ type: 'TASK_RESPONSE',
179
+ messageId: (0, uuid_1.v4)(),
180
+ timestamp: Date.now(),
181
+ payload: {
182
+ taskId,
183
+ success: true,
184
+ result: output,
185
+ executionTime: Date.now() - startTime,
186
+ taskDescription: description,
187
+ },
188
+ });
189
+ }
190
+ catch (error) {
191
+ this.send({
192
+ type: 'TASK_RESPONSE',
193
+ messageId: (0, uuid_1.v4)(),
194
+ timestamp: Date.now(),
195
+ payload: {
196
+ taskId,
197
+ success: false,
198
+ error: error instanceof Error ? error.message : 'Unknown error',
199
+ executionTime: Date.now() - startTime,
200
+ },
201
+ });
202
+ }
203
+ }
204
+ /**
205
+ * Handle task response from router
206
+ */
207
+ handleTaskResponse(message) {
208
+ const { taskId, success, result, error, executionTime, cached, similarity } = message.payload;
209
+ const pending = this.pendingTasks.get(taskId);
210
+ if (!pending) {
211
+ return;
212
+ }
213
+ this.pendingTasks.delete(taskId);
214
+ if (success) {
215
+ this.log(`Task completed in ${executionTime}ms${cached ? ' (cached)' : ''}`);
216
+ pending.resolve({
217
+ success: true,
218
+ output: result,
219
+ executionTime,
220
+ cached,
221
+ similarity,
222
+ });
223
+ }
224
+ else {
225
+ pending.reject(new Error(error || 'Task failed'));
226
+ }
227
+ }
228
+ /**
229
+ * Perform task (override in subclasses)
230
+ */
231
+ async performTask(description, parameters) {
232
+ // Default implementation - subclasses should override
233
+ return `Task completed: ${description}`;
234
+ }
235
+ /**
236
+ * Send message to router
237
+ */
238
+ send(message) {
239
+ if (!this.ws || !this.connected) {
240
+ throw new Error('Not connected to router');
241
+ }
242
+ this.ws.send(JSON.stringify(message));
243
+ }
244
+ /**
245
+ * Log message if verbose
246
+ */
247
+ log(message) {
248
+ if (this.config.verbose) {
249
+ console.log(`[${this.config.role}] ${message}`);
250
+ }
251
+ }
252
+ /**
253
+ * Get agent info
254
+ */
255
+ getInfo() {
256
+ return {
257
+ agentId: this.config.agentId,
258
+ role: this.config.role,
259
+ goal: this.config.goal,
260
+ backstory: this.config.backstory,
261
+ capabilities: this.config.capabilities,
262
+ };
263
+ }
264
+ }
265
+ exports.LemmaCrewAgent = LemmaCrewAgent;
266
+ class LemmaCrew {
267
+ constructor(config) {
268
+ this.agents = [];
269
+ this.config = config;
270
+ // Create agents
271
+ this.agents = config.agents.map(agentConfig => new LemmaCrewAgent({
272
+ ...agentConfig,
273
+ routerUrl: config.routerUrl,
274
+ verbose: config.verbose,
275
+ }));
276
+ }
277
+ /**
278
+ * Connect all agents
279
+ */
280
+ async connect() {
281
+ await Promise.all(this.agents.map(agent => agent.connect()));
282
+ }
283
+ /**
284
+ * Disconnect all agents
285
+ */
286
+ disconnect() {
287
+ this.agents.forEach(agent => agent.disconnect());
288
+ }
289
+ /**
290
+ * Execute a multi-agent workflow
291
+ */
292
+ async kickoff(options) {
293
+ const { task, process = 'sequential' } = options;
294
+ if (process === 'sequential') {
295
+ // Execute tasks sequentially through agents
296
+ let result = task;
297
+ for (const agent of this.agents) {
298
+ const taskResult = await agent.execute({
299
+ description: result,
300
+ });
301
+ result = taskResult.output || result;
302
+ }
303
+ return result;
304
+ }
305
+ else {
306
+ // Hierarchical - first agent coordinates others
307
+ const manager = this.agents[0];
308
+ return await manager.execute({
309
+ description: task,
310
+ allowDelegation: true,
311
+ });
312
+ }
313
+ }
314
+ /**
315
+ * Get all agents
316
+ */
317
+ getAgents() {
318
+ return this.agents;
319
+ }
320
+ }
321
+ exports.LemmaCrew = LemmaCrew;
322
+ exports.default = LemmaCrewAgent;
323
+ // Lemma /v2 Verifiable Memory API — a separate surface from LemmaCrewAgent
324
+ // above (that talks to the WebSocket orchestration router). See memory.ts.
325
+ __exportStar(require("./memory"), exports);
@@ -0,0 +1,36 @@
1
+ import type { LemmaClientOptions } from '../../ts/src/index';
2
+ import type { MemoryState, VerifiedResult } from '../../ts/src/types';
3
+ export interface LemmaMemoryToolConfig extends Omit<LemmaClientOptions, 'apiKey'> {
4
+ apiKey: string;
5
+ rootDir?: string;
6
+ }
7
+ export interface LemmaMemoryRecallResult {
8
+ state: MemoryState;
9
+ staleFiles?: string[];
10
+ results: VerifiedResult[];
11
+ }
12
+ export type LemmaMemoryToolInput = {
13
+ action: 'remember';
14
+ text: string;
15
+ filePaths?: string[];
16
+ } | {
17
+ action: 'recall';
18
+ query: string;
19
+ filePaths?: string[];
20
+ };
21
+ /**
22
+ * A CrewAI-style tool: `name`, `description`, and an async `func` an agent
23
+ * calls directly. `func` never collapses the result to a string — a
24
+ * `'recall'` call returns `{ state, staleFiles, results }`, so the crew can
25
+ * branch on `state === 'stale'` instead of parsing prose.
26
+ */
27
+ export declare class LemmaMemoryTool {
28
+ readonly name = "lemma_memory";
29
+ readonly description: string;
30
+ private readonly client;
31
+ private readonly rootDir;
32
+ constructor(config: LemmaMemoryToolConfig);
33
+ func(input: LemmaMemoryToolInput): Promise<{
34
+ id: string;
35
+ } | LemmaMemoryRecallResult>;
36
+ }
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LemmaMemoryTool = void 0;
4
+ /**
5
+ * Lemma memory tool for CrewAI (Lane H).
6
+ *
7
+ * Separate surface from `LemmaCrewConfig`/task-execution code in `index.ts`
8
+ * (that talks to the WebSocket orchestration router, an unrelated pre-existing
9
+ * product surface) — this wraps the `/v2` Verifiable Memory API on top of
10
+ * `@nxuss/lemma-sdk`. Shaped as a CrewAI-style tool: `name` + `description`
11
+ * + an async `func`, the calling convention CrewAI tools use so an agent can
12
+ * invoke it directly — and, per the plan, `func('recall', ...)` returns
13
+ * `state` as a first-class field, never hidden behind prose the agent has to
14
+ * re-interpret.
15
+ */
16
+ const index_1 = require("../../ts/src/index");
17
+ const STATE_SEVERITY = {
18
+ contradicted: 3,
19
+ stale: 2,
20
+ unverified: 1,
21
+ fresh: 0,
22
+ };
23
+ function worstState(results) {
24
+ if (results.length === 0)
25
+ return 'unverified';
26
+ return results.reduce((worst, r) => (STATE_SEVERITY[r.state] > STATE_SEVERITY[worst] ? r.state : worst), 'fresh');
27
+ }
28
+ /**
29
+ * A CrewAI-style tool: `name`, `description`, and an async `func` an agent
30
+ * calls directly. `func` never collapses the result to a string — a
31
+ * `'recall'` call returns `{ state, staleFiles, results }`, so the crew can
32
+ * branch on `state === 'stale'` instead of parsing prose.
33
+ */
34
+ class LemmaMemoryTool {
35
+ constructor(config) {
36
+ this.name = 'lemma_memory';
37
+ this.description = 'Store and recall verifiable memories about this codebase. Every recall returns a `state` ' +
38
+ '(fresh/stale/unverified/contradicted) proven against the current code — never a guess.';
39
+ const { rootDir, ...clientOptions } = config;
40
+ this.client = new index_1.LemmaClient(clientOptions);
41
+ this.rootDir = rootDir ?? process.cwd();
42
+ }
43
+ async func(input) {
44
+ if (input.action === 'remember') {
45
+ const evidence = (0, index_1.collectEvidence)({ rootDir: this.rootDir, files: input.filePaths ?? [] });
46
+ const res = await this.client.remember({
47
+ claims: [{ text: input.text, filePaths: input.filePaths }],
48
+ evidence,
49
+ });
50
+ return { id: res.id };
51
+ }
52
+ const evidence = (0, index_1.collectEvidence)({ rootDir: this.rootDir, files: input.filePaths ?? [] });
53
+ const res = await this.client.recall({ query: input.query, currentEvidence: evidence });
54
+ return {
55
+ state: worstState(res.results),
56
+ staleFiles: res.results.flatMap((r) => r.staleFiles ?? []),
57
+ results: res.results,
58
+ };
59
+ }
60
+ }
61
+ exports.LemmaMemoryTool = LemmaMemoryTool;
@@ -0,0 +1,39 @@
1
+ import type { CreateMemoryRequest, CreateMemoryResponse, RecallRequest, RecallResponse, VerifyRequest, VerifyResponse, ForgetResponse, ScrubRequest, ScrubResponse, UsageResponse } from './types';
2
+ export interface LemmaClientOptions {
3
+ apiKey: string;
4
+ /** Defaults to the production /v2 base URL. Point at a local server in dev. */
5
+ baseUrl?: string;
6
+ /** Per-request timeout. Defaults to 10s. */
7
+ timeoutMs?: number;
8
+ /** Retries for 429 (honoring Retry-After) and transient network/5xx failures. Defaults to 3. */
9
+ maxRetries?: number;
10
+ /** Injectable for tests; defaults to the global fetch. */
11
+ fetchImpl?: typeof fetch;
12
+ /** Injectable for tests; avoids real sleeps in the backoff test. */
13
+ sleep?: (ms: number) => Promise<void>;
14
+ }
15
+ export declare class LemmaClient {
16
+ private readonly apiKey;
17
+ private readonly baseUrl;
18
+ private readonly timeoutMs;
19
+ private readonly maxRetries;
20
+ private readonly fetchImpl;
21
+ private readonly sleep;
22
+ constructor(options: LemmaClientOptions);
23
+ /** Store a memory: claims + the evidence they're grounded in (see `collectEvidence`). */
24
+ remember(request: CreateMemoryRequest): Promise<CreateMemoryResponse>;
25
+ /** Search; every result comes back with a verified `state`, never a guess. */
26
+ recall(request: RecallRequest): Promise<RecallResponse>;
27
+ /** Batch-resolve freshness for known ids without a search round-trip. */
28
+ verify(request: VerifyRequest): Promise<VerifyResponse>;
29
+ /** Permanently forget a memory, scoped to your tenant. */
30
+ forget(id: string): Promise<ForgetResponse>;
31
+ /** Stateless secret-scrubbing pass over text or a serialized tool-call. */
32
+ scrub(request: ScrubRequest): Promise<ScrubResponse>;
33
+ /** Real, counted usage for your tenant — never an estimate. */
34
+ usage(): Promise<UsageResponse>;
35
+ /** Masked — never prints the raw key, including via `console.log`. */
36
+ toString(): string;
37
+ private request;
38
+ }
39
+ export default LemmaClient;