network-ai 3.0.3 → 3.1.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.
- package/README.md +34 -15
- package/SKILL.md +10 -3
- package/dist/adapters/adapter-registry.d.ts +21 -0
- package/dist/adapters/adapter-registry.d.ts.map +1 -1
- package/dist/adapters/adapter-registry.js +34 -3
- package/dist/adapters/adapter-registry.js.map +1 -1
- package/dist/adapters/base-adapter.d.ts.map +1 -1
- package/dist/adapters/base-adapter.js +2 -1
- package/dist/adapters/base-adapter.js.map +1 -1
- package/dist/index.d.ts +243 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +297 -10
- package/dist/index.js.map +1 -1
- package/dist/lib/errors.d.ts +97 -0
- package/dist/lib/errors.d.ts.map +1 -0
- package/dist/lib/errors.js +163 -0
- package/dist/lib/errors.js.map +1 -0
- package/dist/lib/locked-blackboard.d.ts +18 -2
- package/dist/lib/locked-blackboard.d.ts.map +1 -1
- package/dist/lib/locked-blackboard.js +75 -15
- package/dist/lib/locked-blackboard.js.map +1 -1
- package/dist/lib/logger.d.ts +102 -0
- package/dist/lib/logger.d.ts.map +1 -0
- package/dist/lib/logger.js +150 -0
- package/dist/lib/logger.js.map +1 -0
- package/dist/lib/swarm-utils.d.ts.map +1 -1
- package/dist/lib/swarm-utils.js +3 -1
- package/dist/lib/swarm-utils.js.map +1 -1
- package/dist/security.d.ts +100 -0
- package/dist/security.d.ts.map +1 -1
- package/dist/security.js +100 -0
- package/dist/security.js.map +1 -1
- package/package.json +1 -1
- package/scripts/blackboard.py +40 -7
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* task decomposition, permission management, and shared blackboard coordination.
|
|
6
6
|
*
|
|
7
7
|
* @module SwarmOrchestrator
|
|
8
|
-
* @version 3.
|
|
8
|
+
* @version 3.1.0
|
|
9
9
|
* @license MIT
|
|
10
10
|
*/
|
|
11
11
|
import { AdapterRegistry } from './adapters/adapter-registry';
|
|
@@ -17,59 +17,129 @@ type OpenClawSkill = {
|
|
|
17
17
|
version: string;
|
|
18
18
|
execute(action: string, params: Record<string, unknown>, context: SkillContext): Promise<SkillResult>;
|
|
19
19
|
};
|
|
20
|
+
/**
|
|
21
|
+
* Execution context passed to every skill invocation.
|
|
22
|
+
* Identifies the calling agent and associates the call with a task/session.
|
|
23
|
+
*/
|
|
20
24
|
interface SkillContext {
|
|
25
|
+
/** The agent initiating the request */
|
|
21
26
|
agentId: string;
|
|
27
|
+
/** Unique task identifier (optional) */
|
|
22
28
|
taskId?: string;
|
|
29
|
+
/** Session identifier for multi-turn interactions */
|
|
23
30
|
sessionId?: string;
|
|
31
|
+
/** Arbitrary metadata from the host system */
|
|
24
32
|
metadata?: Record<string, unknown>;
|
|
25
33
|
}
|
|
34
|
+
/**
|
|
35
|
+
* Unified result shape returned by every skill action.
|
|
36
|
+
* Includes structured error information with recovery hints.
|
|
37
|
+
*/
|
|
26
38
|
interface SkillResult {
|
|
39
|
+
/** Whether the action completed successfully */
|
|
27
40
|
success: boolean;
|
|
41
|
+
/** Result data (shape varies by action) */
|
|
28
42
|
data?: unknown;
|
|
43
|
+
/** Structured error when `success` is false */
|
|
29
44
|
error?: {
|
|
45
|
+
/** Machine-readable error code (e.g., `'AUTH_DENIED'`, `'GATEWAY_DENIED'`) */
|
|
30
46
|
code: string;
|
|
47
|
+
/** Human-readable error description */
|
|
31
48
|
message: string;
|
|
49
|
+
/** Whether the caller can retry or adjust and succeed */
|
|
32
50
|
recoverable: boolean;
|
|
51
|
+
/** Suggested remediation step */
|
|
33
52
|
suggestedAction?: string;
|
|
53
|
+
/** Trace metadata for debugging */
|
|
34
54
|
trace?: Record<string, unknown>;
|
|
35
55
|
};
|
|
36
56
|
}
|
|
57
|
+
/**
|
|
58
|
+
* A task to be delegated to an agent.
|
|
59
|
+
*
|
|
60
|
+
* @example
|
|
61
|
+
* ```typescript
|
|
62
|
+
* const payload: TaskPayload = {
|
|
63
|
+
* instruction: 'Analyze Q4 revenue trends',
|
|
64
|
+
* context: { department: 'finance' },
|
|
65
|
+
* constraints: ['read_only', 'no_pii'],
|
|
66
|
+
* expectedOutput: 'JSON summary with top-line metrics',
|
|
67
|
+
* };
|
|
68
|
+
* ```
|
|
69
|
+
*/
|
|
37
70
|
interface TaskPayload {
|
|
71
|
+
/** Natural-language instruction for the agent */
|
|
38
72
|
instruction: string;
|
|
73
|
+
/** Additional context data relevant to the task */
|
|
39
74
|
context?: Record<string, unknown>;
|
|
75
|
+
/** Restrictions or guardrails the agent must respect */
|
|
40
76
|
constraints?: string[];
|
|
77
|
+
/** Description of the expected output format */
|
|
41
78
|
expectedOutput?: string;
|
|
42
79
|
}
|
|
80
|
+
/**
|
|
81
|
+
* Internal message structure for agent-to-agent task handoffs.
|
|
82
|
+
* The orchestrator creates these when delegating work between agents.
|
|
83
|
+
*/
|
|
43
84
|
interface HandoffMessage {
|
|
85
|
+
/** Unique handoff identifier */
|
|
44
86
|
handoffId: string;
|
|
87
|
+
/** Agent initiating the handoff */
|
|
45
88
|
sourceAgent: string;
|
|
89
|
+
/** Agent receiving the task */
|
|
46
90
|
targetAgent: string;
|
|
91
|
+
/** How the target agent should process the task */
|
|
47
92
|
taskType: 'delegate' | 'collaborate' | 'validate';
|
|
93
|
+
/** The task to execute */
|
|
48
94
|
payload: TaskPayload;
|
|
95
|
+
/** Scheduling and priority metadata */
|
|
49
96
|
metadata: {
|
|
97
|
+
/** Priority level (0=low, 3=critical) */
|
|
50
98
|
priority: number;
|
|
99
|
+
/** Unix timestamp deadline */
|
|
51
100
|
deadline: number;
|
|
101
|
+
/** Parent task for sub-task tracking */
|
|
52
102
|
parentTaskId: string | null;
|
|
53
103
|
};
|
|
54
104
|
}
|
|
105
|
+
/**
|
|
106
|
+
* Result of a permission request through the AuthGuardian.
|
|
107
|
+
* Contains the grant token (if approved) and any restrictions.
|
|
108
|
+
*/
|
|
55
109
|
interface PermissionGrant {
|
|
110
|
+
/** Whether permission was granted */
|
|
56
111
|
granted: boolean;
|
|
112
|
+
/** Opaque token to present when using the granted resource */
|
|
57
113
|
grantToken: string | null;
|
|
114
|
+
/** ISO 8601 expiration timestamp */
|
|
58
115
|
expiresAt: string | null;
|
|
116
|
+
/** Restrictions applied to this grant (e.g., `'read_only'`, `'max_records:100'`) */
|
|
59
117
|
restrictions: string[];
|
|
118
|
+
/** Human-readable denial reason (when `granted` is false) */
|
|
60
119
|
reason?: string;
|
|
61
120
|
}
|
|
121
|
+
/** Full snapshot of the swarm's runtime state. */
|
|
62
122
|
interface SwarmState {
|
|
123
|
+
/** ISO 8601 timestamp when the snapshot was taken */
|
|
63
124
|
timestamp: string;
|
|
125
|
+
/** All registered agents and their current status */
|
|
64
126
|
activeAgents: AgentStatus[];
|
|
127
|
+
/** Tasks currently pending or in progress */
|
|
65
128
|
pendingTasks: TaskRecord[];
|
|
129
|
+
/** Namespace-scoped blackboard entries visible to the querying agent */
|
|
66
130
|
blackboardSnapshot: Record<string, BlackboardEntry>;
|
|
131
|
+
/** Active permission grants */
|
|
67
132
|
permissionGrants: ActiveGrant[];
|
|
68
133
|
}
|
|
134
|
+
/** Runtime status of a registered agent. */
|
|
69
135
|
interface AgentStatus {
|
|
136
|
+
/** Unique agent identifier */
|
|
70
137
|
agentId: string;
|
|
138
|
+
/** Current operational state */
|
|
71
139
|
status: 'available' | 'busy' | 'waiting_auth' | 'offline';
|
|
140
|
+
/** ID of the task currently being executed, or null */
|
|
72
141
|
currentTask: string | null;
|
|
142
|
+
/** ISO 8601 timestamp of the last heartbeat */
|
|
73
143
|
lastHeartbeat: string;
|
|
74
144
|
}
|
|
75
145
|
interface TaskRecord {
|
|
@@ -79,19 +149,32 @@ interface TaskRecord {
|
|
|
79
149
|
startedAt: string;
|
|
80
150
|
description: string;
|
|
81
151
|
}
|
|
152
|
+
/** A single entry stored on the shared blackboard. */
|
|
82
153
|
interface BlackboardEntry {
|
|
154
|
+
/** Entry key (namespace-prefixed, e.g., `'task:analyze'`) */
|
|
83
155
|
key: string;
|
|
156
|
+
/** Stored value (any serializable data) */
|
|
84
157
|
value: unknown;
|
|
158
|
+
/** Agent that wrote this entry */
|
|
85
159
|
sourceAgent: string;
|
|
160
|
+
/** ISO 8601 timestamp of the write */
|
|
86
161
|
timestamp: string;
|
|
162
|
+
/** Time-to-live in seconds, or null for no expiry */
|
|
87
163
|
ttl: number | null;
|
|
88
164
|
}
|
|
165
|
+
/** An active permission grant held by an agent. */
|
|
89
166
|
interface ActiveGrant {
|
|
167
|
+
/** Opaque grant token */
|
|
90
168
|
grantToken: string;
|
|
169
|
+
/** Resource type this grant covers (e.g., `'FILE_SYSTEM'`, `'DATABASE'`) */
|
|
91
170
|
resourceType: string;
|
|
171
|
+
/** Agent holding the grant */
|
|
92
172
|
agentId: string;
|
|
173
|
+
/** ISO 8601 expiration timestamp */
|
|
93
174
|
expiresAt: string;
|
|
175
|
+
/** Restrictions bound to this grant */
|
|
94
176
|
restrictions: string[];
|
|
177
|
+
/** Optional scope narrowing (e.g., `'read'`, `'staging_only'`) */
|
|
95
178
|
scope?: string;
|
|
96
179
|
}
|
|
97
180
|
/**
|
|
@@ -118,24 +201,42 @@ interface AgentTrustConfig {
|
|
|
118
201
|
/** Resource types this agent can request */
|
|
119
202
|
allowedResources?: string[];
|
|
120
203
|
}
|
|
204
|
+
/** A single task within a parallel execution batch. */
|
|
121
205
|
interface ParallelTask {
|
|
206
|
+
/** Agent type or adapter-prefixed ID to route the task to */
|
|
122
207
|
agentType: string;
|
|
208
|
+
/** The task payload to execute */
|
|
123
209
|
taskPayload: TaskPayload;
|
|
124
210
|
}
|
|
211
|
+
/** Result of a parallel execution batch, including synthesis and metrics. */
|
|
125
212
|
interface ParallelExecutionResult {
|
|
213
|
+
/** Combined result produced by the synthesis strategy */
|
|
126
214
|
synthesizedResult: unknown;
|
|
215
|
+
/** Per-agent results with timing */
|
|
127
216
|
individualResults: Array<{
|
|
128
217
|
agentType: string;
|
|
129
218
|
success: boolean;
|
|
130
219
|
result: unknown;
|
|
220
|
+
/** Wall-clock execution time in milliseconds */
|
|
131
221
|
executionTime: number;
|
|
132
222
|
}>;
|
|
223
|
+
/** Aggregate execution metrics */
|
|
133
224
|
executionMetrics: {
|
|
225
|
+
/** Total wall-clock time in milliseconds */
|
|
134
226
|
totalTime: number;
|
|
227
|
+
/** Fraction of tasks that succeeded (0-1) */
|
|
135
228
|
successRate: number;
|
|
229
|
+
/** Strategy used to combine results */
|
|
136
230
|
synthesisStrategy: string;
|
|
137
231
|
};
|
|
138
232
|
}
|
|
233
|
+
/**
|
|
234
|
+
* Strategy for combining results from parallel agent executions.
|
|
235
|
+
* - `'merge'` — Combine all successful results into one object
|
|
236
|
+
* - `'vote'` — Pick the result with the highest confidence/size
|
|
237
|
+
* - `'chain'` — Use the final result in sequence
|
|
238
|
+
* - `'first-success'` — Return the first successful result
|
|
239
|
+
*/
|
|
139
240
|
type SynthesisStrategy = 'merge' | 'vote' | 'chain' | 'first-success';
|
|
140
241
|
declare const CONFIG: {
|
|
141
242
|
blackboardPath: string;
|
|
@@ -147,6 +248,21 @@ declare const CONFIG: {
|
|
|
147
248
|
auditLogPath: string;
|
|
148
249
|
trustConfigPath: string;
|
|
149
250
|
};
|
|
251
|
+
/**
|
|
252
|
+
* Namespace-scoped, identity-verified shared state for multi-agent coordination.
|
|
253
|
+
*
|
|
254
|
+
* Every write is identity-verified (agent token), namespace-checked,
|
|
255
|
+
* size-validated, input-sanitized, and atomically persisted through
|
|
256
|
+
* {@link LockedBlackboard}.
|
|
257
|
+
*
|
|
258
|
+
* @example
|
|
259
|
+
* ```typescript
|
|
260
|
+
* const bb = new SharedBlackboard('./workspace');
|
|
261
|
+
* bb.registerAgent('analyst', 'secret-token', ['task:', 'analytics:']);
|
|
262
|
+
* bb.write('task:revenue', { q4: 42_000 }, 'analyst', 3600, 'secret-token');
|
|
263
|
+
* const entry = bb.read('task:revenue');
|
|
264
|
+
* ```
|
|
265
|
+
*/
|
|
150
266
|
declare class SharedBlackboard {
|
|
151
267
|
private backend;
|
|
152
268
|
private agentTokens;
|
|
@@ -175,6 +291,13 @@ declare class SharedBlackboard {
|
|
|
175
291
|
* Sanitize a key to prevent markdown injection.
|
|
176
292
|
*/
|
|
177
293
|
private sanitizeKey;
|
|
294
|
+
/**
|
|
295
|
+
* Read an entry from the blackboard by key.
|
|
296
|
+
*
|
|
297
|
+
* @param key - The entry key to look up
|
|
298
|
+
* @returns The entry, or `null` if not found or expired
|
|
299
|
+
* @throws {@link ValidationError} if `key` is not a non-empty string
|
|
300
|
+
*/
|
|
178
301
|
read(key: string): BlackboardEntry | null;
|
|
179
302
|
/**
|
|
180
303
|
* Write to the blackboard with identity verification, namespace checks,
|
|
@@ -188,6 +311,10 @@ declare class SharedBlackboard {
|
|
|
188
311
|
* @param agentToken - Optional verification token for identity check
|
|
189
312
|
*/
|
|
190
313
|
write(key: string, value: unknown, sourceAgent: string, ttl?: number, agentToken?: string): BlackboardEntry;
|
|
314
|
+
/**
|
|
315
|
+
* Check whether a key exists on the blackboard (not expired).
|
|
316
|
+
* @param key - The entry key to check
|
|
317
|
+
*/
|
|
191
318
|
exists(key: string): boolean;
|
|
192
319
|
/**
|
|
193
320
|
* Get a full snapshot of all blackboard entries.
|
|
@@ -203,6 +330,29 @@ declare class SharedBlackboard {
|
|
|
203
330
|
*/
|
|
204
331
|
clear(): void;
|
|
205
332
|
}
|
|
333
|
+
/**
|
|
334
|
+
* Universal permission wall for multi-agent systems.
|
|
335
|
+
*
|
|
336
|
+
* Evaluates permission requests using a weighted formula of justification
|
|
337
|
+
* quality (40%), agent trust level (30%), and risk score (30%).
|
|
338
|
+
* Resource types, risk profiles, trust levels, and restrictions are all
|
|
339
|
+
* configurable — works for coding, finance, DevOps, or any domain.
|
|
340
|
+
*
|
|
341
|
+
* @example
|
|
342
|
+
* ```typescript
|
|
343
|
+
* const guardian = new AuthGuardian({
|
|
344
|
+
* trustLevels: [{ agentId: 'analyst', trustLevel: 0.8 }],
|
|
345
|
+
* resourceProfiles: { CUSTOM_API: { baseRisk: 0.5, defaultRestrictions: ['audit_required'] } },
|
|
346
|
+
* });
|
|
347
|
+
*
|
|
348
|
+
* const grant = await guardian.requestPermission(
|
|
349
|
+
* 'analyst', 'CUSTOM_API', 'Need to fetch Q4 revenue data for report', 'read'
|
|
350
|
+
* );
|
|
351
|
+
* if (grant.granted) {
|
|
352
|
+
* // Use grant.grantToken to prove authorization
|
|
353
|
+
* }
|
|
354
|
+
* ```
|
|
355
|
+
*/
|
|
206
356
|
declare class AuthGuardian {
|
|
207
357
|
private activeGrants;
|
|
208
358
|
private agentTrustLevels;
|
|
@@ -231,16 +381,37 @@ declare class AuthGuardian {
|
|
|
231
381
|
* resourceType is now a free string -- validated against registered profiles.
|
|
232
382
|
*/
|
|
233
383
|
requestPermission(agentId: string, resourceType: string, justification: string, scope?: string): Promise<PermissionGrant>;
|
|
384
|
+
/**
|
|
385
|
+
* Validate a grant token and return `true` if it is active and not expired.
|
|
386
|
+
*
|
|
387
|
+
* @param token - The grant token to validate
|
|
388
|
+
* @returns `true` if the token is valid, `false` otherwise
|
|
389
|
+
*/
|
|
234
390
|
validateToken(token: string): boolean;
|
|
235
391
|
/**
|
|
236
392
|
* Validate a token and return the bound restrictions and scope.
|
|
237
393
|
* Used to enforce restrictions at the point of use.
|
|
238
394
|
*/
|
|
395
|
+
/**
|
|
396
|
+
* Validate a token and return the full grant object (including restrictions
|
|
397
|
+
* and scope) for point-of-use enforcement.
|
|
398
|
+
*
|
|
399
|
+
* @param token - The grant token to validate
|
|
400
|
+
* @returns The grant details, or `null` if invalid/expired
|
|
401
|
+
*/
|
|
239
402
|
validateTokenWithGrant(token: string): ActiveGrant | null;
|
|
240
403
|
/**
|
|
241
404
|
* Enforce restrictions on an operation. Returns an error string if
|
|
242
405
|
* the operation violates any restriction, or null if allowed.
|
|
243
406
|
*/
|
|
407
|
+
/**
|
|
408
|
+
* Enforce restrictions on an operation. Returns an error string if
|
|
409
|
+
* the operation violates any restriction, or `null` if all restrictions pass.
|
|
410
|
+
*
|
|
411
|
+
* @param grantToken - The grant token authorizing the operation
|
|
412
|
+
* @param operation - Description of the operation to check against restrictions
|
|
413
|
+
* @returns Error message string if a restriction is violated, or `null` if allowed
|
|
414
|
+
*/
|
|
244
415
|
enforceRestrictions(grantToken: string, operation: {
|
|
245
416
|
type?: string;
|
|
246
417
|
recordCount?: number;
|
|
@@ -248,6 +419,12 @@ declare class AuthGuardian {
|
|
|
248
419
|
targetPath?: string;
|
|
249
420
|
command?: string;
|
|
250
421
|
}): string | null;
|
|
422
|
+
/**
|
|
423
|
+
* Revoke a grant token, immediately invalidating it.
|
|
424
|
+
* Silently no-ops if the token doesn't exist.
|
|
425
|
+
*
|
|
426
|
+
* @param token - The grant token to revoke
|
|
427
|
+
*/
|
|
251
428
|
revokeToken(token: string): void;
|
|
252
429
|
private evaluateRequest;
|
|
253
430
|
/**
|
|
@@ -259,7 +436,15 @@ declare class AuthGuardian {
|
|
|
259
436
|
private assessRisk;
|
|
260
437
|
private generateGrantToken;
|
|
261
438
|
private log;
|
|
439
|
+
/**
|
|
440
|
+
* Get all active (non-expired) permission grants.
|
|
441
|
+
* Automatically cleans up expired grants before returning.
|
|
442
|
+
*/
|
|
262
443
|
getActiveGrants(): ActiveGrant[];
|
|
444
|
+
/**
|
|
445
|
+
* Get the full audit log of permission decisions.
|
|
446
|
+
* Returns a defensive copy.
|
|
447
|
+
*/
|
|
263
448
|
getAuditLog(): typeof this.auditLog;
|
|
264
449
|
/**
|
|
265
450
|
* Get all registered resource profiles.
|
|
@@ -273,6 +458,14 @@ declare class AuthGuardian {
|
|
|
273
458
|
private persistTrustToDisk;
|
|
274
459
|
private loadAuditFromDisk;
|
|
275
460
|
}
|
|
461
|
+
/**
|
|
462
|
+
* Decomposes complex tasks into parallel sub-agent executions.
|
|
463
|
+
*
|
|
464
|
+
* Supports four synthesis strategies (`merge`, `vote`, `chain`, `first-success`)
|
|
465
|
+
* and caches results on the blackboard to avoid redundant work.
|
|
466
|
+
* Routes each sub-task through the {@link AdapterRegistry} so any
|
|
467
|
+
* registered framework can participate.
|
|
468
|
+
*/
|
|
276
469
|
declare class TaskDecomposer {
|
|
277
470
|
private blackboard;
|
|
278
471
|
private authGuardian;
|
|
@@ -289,6 +482,28 @@ declare class TaskDecomposer {
|
|
|
289
482
|
private generateMergeSummary;
|
|
290
483
|
private hashPayload;
|
|
291
484
|
}
|
|
485
|
+
/**
|
|
486
|
+
* The main orchestrator class — coordinates agents, permissions, blackboard,
|
|
487
|
+
* quality gates, and adapter routing in a single entry point.
|
|
488
|
+
*
|
|
489
|
+
* Implements the OpenClaw skill interface for backward compatibility and
|
|
490
|
+
* can also be used standalone via {@link createSwarmOrchestrator}.
|
|
491
|
+
*
|
|
492
|
+
* @example
|
|
493
|
+
* ```typescript
|
|
494
|
+
* import { createSwarmOrchestrator, LangChainAdapter } from 'network-ai';
|
|
495
|
+
*
|
|
496
|
+
* const orchestrator = createSwarmOrchestrator({
|
|
497
|
+
* adapters: [{ adapter: new LangChainAdapter() }],
|
|
498
|
+
* trustLevels: [{ agentId: 'my-agent', trustLevel: 0.8 }],
|
|
499
|
+
* });
|
|
500
|
+
*
|
|
501
|
+
* const result = await orchestrator.execute('delegate_task', {
|
|
502
|
+
* targetAgent: 'my-agent',
|
|
503
|
+
* taskPayload: { instruction: 'Summarize the quarterly report' },
|
|
504
|
+
* }, { agentId: 'orchestrator' });
|
|
505
|
+
* ```
|
|
506
|
+
*/
|
|
292
507
|
export declare class SwarmOrchestrator implements OpenClawSkill {
|
|
293
508
|
name: string;
|
|
294
509
|
version: string;
|
|
@@ -355,6 +570,9 @@ export { CustomAdapter } from './adapters/custom-adapter';
|
|
|
355
570
|
export type { TaskPayload, HandoffMessage, PermissionGrant, SwarmState, AgentStatus, ParallelTask, ParallelExecutionResult, SynthesisStrategy, ResourceProfile, AgentTrustConfig, };
|
|
356
571
|
export type { IAgentAdapter, AgentPayload, AgentContext, AgentResult, AgentInfo, AdapterConfig, AdapterCapabilities, } from './types/agent-adapter';
|
|
357
572
|
export type { OpenClawSkill, SkillContext, SkillResult };
|
|
573
|
+
export { Logger, LogLevel } from './lib/logger';
|
|
574
|
+
export type { LogEntry, LogTransport, LoggerConfig } from './lib/logger';
|
|
575
|
+
export { NetworkAIError, IdentityVerificationError, NamespaceViolationError, ValidationError, LockAcquisitionError, ConflictError, AdapterAlreadyRegisteredError, AdapterNotFoundError, AdapterNotInitializedError, ParallelLimitError, TimeoutError, } from './lib/errors';
|
|
358
576
|
/**
|
|
359
577
|
* Factory function for creating a configured SwarmOrchestrator instance.
|
|
360
578
|
*
|
|
@@ -364,6 +582,30 @@ export type { OpenClawSkill, SkillContext, SkillResult };
|
|
|
364
582
|
* adapters: [{ adapter: new LangChainAdapter(), config: {} }],
|
|
365
583
|
* });
|
|
366
584
|
*/
|
|
585
|
+
/**
|
|
586
|
+
* Factory function for creating a fully configured {@link SwarmOrchestrator}.
|
|
587
|
+
*
|
|
588
|
+
* Accepts optional configuration for adapters, trust levels, resource profiles,
|
|
589
|
+
* quality gate settings, and runtime overrides.
|
|
590
|
+
*
|
|
591
|
+
* @param config - Optional configuration object. Pass `undefined` for all defaults.
|
|
592
|
+
* @returns A ready-to-use SwarmOrchestrator instance.
|
|
593
|
+
*
|
|
594
|
+
* @example
|
|
595
|
+
* ```typescript
|
|
596
|
+
* import { createSwarmOrchestrator, LangChainAdapter } from 'network-ai';
|
|
597
|
+
*
|
|
598
|
+
* // Minimal
|
|
599
|
+
* const orc = createSwarmOrchestrator();
|
|
600
|
+
*
|
|
601
|
+
* // With adapters and trust
|
|
602
|
+
* const orc2 = createSwarmOrchestrator({
|
|
603
|
+
* adapters: [{ adapter: new LangChainAdapter() }],
|
|
604
|
+
* trustLevels: [{ agentId: 'analyst', trustLevel: 0.8 }],
|
|
605
|
+
* qualityThreshold: 0.7,
|
|
606
|
+
* });
|
|
607
|
+
* ```
|
|
608
|
+
*/
|
|
367
609
|
export declare function createSwarmOrchestrator(config?: Partial<typeof CONFIG> & {
|
|
368
610
|
adapters?: Array<{
|
|
369
611
|
adapter: IAgentAdapter;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAKH,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAG9D,OAAO,EAAuB,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|