@rivus/agent 0.14.3 → 0.15.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/README.md +1 -1
- package/dist/acp.js +1 -2
- package/dist/bootstrap/pi-feishu.d.ts +2 -2
- package/dist/bootstrap/pi-feishu.js +4119 -389
- package/dist/chunks/agent-loop.d.ts +55 -300
- package/dist/chunks/agent-loop.js +3 -1123
- package/dist/chunks/background-session-authority.js +230 -0
- package/dist/chunks/background-session-control-input.js +51 -0
- package/dist/chunks/background-session-service.d.ts +382 -0
- package/dist/chunks/index.d.ts +1294 -515
- package/dist/chunks/pi-tool-proxy.d.ts +22 -90
- package/dist/chunks/pi.js +60 -20
- package/dist/chunks/rivus-agent-definition-resolver.js +508 -0
- package/dist/chunks/rivus-daemon-cli.js +3004 -3164
- package/dist/chunks/rivus-model-management-wire.js +344 -0
- package/dist/chunks/rivus-plugin-testkit.d.ts +175 -2
- package/dist/chunks/rivus-plugin-testkit.js +11 -4
- package/dist/chunks/rivus-skill.d.ts +95 -0
- package/dist/chunks/rivus-tool.js +158 -0
- package/dist/chunks/sha256-digest.js +2 -7
- package/dist/chunks/src.js +13402 -8264
- package/dist/cli.js +901 -698
- package/dist/index.d.ts +7 -8
- package/dist/index.js +8 -9
- package/dist/mcp.d.ts +46 -7
- package/dist/mcp.js +145 -19
- package/dist/pi.d.ts +5 -4
- package/dist/pi.js +1 -1
- package/examples/pi-feishu-deployment.bootstrap.ts +557 -462
- package/package.json +9 -7
- package/skills/runtime-management/SKILL.md +61 -0
- package/dist/chunks/api.d.ts +0 -70
- package/dist/chunks/api.js +0 -471
- package/dist/chunks/api2.d.ts +0 -387
- package/dist/chunks/api2.js +0 -1331
- package/dist/chunks/api3.d.ts +0 -402
- package/dist/chunks/module.js +0 -267
- package/dist/chunks/pi-skill-tool.js +0 -460
- package/dist/chunks/spi.d.ts +0 -1
- package/dist/chunks/spi.js +0 -2
package/dist/chunks/api2.d.ts
DELETED
|
@@ -1,387 +0,0 @@
|
|
|
1
|
-
import { d as MemoryScope, o as AgentMemoryAuthority } from "./api.js";
|
|
2
|
-
import { Effect } from "effect";
|
|
3
|
-
|
|
4
|
-
//#region src/modules/agent-catalog/domain/runtime-tool/rivus-runtime-tool.d.ts
|
|
5
|
-
declare const RIVUS_RUNTIME_TOOL_IDS: readonly ["read", "bash", "edit", "write", "grep", "find", "ls"];
|
|
6
|
-
type RivusRuntimeToolId = (typeof RIVUS_RUNTIME_TOOL_IDS)[number];
|
|
7
|
-
interface RivusRuntimeToolGrantSet {
|
|
8
|
-
readonly revision: string;
|
|
9
|
-
readonly toolIds: ReadonlyArray<RivusRuntimeToolId>;
|
|
10
|
-
}
|
|
11
|
-
declare function isRivusRuntimeToolId(value: string): value is RivusRuntimeToolId;
|
|
12
|
-
//#endregion
|
|
13
|
-
//#region src/modules/agent-catalog/domain/skill/rivus-skill.d.ts
|
|
14
|
-
interface RivusSkillDescriptor {
|
|
15
|
-
readonly id: string;
|
|
16
|
-
readonly version: string;
|
|
17
|
-
readonly digest: string;
|
|
18
|
-
readonly title: string;
|
|
19
|
-
readonly content: string;
|
|
20
|
-
}
|
|
21
|
-
interface RegisteredRivusSkill extends RivusSkillDescriptor {
|
|
22
|
-
readonly pluginId: string;
|
|
23
|
-
}
|
|
24
|
-
interface RivusSkillGrantSet {
|
|
25
|
-
readonly skillIds: ReadonlyArray<string>;
|
|
26
|
-
readonly revision: string;
|
|
27
|
-
}
|
|
28
|
-
//#endregion
|
|
29
|
-
//#region src/modules/agent-catalog/domain/tool/rivus-tool.d.ts
|
|
30
|
-
type RivusToolRisk = "observe" | "mutate" | "irreversible" | "host-control";
|
|
31
|
-
type RivusToolIdempotency = "none" | "supported" | "required";
|
|
32
|
-
declare class RivusToolInputRejected extends Error {
|
|
33
|
-
readonly name: string;
|
|
34
|
-
}
|
|
35
|
-
interface RivusToolExecutor {
|
|
36
|
-
execute(input: unknown, context: RivusToolExecutionContext): unknown;
|
|
37
|
-
}
|
|
38
|
-
interface RivusToolExecutionOrigin {
|
|
39
|
-
readonly endpointId: string;
|
|
40
|
-
readonly tenantKey: string;
|
|
41
|
-
readonly conversationId?: string;
|
|
42
|
-
readonly allowedActorOpenIds: ReadonlyArray<string>;
|
|
43
|
-
}
|
|
44
|
-
interface RivusToolExecutionContext {
|
|
45
|
-
readonly agentId: string;
|
|
46
|
-
readonly instanceId: string;
|
|
47
|
-
readonly memory?: AgentMemoryAuthority;
|
|
48
|
-
readonly runId: string;
|
|
49
|
-
readonly callId: string;
|
|
50
|
-
readonly operationId?: string;
|
|
51
|
-
readonly policyEpoch: number;
|
|
52
|
-
readonly toolId: string;
|
|
53
|
-
readonly toolVersion: string;
|
|
54
|
-
readonly sessionKey: string;
|
|
55
|
-
readonly origin?: RivusToolExecutionOrigin;
|
|
56
|
-
readonly sourceMessageId?: string;
|
|
57
|
-
}
|
|
58
|
-
interface RivusToolFactoryContext {
|
|
59
|
-
readonly toolId: string;
|
|
60
|
-
readonly toolVersion: string;
|
|
61
|
-
}
|
|
62
|
-
interface RivusToolDescriptor {
|
|
63
|
-
readonly id: string;
|
|
64
|
-
readonly version: string;
|
|
65
|
-
readonly digest: string;
|
|
66
|
-
readonly description: string;
|
|
67
|
-
readonly inputSchema: unknown;
|
|
68
|
-
readonly risk: RivusToolRisk;
|
|
69
|
-
readonly idempotency: RivusToolIdempotency;
|
|
70
|
-
readonly createExecutor: (context: RivusToolFactoryContext) => RivusToolExecutor;
|
|
71
|
-
}
|
|
72
|
-
interface RivusHostToolDescriptor extends RivusToolDescriptor {
|
|
73
|
-
readonly replayCompleted?: (input: unknown, completedResult: unknown, context: RivusToolExecutionContext) => unknown;
|
|
74
|
-
}
|
|
75
|
-
interface RegisteredRivusTool extends RivusToolDescriptor {
|
|
76
|
-
readonly pluginId: string;
|
|
77
|
-
}
|
|
78
|
-
interface RivusResolvedToolDescriptor {
|
|
79
|
-
readonly id: string;
|
|
80
|
-
readonly version: string;
|
|
81
|
-
readonly digest: string;
|
|
82
|
-
readonly description: string;
|
|
83
|
-
readonly inputSchema: unknown;
|
|
84
|
-
readonly risk: RivusToolRisk;
|
|
85
|
-
readonly idempotency: RivusToolIdempotency;
|
|
86
|
-
readonly pluginId: string;
|
|
87
|
-
}
|
|
88
|
-
interface RivusToolGrantSet {
|
|
89
|
-
readonly toolIds: ReadonlyArray<string>;
|
|
90
|
-
readonly revision: string;
|
|
91
|
-
}
|
|
92
|
-
//#endregion
|
|
93
|
-
//#region src/modules/agent-catalog/domain/agent/rivus-agent-definition.d.ts
|
|
94
|
-
interface RivusAgentProfile {
|
|
95
|
-
readonly id: string;
|
|
96
|
-
readonly displayName: string;
|
|
97
|
-
readonly systemPrompt: string;
|
|
98
|
-
readonly model: Readonly<Record<string, unknown>>;
|
|
99
|
-
readonly tools: {
|
|
100
|
-
readonly allow: ReadonlyArray<string>;
|
|
101
|
-
};
|
|
102
|
-
readonly skills: {
|
|
103
|
-
readonly allow: ReadonlyArray<string>;
|
|
104
|
-
};
|
|
105
|
-
readonly memory: {
|
|
106
|
-
readonly scopes: ReadonlyArray<MemoryScope>;
|
|
107
|
-
};
|
|
108
|
-
readonly runtimeTools?: {
|
|
109
|
-
readonly allow: ReadonlyArray<RivusRuntimeToolId>;
|
|
110
|
-
};
|
|
111
|
-
}
|
|
112
|
-
interface RegisteredRivusAgentProfile extends RivusAgentProfile {
|
|
113
|
-
readonly pluginId: string;
|
|
114
|
-
}
|
|
115
|
-
interface RivusAgentDeployment {
|
|
116
|
-
readonly agentId: string;
|
|
117
|
-
readonly pluginId: string;
|
|
118
|
-
readonly profileId: string;
|
|
119
|
-
readonly projectSpaceId?: string;
|
|
120
|
-
readonly endpointIds: ReadonlyArray<string>;
|
|
121
|
-
readonly memory?: {
|
|
122
|
-
readonly scopes: ReadonlyArray<MemoryScope>;
|
|
123
|
-
readonly tool: boolean;
|
|
124
|
-
};
|
|
125
|
-
readonly runtimeTools?: {
|
|
126
|
-
readonly allow: ReadonlyArray<RivusRuntimeToolId>;
|
|
127
|
-
};
|
|
128
|
-
readonly skills: {
|
|
129
|
-
readonly allow: ReadonlyArray<string>;
|
|
130
|
-
};
|
|
131
|
-
readonly tools: {
|
|
132
|
-
readonly allow: ReadonlyArray<string>;
|
|
133
|
-
};
|
|
134
|
-
}
|
|
135
|
-
interface ResolvedRivusAgentDefinition {
|
|
136
|
-
readonly agentId: string;
|
|
137
|
-
readonly pluginId: string;
|
|
138
|
-
readonly profileId: string;
|
|
139
|
-
readonly projectSpaceId?: string;
|
|
140
|
-
readonly projectSpaceRevision?: string;
|
|
141
|
-
readonly endpointIds: ReadonlyArray<string>;
|
|
142
|
-
readonly profileRevision: string;
|
|
143
|
-
readonly systemPrompt: string;
|
|
144
|
-
readonly model: Readonly<Record<string, unknown>>;
|
|
145
|
-
readonly memory: {
|
|
146
|
-
readonly scopes: ReadonlyArray<MemoryScope>;
|
|
147
|
-
readonly tool: boolean;
|
|
148
|
-
};
|
|
149
|
-
readonly runtimeToolGrantSet: RivusRuntimeToolGrantSet;
|
|
150
|
-
readonly skillGrantSet: RivusSkillGrantSet;
|
|
151
|
-
readonly skills: ReadonlyArray<RegisteredRivusSkill>;
|
|
152
|
-
readonly tools: ReadonlyArray<RivusResolvedToolDescriptor>;
|
|
153
|
-
readonly toolGrantSet: RivusToolGrantSet;
|
|
154
|
-
}
|
|
155
|
-
//#endregion
|
|
156
|
-
//#region src/modules/automation/application/outcome/automation-outcome.d.ts
|
|
157
|
-
type AutomationOutcome = {
|
|
158
|
-
readonly kind: "suppressed";
|
|
159
|
-
} | {
|
|
160
|
-
readonly kind: "report" | "alert";
|
|
161
|
-
readonly body: string;
|
|
162
|
-
readonly target: string;
|
|
163
|
-
};
|
|
164
|
-
interface PluginStateRecord {
|
|
165
|
-
readonly pluginId: string;
|
|
166
|
-
readonly agentId: string;
|
|
167
|
-
readonly key: string;
|
|
168
|
-
readonly value: unknown;
|
|
169
|
-
readonly revision: number;
|
|
170
|
-
}
|
|
171
|
-
interface PutPluginState {
|
|
172
|
-
readonly pluginId: string;
|
|
173
|
-
readonly agentId: string;
|
|
174
|
-
readonly key: string;
|
|
175
|
-
readonly value: unknown;
|
|
176
|
-
readonly expectedRevision: number;
|
|
177
|
-
}
|
|
178
|
-
type DeliveryJobStatus = "pending" | "delivered" | "reconciliation-required";
|
|
179
|
-
interface DeliveryJob {
|
|
180
|
-
readonly id: string;
|
|
181
|
-
readonly tickId: string;
|
|
182
|
-
readonly kind: "report" | "alert";
|
|
183
|
-
readonly body: string;
|
|
184
|
-
readonly target: string;
|
|
185
|
-
readonly status: DeliveryJobStatus;
|
|
186
|
-
readonly receiptId?: string;
|
|
187
|
-
}
|
|
188
|
-
type DeliveryAttemptResult = {
|
|
189
|
-
readonly kind: "delivered";
|
|
190
|
-
readonly providerMessageId: string;
|
|
191
|
-
} | {
|
|
192
|
-
readonly kind: "uncertain";
|
|
193
|
-
};
|
|
194
|
-
interface CommittedAutomationOutcome {
|
|
195
|
-
readonly state: PluginStateRecord;
|
|
196
|
-
readonly job?: DeliveryJob;
|
|
197
|
-
}
|
|
198
|
-
//#endregion
|
|
199
|
-
//#region src/modules/automation/domain/mandate/automation-mandate.d.ts
|
|
200
|
-
interface AutomationBinding {
|
|
201
|
-
readonly agentId: string;
|
|
202
|
-
readonly bindingId: string;
|
|
203
|
-
readonly delivery: AutomationDeliveryBinding;
|
|
204
|
-
readonly schedule: string;
|
|
205
|
-
readonly servicePrincipalId: string;
|
|
206
|
-
readonly skillGrantRevision: string;
|
|
207
|
-
readonly skillIds: ReadonlyArray<string>;
|
|
208
|
-
readonly templateId: string;
|
|
209
|
-
readonly timeZone: string;
|
|
210
|
-
readonly toolIds: ReadonlyArray<string>;
|
|
211
|
-
}
|
|
212
|
-
interface AutomationDeliveryBinding {
|
|
213
|
-
readonly endpointId: string;
|
|
214
|
-
readonly targetKey: string;
|
|
215
|
-
readonly targetType: "chat_id" | "open_id" | "user_id" | "union_id" | "email";
|
|
216
|
-
}
|
|
217
|
-
interface AutomationMandate extends AutomationBinding {
|
|
218
|
-
readonly id: string;
|
|
219
|
-
readonly active: boolean;
|
|
220
|
-
}
|
|
221
|
-
interface AutomationTick {
|
|
222
|
-
readonly tickId: string;
|
|
223
|
-
readonly mandateId: string;
|
|
224
|
-
readonly occurrence: string;
|
|
225
|
-
readonly claimedBy: string;
|
|
226
|
-
}
|
|
227
|
-
interface AutomationMandateStore {
|
|
228
|
-
activate(binding: AutomationBinding): AutomationMandate;
|
|
229
|
-
revoke(id: string): void;
|
|
230
|
-
claim(id: string, occurrence: string, workerId: string): AutomationTick;
|
|
231
|
-
}
|
|
232
|
-
declare class AutomationMandateError extends Error {
|
|
233
|
-
readonly name = "AutomationMandateError";
|
|
234
|
-
}
|
|
235
|
-
//#endregion
|
|
236
|
-
//#region src/modules/automation/domain/presentation/automation-presentation.d.ts
|
|
237
|
-
declare const AUTOMATION_PRESENTATION_SCHEMA_VERSION: 1;
|
|
238
|
-
type AutomationPresentationKind = "daily-ai" | "generic" | "industry" | "news" | "subscriptions";
|
|
239
|
-
interface AutomationPresentationSource {
|
|
240
|
-
readonly label: string;
|
|
241
|
-
readonly url: string;
|
|
242
|
-
}
|
|
243
|
-
interface AutomationPresentationItem {
|
|
244
|
-
readonly headline: string;
|
|
245
|
-
readonly note?: string;
|
|
246
|
-
readonly sources: ReadonlyArray<AutomationPresentationSource>;
|
|
247
|
-
}
|
|
248
|
-
interface AutomationPresentationSection {
|
|
249
|
-
readonly id: string;
|
|
250
|
-
readonly items: ReadonlyArray<AutomationPresentationItem>;
|
|
251
|
-
readonly title: string;
|
|
252
|
-
}
|
|
253
|
-
interface AutomationPresentation {
|
|
254
|
-
readonly footnote?: string;
|
|
255
|
-
readonly kind?: AutomationPresentationKind;
|
|
256
|
-
readonly meta: ReadonlyArray<string>;
|
|
257
|
-
readonly schemaVersion: typeof AUTOMATION_PRESENTATION_SCHEMA_VERSION;
|
|
258
|
-
readonly sections: ReadonlyArray<AutomationPresentationSection>;
|
|
259
|
-
readonly summary?: string;
|
|
260
|
-
readonly title: string;
|
|
261
|
-
}
|
|
262
|
-
interface AutomationPresentationInput {
|
|
263
|
-
readonly footnote?: string;
|
|
264
|
-
readonly kind?: AutomationPresentationKind;
|
|
265
|
-
readonly meta?: ReadonlyArray<string>;
|
|
266
|
-
readonly sections: ReadonlyArray<{
|
|
267
|
-
readonly id: string;
|
|
268
|
-
readonly items: ReadonlyArray<{
|
|
269
|
-
readonly headline: string;
|
|
270
|
-
readonly note?: string;
|
|
271
|
-
readonly sources?: ReadonlyArray<AutomationPresentationSource>;
|
|
272
|
-
}>;
|
|
273
|
-
readonly title: string;
|
|
274
|
-
}>;
|
|
275
|
-
readonly summary?: string;
|
|
276
|
-
readonly title: string;
|
|
277
|
-
}
|
|
278
|
-
declare class InvalidAutomationPresentation extends Error {
|
|
279
|
-
readonly name = "InvalidAutomationPresentation";
|
|
280
|
-
}
|
|
281
|
-
declare function createAutomationPresentation(input: AutomationPresentationInput): AutomationPresentation;
|
|
282
|
-
declare function readAutomationPresentation(value: unknown): AutomationPresentation;
|
|
283
|
-
//#endregion
|
|
284
|
-
//#region src/modules/automation/domain/tick/automation-tick.d.ts
|
|
285
|
-
type AutomationTickStatus = "running" | "failed" | "generated" | "suppressed" | "delivered";
|
|
286
|
-
interface AutomationTickRecord {
|
|
287
|
-
readonly automationId: string;
|
|
288
|
-
readonly body?: string;
|
|
289
|
-
readonly error?: string;
|
|
290
|
-
readonly occurrence: string;
|
|
291
|
-
readonly mandateId: string;
|
|
292
|
-
readonly providerMessageId?: string;
|
|
293
|
-
readonly presentation?: AutomationPresentation;
|
|
294
|
-
readonly revision: number;
|
|
295
|
-
readonly runId?: string;
|
|
296
|
-
readonly suppressionReason?: string;
|
|
297
|
-
readonly status: AutomationTickStatus;
|
|
298
|
-
readonly tickId: string;
|
|
299
|
-
}
|
|
300
|
-
//#endregion
|
|
301
|
-
//#region src/modules/automation/application/scheduling/automation-scheduler.d.ts
|
|
302
|
-
declare const AUTOMATION_SUPPRESSION_PREFIX = "RIVUS_AUTOMATION_SUPPRESSED:";
|
|
303
|
-
interface ScheduledAutomationRunInput {
|
|
304
|
-
readonly occurrence: string;
|
|
305
|
-
readonly sessionKey: string;
|
|
306
|
-
readonly text: string;
|
|
307
|
-
readonly tickId: string;
|
|
308
|
-
}
|
|
309
|
-
interface ScheduledAutomationRunResult {
|
|
310
|
-
readonly body?: string;
|
|
311
|
-
readonly presentation?: AutomationPresentation;
|
|
312
|
-
readonly runId: string;
|
|
313
|
-
readonly suppressedReason?: string;
|
|
314
|
-
}
|
|
315
|
-
interface ScheduledAutomationDeliveryInput {
|
|
316
|
-
readonly body: string;
|
|
317
|
-
readonly idempotencyKey: string;
|
|
318
|
-
readonly presentation?: AutomationPresentation;
|
|
319
|
-
}
|
|
320
|
-
//#endregion
|
|
321
|
-
//#region src/modules/automation/domain/schedule/daily-automation-schedule.d.ts
|
|
322
|
-
interface DailyAutomationSchedule {
|
|
323
|
-
currentOccurrence(now: Date): string | undefined;
|
|
324
|
-
nextOccurrence(now: Date): Date;
|
|
325
|
-
}
|
|
326
|
-
declare function createDailyAutomationSchedule(expression: string, timeZone: string, now?: Date): DailyAutomationSchedule;
|
|
327
|
-
//#endregion
|
|
328
|
-
//#region src/modules/agent-catalog/domain/automation/rivus-automation-template.d.ts
|
|
329
|
-
interface RivusAutomationTemplate {
|
|
330
|
-
readonly id: string;
|
|
331
|
-
readonly profileId: string;
|
|
332
|
-
readonly requestedSkillIds: ReadonlyArray<string>;
|
|
333
|
-
readonly requestedToolIds: ReadonlyArray<string>;
|
|
334
|
-
readonly createInput: (tick: RivusAutomationTickContext) => RivusAutomationInput;
|
|
335
|
-
readonly createPresentation?: (output: RivusAutomationOutput) => AutomationPresentation;
|
|
336
|
-
}
|
|
337
|
-
interface RivusAutomationTickContext {
|
|
338
|
-
readonly occurrence: string;
|
|
339
|
-
}
|
|
340
|
-
interface RivusAutomationInput {
|
|
341
|
-
readonly text: string;
|
|
342
|
-
}
|
|
343
|
-
interface RivusAutomationOutput {
|
|
344
|
-
readonly occurrence: string;
|
|
345
|
-
readonly text: string;
|
|
346
|
-
}
|
|
347
|
-
interface RegisteredRivusAutomation extends RivusAutomationTemplate {
|
|
348
|
-
readonly pluginId: string;
|
|
349
|
-
}
|
|
350
|
-
//#endregion
|
|
351
|
-
//#region src/modules/agent-catalog/domain/plugin/rivus-plugin.d.ts
|
|
352
|
-
declare const RIVUS_PLUGIN_API_VERSION = "1";
|
|
353
|
-
interface RivusPluginManifest {
|
|
354
|
-
readonly apiVersion: string;
|
|
355
|
-
readonly id: string;
|
|
356
|
-
readonly version: string;
|
|
357
|
-
}
|
|
358
|
-
interface RivusPluginRegistry {
|
|
359
|
-
registerAgentProfile(profile: RivusAgentProfile): void;
|
|
360
|
-
registerTool(tool: RivusToolDescriptor): void;
|
|
361
|
-
registerSkill(skill: RivusSkillDescriptor): void;
|
|
362
|
-
registerAutomation(template: RivusAutomationTemplate): void;
|
|
363
|
-
}
|
|
364
|
-
interface RivusPlugin {
|
|
365
|
-
readonly manifest: RivusPluginManifest;
|
|
366
|
-
register(registry: RivusPluginRegistry): void;
|
|
367
|
-
}
|
|
368
|
-
interface RegisteredRivusPlugin extends RivusPluginManifest {}
|
|
369
|
-
interface RivusPluginCatalogSnapshot {
|
|
370
|
-
readonly plugins: ReadonlyArray<RegisteredRivusPlugin>;
|
|
371
|
-
readonly profiles: ReadonlyArray<RegisteredRivusAgentProfile>;
|
|
372
|
-
readonly tools: ReadonlyArray<RegisteredRivusTool>;
|
|
373
|
-
readonly skills: ReadonlyArray<RegisteredRivusSkill>;
|
|
374
|
-
readonly automations: ReadonlyArray<RegisteredRivusAutomation>;
|
|
375
|
-
}
|
|
376
|
-
interface RivusPluginCatalog {
|
|
377
|
-
registerPlugin(plugin: RivusPlugin): void;
|
|
378
|
-
snapshot(): RivusPluginCatalogSnapshot;
|
|
379
|
-
}
|
|
380
|
-
declare class InvalidRivusPlugin extends Error {
|
|
381
|
-
readonly name = "InvalidRivusPlugin";
|
|
382
|
-
}
|
|
383
|
-
//#endregion
|
|
384
|
-
//#region src/modules/agent-catalog/application/catalog/rivus-plugin-catalog.d.ts
|
|
385
|
-
declare function createRivusPluginCatalog(): RivusPluginCatalog;
|
|
386
|
-
//#endregion
|
|
387
|
-
export { RivusToolDescriptor as $, InvalidAutomationPresentation as A, CommittedAutomationOutcome as B, AUTOMATION_PRESENTATION_SCHEMA_VERSION as C, AutomationPresentationKind as D, AutomationPresentationItem as E, AutomationMandate as F, PutPluginState as G, DeliveryJob as H, AutomationMandateError as I, RivusAgentDeployment as J, RegisteredRivusAgentProfile as K, AutomationMandateStore as L, readAutomationPresentation as M, AutomationBinding as N, AutomationPresentationSection as O, AutomationDeliveryBinding as P, RivusResolvedToolDescriptor as Q, AutomationTick as R, AutomationTickStatus as S, AutomationPresentationInput as T, DeliveryJobStatus as U, DeliveryAttemptResult as V, PluginStateRecord as W, RegisteredRivusTool as X, RivusAgentProfile as Y, RivusHostToolDescriptor as Z, AUTOMATION_SUPPRESSION_PREFIX as _, RivusPlugin as a, RivusToolInputRejected as at, ScheduledAutomationRunResult as b, RivusPluginManifest as c, RivusSkillDescriptor as ct, RivusAutomationInput as d, RivusRuntimeToolGrantSet as dt, RivusToolExecutionContext as et, RivusAutomationOutput as f, RivusRuntimeToolId as ft, createDailyAutomationSchedule as g, DailyAutomationSchedule as h, RegisteredRivusPlugin as i, RivusToolIdempotency as it, createAutomationPresentation as j, AutomationPresentationSource as k, RivusPluginRegistry as l, RivusSkillGrantSet as lt, RivusAutomationTickContext as m, InvalidRivusPlugin as n, RivusToolFactoryContext as nt, RivusPluginCatalog as o, RivusToolRisk as ot, RivusAutomationTemplate as p, isRivusRuntimeToolId as pt, ResolvedRivusAgentDefinition as q, RIVUS_PLUGIN_API_VERSION as r, RivusToolGrantSet as rt, RivusPluginCatalogSnapshot as s, RegisteredRivusSkill as st, createRivusPluginCatalog as t, RivusToolExecutor as tt, RegisteredRivusAutomation as u, RIVUS_RUNTIME_TOOL_IDS as ut, ScheduledAutomationDeliveryInput as v, AutomationPresentation as w, AutomationTickRecord as x, ScheduledAutomationRunInput as y, AutomationOutcome as z };
|