@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
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
//#region src/adapters/cli/model/rivus-model-cli-protocol.ts
|
|
2
|
+
const RIVUS_MODEL_CLI_USAGE = `Usage:
|
|
3
|
+
rivus model status --json [--request <id>] [--verbose]
|
|
4
|
+
rivus model set --model <provider/model> --expected-revision <n> --request <id> --json [--verbose]
|
|
5
|
+
rivus model rollback --expected-revision <n> --request <id> --json [--verbose]
|
|
6
|
+
|
|
7
|
+
Commands:
|
|
8
|
+
status Read the effective and persistent model selection
|
|
9
|
+
set Submit one authorized model change
|
|
10
|
+
rollback Submit one authorized change to the previous model
|
|
11
|
+
|
|
12
|
+
All command results are JSON. A successful set or rollback call means the request
|
|
13
|
+
was accepted; query status by request id for the final outcome.
|
|
14
|
+
`;
|
|
15
|
+
function parseRivusModelCliArguments(argv) {
|
|
16
|
+
if (argv.includes("--help") || argv.includes("-h")) return { help: true };
|
|
17
|
+
const operation = argv[0];
|
|
18
|
+
if (operation !== "status" && operation !== "set" && operation !== "rollback") return { error: "model requires one of status, set, rollback" };
|
|
19
|
+
let expectedRevision;
|
|
20
|
+
let json = false;
|
|
21
|
+
let model;
|
|
22
|
+
let requestId;
|
|
23
|
+
let verbose = false;
|
|
24
|
+
for (let index = 1; index < argv.length; index += 1) {
|
|
25
|
+
const argument = argv[index];
|
|
26
|
+
if (argument === "--json") {
|
|
27
|
+
if (json) return { error: "--json may only be provided once" };
|
|
28
|
+
json = true;
|
|
29
|
+
continue;
|
|
30
|
+
}
|
|
31
|
+
if (argument === "--verbose") {
|
|
32
|
+
if (verbose) return { error: "--verbose may only be provided once" };
|
|
33
|
+
verbose = true;
|
|
34
|
+
continue;
|
|
35
|
+
}
|
|
36
|
+
if (argument === "--request") {
|
|
37
|
+
if (requestId !== void 0) return { error: "--request may only be provided once" };
|
|
38
|
+
const value = argv[index + 1];
|
|
39
|
+
if (!value || value.startsWith("-")) return { error: "--request requires an id" };
|
|
40
|
+
requestId = value;
|
|
41
|
+
index += 1;
|
|
42
|
+
continue;
|
|
43
|
+
}
|
|
44
|
+
if (argument.startsWith("--request=")) {
|
|
45
|
+
if (requestId !== void 0) return { error: "--request may only be provided once" };
|
|
46
|
+
requestId = argument.slice(10);
|
|
47
|
+
if (!requestId) return { error: "--request requires an id" };
|
|
48
|
+
continue;
|
|
49
|
+
}
|
|
50
|
+
if (argument === "--expected-revision") {
|
|
51
|
+
if (expectedRevision !== void 0) return { error: "--expected-revision may only be provided once" };
|
|
52
|
+
const value = argv[index + 1];
|
|
53
|
+
if (!value || value.startsWith("-")) return { error: "--expected-revision requires a non-negative integer" };
|
|
54
|
+
const parsed = parseRevision(value);
|
|
55
|
+
if (parsed === void 0) return { error: "--expected-revision requires a non-negative integer" };
|
|
56
|
+
expectedRevision = parsed;
|
|
57
|
+
index += 1;
|
|
58
|
+
continue;
|
|
59
|
+
}
|
|
60
|
+
if (argument.startsWith("--expected-revision=")) {
|
|
61
|
+
if (expectedRevision !== void 0) return { error: "--expected-revision may only be provided once" };
|
|
62
|
+
const parsed = parseRevision(argument.slice(20));
|
|
63
|
+
if (parsed === void 0) return { error: "--expected-revision requires a non-negative integer" };
|
|
64
|
+
expectedRevision = parsed;
|
|
65
|
+
continue;
|
|
66
|
+
}
|
|
67
|
+
if (argument === "--model") {
|
|
68
|
+
if (model !== void 0) return { error: "--model may only be provided once" };
|
|
69
|
+
const value = argv[index + 1];
|
|
70
|
+
if (!value || value.startsWith("-")) return { error: "--model requires provider/model" };
|
|
71
|
+
if (!isModelReference(value)) return { error: "--model must be provider/model" };
|
|
72
|
+
model = value;
|
|
73
|
+
index += 1;
|
|
74
|
+
continue;
|
|
75
|
+
}
|
|
76
|
+
if (argument.startsWith("--model=")) {
|
|
77
|
+
if (model !== void 0) return { error: "--model may only be provided once" };
|
|
78
|
+
const value = argument.slice(8);
|
|
79
|
+
if (!isModelReference(value)) return { error: "--model must be provider/model" };
|
|
80
|
+
model = value;
|
|
81
|
+
continue;
|
|
82
|
+
}
|
|
83
|
+
return { error: `Unknown model option: ${argument}` };
|
|
84
|
+
}
|
|
85
|
+
if (!json) return { error: "model commands require --json" };
|
|
86
|
+
if (operation === "status") {
|
|
87
|
+
if (model !== void 0) return { error: "status does not accept --model" };
|
|
88
|
+
if (expectedRevision !== void 0) return { error: "status does not accept --expected-revision" };
|
|
89
|
+
return {
|
|
90
|
+
json: true,
|
|
91
|
+
operation,
|
|
92
|
+
...requestId !== void 0 ? { requestId } : {},
|
|
93
|
+
...verbose ? { verbose: true } : {}
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
if (requestId === void 0) return { error: "--request is required for model changes" };
|
|
97
|
+
if (expectedRevision === void 0) return { error: "--expected-revision is required for model changes" };
|
|
98
|
+
if (operation === "set" && model === void 0) return { error: "--model is required for model set" };
|
|
99
|
+
if (operation === "rollback" && model !== void 0) return { error: "rollback does not accept --model" };
|
|
100
|
+
return operation === "set" ? {
|
|
101
|
+
expectedRevision,
|
|
102
|
+
json: true,
|
|
103
|
+
model,
|
|
104
|
+
operation,
|
|
105
|
+
requestId,
|
|
106
|
+
...verbose ? { verbose: true } : {}
|
|
107
|
+
} : {
|
|
108
|
+
expectedRevision,
|
|
109
|
+
json: true,
|
|
110
|
+
operation,
|
|
111
|
+
requestId,
|
|
112
|
+
...verbose ? { verbose: true } : {}
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
function renderRivusModelCliHelp() {
|
|
116
|
+
return RIVUS_MODEL_CLI_USAGE;
|
|
117
|
+
}
|
|
118
|
+
function renderRivusModelCliArgumentError(error) {
|
|
119
|
+
return `${error}\n\n${RIVUS_MODEL_CLI_USAGE}`;
|
|
120
|
+
}
|
|
121
|
+
function isModelReference(value) {
|
|
122
|
+
return /^[^/\s]+\/[^/\s]+$/.test(value);
|
|
123
|
+
}
|
|
124
|
+
function parseRevision(value) {
|
|
125
|
+
if (!/^\d+$/.test(value)) return void 0;
|
|
126
|
+
const revision = Number(value);
|
|
127
|
+
return Number.isSafeInteger(revision) ? revision : void 0;
|
|
128
|
+
}
|
|
129
|
+
//#endregion
|
|
130
|
+
//#region src/adapters/cli/model/rivus-model-management-wire.ts
|
|
131
|
+
function createRivusModelManagementWireRequest(command, env) {
|
|
132
|
+
const context = optionalString(env.RIVUS_MODEL_CONTEXT);
|
|
133
|
+
return {
|
|
134
|
+
...command,
|
|
135
|
+
...context ? { context } : {}
|
|
136
|
+
};
|
|
137
|
+
}
|
|
138
|
+
function parseRivusModelManagementWireRequest(value) {
|
|
139
|
+
if (!isRecord(value)) throw new Error("model request must be a JSON object");
|
|
140
|
+
const operation = value.operation;
|
|
141
|
+
if (operation !== "status" && operation !== "set" && operation !== "rollback") throw new Error("model request operation is invalid");
|
|
142
|
+
const context = optionalString(value.context);
|
|
143
|
+
const requestId = optionalString(value.requestId);
|
|
144
|
+
const verbose = value.verbose === true ? true : void 0;
|
|
145
|
+
if (operation === "status") {
|
|
146
|
+
if (value.json !== true) throw new Error("model request must require JSON output");
|
|
147
|
+
return {
|
|
148
|
+
json: true,
|
|
149
|
+
operation,
|
|
150
|
+
...context ? { context } : {},
|
|
151
|
+
...requestId ? { requestId } : {},
|
|
152
|
+
...verbose ? { verbose: true } : {}
|
|
153
|
+
};
|
|
154
|
+
}
|
|
155
|
+
const expectedRevision = value.expectedRevision;
|
|
156
|
+
if (value.json !== true || typeof expectedRevision !== "number" || !Number.isSafeInteger(expectedRevision) || expectedRevision < 0) throw new Error("model request has an invalid expected revision or output mode");
|
|
157
|
+
if (!requestId) throw new Error("model request requires a request id");
|
|
158
|
+
if (operation === "set") {
|
|
159
|
+
const model = optionalString(value.model);
|
|
160
|
+
if (!model || !/^[^/\s]+\/[^/\s]+$/.test(model)) throw new Error("model request target is invalid");
|
|
161
|
+
return {
|
|
162
|
+
expectedRevision,
|
|
163
|
+
json: true,
|
|
164
|
+
model,
|
|
165
|
+
operation,
|
|
166
|
+
requestId,
|
|
167
|
+
...context ? { context } : {},
|
|
168
|
+
...verbose ? { verbose: true } : {}
|
|
169
|
+
};
|
|
170
|
+
}
|
|
171
|
+
return {
|
|
172
|
+
expectedRevision,
|
|
173
|
+
json: true,
|
|
174
|
+
operation,
|
|
175
|
+
requestId,
|
|
176
|
+
...context ? { context } : {},
|
|
177
|
+
...verbose ? { verbose: true } : {}
|
|
178
|
+
};
|
|
179
|
+
}
|
|
180
|
+
function toRivusModelManagementSubmission(request) {
|
|
181
|
+
const target = request.operation === "set" ? parseTarget(request.model) : void 0;
|
|
182
|
+
return {
|
|
183
|
+
expectedRevision: request.expectedRevision,
|
|
184
|
+
operation: request.operation,
|
|
185
|
+
requestId: request.requestId,
|
|
186
|
+
...target ? { target } : {},
|
|
187
|
+
...request.verbose ? { verbose: true } : {}
|
|
188
|
+
};
|
|
189
|
+
}
|
|
190
|
+
function projectRivusModelCliResponse(value, operation) {
|
|
191
|
+
if (!isRecord(value)) throw new Error("model handler must return a JSON object");
|
|
192
|
+
const response = { schemaVersion: 1 };
|
|
193
|
+
copyScalar(response, value, "requestId");
|
|
194
|
+
copyScalar(response, value, "revision");
|
|
195
|
+
copyScalar(response, value, "source");
|
|
196
|
+
copyScalar(response, value, "protocolVersion");
|
|
197
|
+
copyScalar(response, value, "runtimeVersion");
|
|
198
|
+
copyScalar(response, value, "operation");
|
|
199
|
+
copyScalar(response, value, "expectedRevision");
|
|
200
|
+
copyScalar(response, value, "phase");
|
|
201
|
+
copyScalar(response, value, "reason");
|
|
202
|
+
for (const key of [
|
|
203
|
+
"actual",
|
|
204
|
+
"current",
|
|
205
|
+
"persisted",
|
|
206
|
+
"previous",
|
|
207
|
+
"target"
|
|
208
|
+
]) {
|
|
209
|
+
const model = projectModelReference(value[key]);
|
|
210
|
+
if (model) response[key] = model;
|
|
211
|
+
}
|
|
212
|
+
const budget = projectBudget(value.budget);
|
|
213
|
+
if (budget) response.budget = budget;
|
|
214
|
+
const pending = projectPending(value.pending);
|
|
215
|
+
if (pending) response.pending = pending;
|
|
216
|
+
const request = projectReceipt(value.request);
|
|
217
|
+
if (request) response.request = request;
|
|
218
|
+
const error = projectError(value.error);
|
|
219
|
+
if (error) response.error = error;
|
|
220
|
+
const recoveryRequired = projectError(value.recoveryRequired);
|
|
221
|
+
if (recoveryRequired) response.recoveryRequired = recoveryRequired;
|
|
222
|
+
const notification = projectNotification(value.notification);
|
|
223
|
+
if (notification) response.notification = notification;
|
|
224
|
+
const status = value.status;
|
|
225
|
+
response.status = isPublicStatus(status) ? status : value.recoveryRequired !== void 0 ? "recovery-required" : operation === "status" && value.pending !== void 0 ? "pending" : operation === "status" ? "applied" : "failed";
|
|
226
|
+
return response;
|
|
227
|
+
}
|
|
228
|
+
function createRivusModelManagementFailure(code, message) {
|
|
229
|
+
return {
|
|
230
|
+
error: {
|
|
231
|
+
code,
|
|
232
|
+
message
|
|
233
|
+
},
|
|
234
|
+
schemaVersion: 1,
|
|
235
|
+
status: "failed"
|
|
236
|
+
};
|
|
237
|
+
}
|
|
238
|
+
function projectModelReference(value) {
|
|
239
|
+
if (!isRecord(value) || typeof value.provider !== "string" || typeof value.model !== "string") return void 0;
|
|
240
|
+
const result = {
|
|
241
|
+
model: value.model,
|
|
242
|
+
provider: value.provider
|
|
243
|
+
};
|
|
244
|
+
if (typeof value.label === "string") return {
|
|
245
|
+
...result,
|
|
246
|
+
label: value.label
|
|
247
|
+
};
|
|
248
|
+
if (typeof value.bindingRevision === "string") return {
|
|
249
|
+
...result,
|
|
250
|
+
bindingRevision: value.bindingRevision
|
|
251
|
+
};
|
|
252
|
+
return result;
|
|
253
|
+
}
|
|
254
|
+
function projectPending(value) {
|
|
255
|
+
if (!isRecord(value)) return void 0;
|
|
256
|
+
const result = {};
|
|
257
|
+
copyScalar(result, value, "phase");
|
|
258
|
+
copyScalar(result, value, "reason");
|
|
259
|
+
if (result.reason === void 0 && typeof result.phase === "string") result.reason = result.phase;
|
|
260
|
+
copyScalar(result, value, "requestId");
|
|
261
|
+
copyScalar(result, value, "updatedAt");
|
|
262
|
+
const request = projectReceipt(value.request);
|
|
263
|
+
if (request) result.request = request;
|
|
264
|
+
const target = projectModelReference(value.target);
|
|
265
|
+
if (target) result.target = target;
|
|
266
|
+
return Object.keys(result).length > 0 ? result : void 0;
|
|
267
|
+
}
|
|
268
|
+
function projectReceipt(value) {
|
|
269
|
+
if (!isRecord(value)) return void 0;
|
|
270
|
+
const result = {};
|
|
271
|
+
for (const key of [
|
|
272
|
+
"requestId",
|
|
273
|
+
"revision",
|
|
274
|
+
"status",
|
|
275
|
+
"phase",
|
|
276
|
+
"operation",
|
|
277
|
+
"expectedRevision",
|
|
278
|
+
"acceptedAt",
|
|
279
|
+
"updatedAt"
|
|
280
|
+
]) copyScalar(result, value, key);
|
|
281
|
+
const current = projectModelReference(value.current);
|
|
282
|
+
if (current) result.current = current;
|
|
283
|
+
const previous = projectModelReference(value.previous);
|
|
284
|
+
if (previous) result.previous = previous;
|
|
285
|
+
const target = projectModelReference(value.target);
|
|
286
|
+
if (target) result.target = target;
|
|
287
|
+
const budget = projectBudget(value.budget);
|
|
288
|
+
if (budget) result.budget = budget;
|
|
289
|
+
const error = projectError(value.error);
|
|
290
|
+
if (error) result.error = error;
|
|
291
|
+
const notification = projectNotification(value.notification);
|
|
292
|
+
if (notification) result.notification = notification;
|
|
293
|
+
return Object.keys(result).length > 0 ? result : void 0;
|
|
294
|
+
}
|
|
295
|
+
function projectBudget(value) {
|
|
296
|
+
if (!isRecord(value)) return void 0;
|
|
297
|
+
const result = {};
|
|
298
|
+
for (const key of [
|
|
299
|
+
"deadlineAt",
|
|
300
|
+
"maxOutputTokens",
|
|
301
|
+
"maxPaidRequests",
|
|
302
|
+
"outputTokens",
|
|
303
|
+
"paidRequests"
|
|
304
|
+
]) copyScalar(result, value, key);
|
|
305
|
+
return Object.keys(result).length > 0 ? result : void 0;
|
|
306
|
+
}
|
|
307
|
+
function projectError(value) {
|
|
308
|
+
if (!isRecord(value) || typeof value.code !== "string" || typeof value.message !== "string") return void 0;
|
|
309
|
+
return {
|
|
310
|
+
code: value.code,
|
|
311
|
+
message: value.message
|
|
312
|
+
};
|
|
313
|
+
}
|
|
314
|
+
function projectNotification(value) {
|
|
315
|
+
if (!isRecord(value)) return void 0;
|
|
316
|
+
const result = {};
|
|
317
|
+
copyScalar(result, value, "attempts");
|
|
318
|
+
copyScalar(result, value, "lastAttemptAt");
|
|
319
|
+
copyScalar(result, value, "status");
|
|
320
|
+
return Object.keys(result).length > 0 ? result : void 0;
|
|
321
|
+
}
|
|
322
|
+
function copyScalar(target, source, key) {
|
|
323
|
+
const value = source[key];
|
|
324
|
+
if (typeof value === "string" || typeof value === "number" || typeof value === "boolean") target[key] = value;
|
|
325
|
+
}
|
|
326
|
+
function parseTarget(value) {
|
|
327
|
+
if (!value) throw new Error("model request target is missing");
|
|
328
|
+
const separator = value.indexOf("/");
|
|
329
|
+
return {
|
|
330
|
+
model: value.slice(separator + 1),
|
|
331
|
+
provider: value.slice(0, separator)
|
|
332
|
+
};
|
|
333
|
+
}
|
|
334
|
+
function isPublicStatus(value) {
|
|
335
|
+
return value === "applied" || value === "failed" || value === "pending" || value === "recovery-required" || value === "restored";
|
|
336
|
+
}
|
|
337
|
+
function optionalString(value) {
|
|
338
|
+
return typeof value === "string" && value.trim() ? value.trim() : void 0;
|
|
339
|
+
}
|
|
340
|
+
function isRecord(value) {
|
|
341
|
+
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
342
|
+
}
|
|
343
|
+
//#endregion
|
|
344
|
+
export { toRivusModelManagementSubmission as a, renderRivusModelCliHelp as c, projectRivusModelCliResponse as i, createRivusModelManagementWireRequest as n, parseRivusModelCliArguments as o, parseRivusModelManagementWireRequest as r, renderRivusModelCliArgumentError as s, createRivusModelManagementFailure as t };
|
|
@@ -1,5 +1,178 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { a as RivusRuntimeToolId, d as RivusResolvedToolDescriptor, f as RivusToolDescriptor, g as RivusToolGrantSet, n as RivusSkillDescriptor, r as RivusSkillGrantSet, s as RegisteredRivusTool, t as RegisteredRivusSkill, u as RivusMemoryScope } from "./rivus-skill.js";
|
|
2
2
|
|
|
3
|
+
//#region src/core/application/agent-catalog/contracts/rivus-agent-definition.d.ts
|
|
4
|
+
interface RivusAgentProfile {
|
|
5
|
+
readonly id: string;
|
|
6
|
+
readonly displayName: string;
|
|
7
|
+
readonly systemPrompt: string;
|
|
8
|
+
readonly model: Readonly<Record<string, unknown>>;
|
|
9
|
+
readonly tools: {
|
|
10
|
+
readonly allow: ReadonlyArray<string>;
|
|
11
|
+
};
|
|
12
|
+
readonly skills: {
|
|
13
|
+
readonly allow: ReadonlyArray<string>;
|
|
14
|
+
};
|
|
15
|
+
readonly memory: {
|
|
16
|
+
readonly scopes: ReadonlyArray<RivusMemoryScope>;
|
|
17
|
+
};
|
|
18
|
+
readonly runtimeTools?: {
|
|
19
|
+
readonly allow: ReadonlyArray<RivusRuntimeToolId>;
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
interface RegisteredRivusAgentProfile extends RivusAgentProfile {
|
|
23
|
+
readonly pluginId: string;
|
|
24
|
+
}
|
|
25
|
+
interface RivusAgentDeployment {
|
|
26
|
+
readonly agentId: string;
|
|
27
|
+
readonly pluginId: string;
|
|
28
|
+
readonly profileId: string;
|
|
29
|
+
readonly projectSpaceId?: string;
|
|
30
|
+
readonly endpointIds: ReadonlyArray<string>;
|
|
31
|
+
readonly memory?: {
|
|
32
|
+
readonly scopes: ReadonlyArray<RivusMemoryScope>;
|
|
33
|
+
readonly tool: boolean;
|
|
34
|
+
};
|
|
35
|
+
readonly runtimeTools?: {
|
|
36
|
+
readonly allow: ReadonlyArray<RivusRuntimeToolId>;
|
|
37
|
+
};
|
|
38
|
+
readonly skills: {
|
|
39
|
+
readonly allow: ReadonlyArray<string>;
|
|
40
|
+
};
|
|
41
|
+
readonly tools: {
|
|
42
|
+
readonly allow: ReadonlyArray<string>;
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
interface ResolvedRivusAgentDefinition {
|
|
46
|
+
readonly agentId: string;
|
|
47
|
+
readonly pluginId: string;
|
|
48
|
+
readonly profileId: string;
|
|
49
|
+
readonly projectSpaceId?: string;
|
|
50
|
+
readonly projectSpaceRevision?: string;
|
|
51
|
+
readonly endpointIds: ReadonlyArray<string>;
|
|
52
|
+
readonly profileRevision: string;
|
|
53
|
+
readonly systemPrompt: string;
|
|
54
|
+
readonly model: Readonly<Record<string, unknown>>;
|
|
55
|
+
readonly memory: {
|
|
56
|
+
readonly scopes: ReadonlyArray<RivusMemoryScope>;
|
|
57
|
+
readonly tool: boolean;
|
|
58
|
+
};
|
|
59
|
+
readonly runtimeToolGrantSet: RivusRuntimeToolGrantSet;
|
|
60
|
+
readonly skillGrantSet: RivusSkillGrantSet;
|
|
61
|
+
readonly skills: ReadonlyArray<RegisteredRivusSkill>;
|
|
62
|
+
readonly tools: ReadonlyArray<RivusResolvedToolDescriptor>;
|
|
63
|
+
readonly toolGrantSet: RivusToolGrantSet;
|
|
64
|
+
}
|
|
65
|
+
interface RivusRuntimeToolGrantSet {
|
|
66
|
+
readonly revision: string;
|
|
67
|
+
readonly toolIds: ReadonlyArray<RivusRuntimeToolId>;
|
|
68
|
+
}
|
|
69
|
+
//#endregion
|
|
70
|
+
//#region src/core/application/agent-catalog/contracts/rivus-plugin.d.ts
|
|
71
|
+
declare const RIVUS_PLUGIN_API_VERSION = "1";
|
|
72
|
+
interface RivusPluginManifest {
|
|
73
|
+
readonly apiVersion: string;
|
|
74
|
+
readonly id: string;
|
|
75
|
+
readonly version: string;
|
|
76
|
+
}
|
|
77
|
+
interface RegisteredRivusPlugin extends RivusPluginManifest {}
|
|
78
|
+
declare class InvalidRivusPlugin extends Error {
|
|
79
|
+
readonly name = "InvalidRivusPlugin";
|
|
80
|
+
}
|
|
81
|
+
//#endregion
|
|
82
|
+
//#region src/core/application/automation/presentation/automation-presentation.d.ts
|
|
83
|
+
declare const AUTOMATION_PRESENTATION_SCHEMA_VERSION: 1;
|
|
84
|
+
type AutomationPresentationKind = "daily-ai" | "generic" | "industry" | "news" | "subscriptions";
|
|
85
|
+
interface AutomationPresentationSource {
|
|
86
|
+
readonly label: string;
|
|
87
|
+
readonly url: string;
|
|
88
|
+
}
|
|
89
|
+
interface AutomationPresentationItem {
|
|
90
|
+
readonly headline: string;
|
|
91
|
+
readonly note?: string;
|
|
92
|
+
readonly sources: ReadonlyArray<AutomationPresentationSource>;
|
|
93
|
+
}
|
|
94
|
+
interface AutomationPresentationSection {
|
|
95
|
+
readonly id: string;
|
|
96
|
+
readonly items: ReadonlyArray<AutomationPresentationItem>;
|
|
97
|
+
readonly title: string;
|
|
98
|
+
}
|
|
99
|
+
interface AutomationPresentation {
|
|
100
|
+
readonly footnote?: string;
|
|
101
|
+
readonly kind?: AutomationPresentationKind;
|
|
102
|
+
readonly meta: ReadonlyArray<string>;
|
|
103
|
+
readonly schemaVersion: typeof AUTOMATION_PRESENTATION_SCHEMA_VERSION;
|
|
104
|
+
readonly sections: ReadonlyArray<AutomationPresentationSection>;
|
|
105
|
+
readonly summary?: string;
|
|
106
|
+
readonly title: string;
|
|
107
|
+
}
|
|
108
|
+
interface AutomationPresentationInput {
|
|
109
|
+
readonly footnote?: string;
|
|
110
|
+
readonly kind?: AutomationPresentationKind;
|
|
111
|
+
readonly meta?: ReadonlyArray<string>;
|
|
112
|
+
readonly sections: ReadonlyArray<{
|
|
113
|
+
readonly id: string;
|
|
114
|
+
readonly items: ReadonlyArray<{
|
|
115
|
+
readonly headline: string;
|
|
116
|
+
readonly note?: string;
|
|
117
|
+
readonly sources?: ReadonlyArray<AutomationPresentationSource>;
|
|
118
|
+
}>;
|
|
119
|
+
readonly title: string;
|
|
120
|
+
}>;
|
|
121
|
+
readonly summary?: string;
|
|
122
|
+
readonly title: string;
|
|
123
|
+
}
|
|
124
|
+
declare class InvalidAutomationPresentation extends Error {
|
|
125
|
+
readonly name = "InvalidAutomationPresentation";
|
|
126
|
+
}
|
|
127
|
+
declare function createAutomationPresentation(input: AutomationPresentationInput): AutomationPresentation;
|
|
128
|
+
declare function readAutomationPresentation(value: unknown): AutomationPresentation;
|
|
129
|
+
//#endregion
|
|
130
|
+
//#region src/core/application/agent-catalog/contracts/rivus-automation-template.d.ts
|
|
131
|
+
interface RivusAutomationTemplate {
|
|
132
|
+
readonly id: string;
|
|
133
|
+
readonly profileId: string;
|
|
134
|
+
readonly requestedSkillIds: ReadonlyArray<string>;
|
|
135
|
+
readonly requestedToolIds: ReadonlyArray<string>;
|
|
136
|
+
readonly createInput: (tick: RivusAutomationTickContext) => RivusAutomationInput;
|
|
137
|
+
readonly createPresentation?: (output: RivusAutomationOutput) => AutomationPresentation;
|
|
138
|
+
}
|
|
139
|
+
interface RivusAutomationTickContext {
|
|
140
|
+
readonly occurrence: string;
|
|
141
|
+
}
|
|
142
|
+
interface RivusAutomationInput {
|
|
143
|
+
readonly text: string;
|
|
144
|
+
}
|
|
145
|
+
interface RivusAutomationOutput {
|
|
146
|
+
readonly occurrence: string;
|
|
147
|
+
readonly text: string;
|
|
148
|
+
}
|
|
149
|
+
interface RegisteredRivusAutomation extends RivusAutomationTemplate {
|
|
150
|
+
readonly pluginId: string;
|
|
151
|
+
}
|
|
152
|
+
//#endregion
|
|
153
|
+
//#region src/core/application/agent-catalog/contracts/rivus-plugin-contracts.d.ts
|
|
154
|
+
interface RivusPluginRegistry {
|
|
155
|
+
registerAgentProfile(profile: RivusAgentProfile): void;
|
|
156
|
+
registerTool(tool: RivusToolDescriptor): void;
|
|
157
|
+
registerSkill(skill: RivusSkillDescriptor): void;
|
|
158
|
+
registerAutomation(template: RivusAutomationTemplate): void;
|
|
159
|
+
}
|
|
160
|
+
interface RivusPlugin {
|
|
161
|
+
readonly manifest: RivusPluginManifest;
|
|
162
|
+
register(registry: RivusPluginRegistry): void;
|
|
163
|
+
}
|
|
164
|
+
interface RivusPluginCatalogSnapshot {
|
|
165
|
+
readonly plugins: ReadonlyArray<RegisteredRivusPlugin>;
|
|
166
|
+
readonly profiles: ReadonlyArray<RegisteredRivusAgentProfile>;
|
|
167
|
+
readonly tools: ReadonlyArray<RegisteredRivusTool>;
|
|
168
|
+
readonly skills: ReadonlyArray<RegisteredRivusSkill>;
|
|
169
|
+
readonly automations: ReadonlyArray<RegisteredRivusAutomation>;
|
|
170
|
+
}
|
|
171
|
+
interface RivusPluginCatalog {
|
|
172
|
+
registerPlugin(plugin: RivusPlugin): void;
|
|
173
|
+
snapshot(): RivusPluginCatalogSnapshot;
|
|
174
|
+
}
|
|
175
|
+
//#endregion
|
|
3
176
|
//#region src/testing/rivus-plugin-testkit.d.ts
|
|
4
177
|
interface RivusPluginLifecycleProbe {
|
|
5
178
|
activate(): Promise<{
|
|
@@ -24,4 +197,4 @@ declare class RivusPluginConformanceError extends Error {
|
|
|
24
197
|
declare function assertRivusPluginConforms(input: RivusPluginConformanceInput): Promise<RivusPluginConformanceReport>;
|
|
25
198
|
declare function createFakeRivusPlugin(): RivusPlugin;
|
|
26
199
|
//#endregion
|
|
27
|
-
export { assertRivusPluginConforms as a, RivusPluginLifecycleProbe as i, RivusPluginConformanceInput as n, createFakeRivusPlugin as o, RivusPluginConformanceReport as r, RivusPluginConformanceError as t };
|
|
200
|
+
export { RegisteredRivusAgentProfile as A, InvalidAutomationPresentation as C, RIVUS_PLUGIN_API_VERSION as D, InvalidRivusPlugin as E, RivusAgentDeployment as M, RivusAgentProfile as N, RegisteredRivusPlugin as O, RivusRuntimeToolGrantSet as P, AutomationPresentationSource as S, readAutomationPresentation as T, AutomationPresentation as _, assertRivusPluginConforms as a, AutomationPresentationKind as b, RivusPluginCatalog as c, RegisteredRivusAutomation as d, RivusAutomationInput as f, AUTOMATION_PRESENTATION_SCHEMA_VERSION as g, RivusAutomationTickContext as h, RivusPluginLifecycleProbe as i, ResolvedRivusAgentDefinition as j, RivusPluginManifest as k, RivusPluginCatalogSnapshot as l, RivusAutomationTemplate as m, RivusPluginConformanceInput as n, createFakeRivusPlugin as o, RivusAutomationOutput as p, RivusPluginConformanceReport as r, RivusPlugin as s, RivusPluginConformanceError as t, RivusPluginRegistry as u, AutomationPresentationInput as v, createAutomationPresentation as w, AutomationPresentationSection as x, AutomationPresentationItem as y };
|
|
@@ -1,8 +1,15 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { t as createSha256Digest } from "./sha256-digest.js";
|
|
2
|
+
import { o as createRivusHostToolDescriptorProvider, p as deepFreeze, r as createRivusPluginCatalog$1, s as RIVUS_MEMORY_TOOL_ID, t as createRivusAgentCatalog } from "./rivus-agent-definition-resolver.js";
|
|
3
3
|
//#region src/adapters/compatibility/agent-catalog/rivus-agent-catalog.ts
|
|
4
|
+
const runtime = Object.freeze({
|
|
5
|
+
digest: createSha256Digest,
|
|
6
|
+
deepFreeze
|
|
7
|
+
});
|
|
8
|
+
function createRivusPluginCatalog() {
|
|
9
|
+
return createRivusPluginCatalog$1(runtime);
|
|
10
|
+
}
|
|
4
11
|
function createCompatibleRivusAgentCatalog(options = {}) {
|
|
5
|
-
return createRivusAgentCatalog(
|
|
12
|
+
return createRivusAgentCatalog([createRivusHostToolDescriptorProvider({ backgroundSessions: options.backgroundSessions === true })], runtime);
|
|
6
13
|
}
|
|
7
14
|
function resolveRivusAgentDefinition(catalog, deployment, options = {}) {
|
|
8
15
|
return createCompatibleRivusAgentCatalog(options).resolve(catalog, deployment);
|
|
@@ -68,4 +75,4 @@ function createFakeRivusPlugin() {
|
|
|
68
75
|
};
|
|
69
76
|
}
|
|
70
77
|
//#endregion
|
|
71
|
-
export {
|
|
78
|
+
export { createRivusPluginCatalog as a, createCompatibleRivusAgentCatalog as i, assertRivusPluginConforms as n, resolveRivusAgentDefinition as o, createFakeRivusPlugin as r, RivusPluginConformanceError as t };
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
//#region src/core/application/agent-catalog/contracts/rivus-tool.d.ts
|
|
2
|
+
type RivusMemoryScope = "conversation" | "agent-private" | "project" | "shared-user-profile";
|
|
3
|
+
type RivusToolRisk = "observe" | "mutate" | "irreversible" | "host-control";
|
|
4
|
+
type RivusToolIdempotency = "none" | "supported" | "required";
|
|
5
|
+
declare class RivusToolInputRejected extends Error {
|
|
6
|
+
readonly name: string;
|
|
7
|
+
}
|
|
8
|
+
interface RivusToolExecutor {
|
|
9
|
+
execute(input: unknown, context: RivusToolExecutionContext): unknown;
|
|
10
|
+
}
|
|
11
|
+
interface RivusToolExecutionOrigin {
|
|
12
|
+
readonly endpointId: string;
|
|
13
|
+
readonly tenantKey: string;
|
|
14
|
+
readonly conversationId?: string;
|
|
15
|
+
readonly allowedActorOpenIds: ReadonlyArray<string>;
|
|
16
|
+
}
|
|
17
|
+
interface RivusToolExecutionContext {
|
|
18
|
+
readonly agentId: string;
|
|
19
|
+
readonly instanceId: string;
|
|
20
|
+
readonly memory?: RivusMemoryAuthority;
|
|
21
|
+
readonly runId: string;
|
|
22
|
+
readonly callId: string;
|
|
23
|
+
readonly operationId?: string;
|
|
24
|
+
readonly policyEpoch: number;
|
|
25
|
+
readonly toolId: string;
|
|
26
|
+
readonly toolVersion: string;
|
|
27
|
+
readonly sessionKey: string;
|
|
28
|
+
readonly origin?: RivusToolExecutionOrigin;
|
|
29
|
+
readonly sourceMessageId?: string;
|
|
30
|
+
}
|
|
31
|
+
interface RivusMemoryAuthority {
|
|
32
|
+
readonly audience: "group" | "private";
|
|
33
|
+
readonly conversationId?: string;
|
|
34
|
+
readonly projectId?: string;
|
|
35
|
+
readonly scopes: ReadonlyArray<RivusMemoryScope>;
|
|
36
|
+
readonly subjectId: string;
|
|
37
|
+
readonly tenantId: string;
|
|
38
|
+
}
|
|
39
|
+
interface RivusToolFactoryContext {
|
|
40
|
+
readonly toolId: string;
|
|
41
|
+
readonly toolVersion: string;
|
|
42
|
+
}
|
|
43
|
+
interface RivusToolDescriptor {
|
|
44
|
+
readonly id: string;
|
|
45
|
+
readonly version: string;
|
|
46
|
+
readonly digest: string;
|
|
47
|
+
readonly description: string;
|
|
48
|
+
readonly inputSchema: unknown;
|
|
49
|
+
readonly risk: RivusToolRisk;
|
|
50
|
+
readonly idempotency: RivusToolIdempotency;
|
|
51
|
+
readonly createExecutor: (context: RivusToolFactoryContext) => RivusToolExecutor;
|
|
52
|
+
}
|
|
53
|
+
interface RivusHostToolDescriptor extends RivusToolDescriptor {
|
|
54
|
+
readonly replayCompleted?: (input: unknown, completedResult: unknown, context: RivusToolExecutionContext) => unknown;
|
|
55
|
+
}
|
|
56
|
+
interface RegisteredRivusTool extends RivusToolDescriptor {
|
|
57
|
+
readonly pluginId: string;
|
|
58
|
+
}
|
|
59
|
+
interface RivusResolvedToolDescriptor {
|
|
60
|
+
readonly id: string;
|
|
61
|
+
readonly version: string;
|
|
62
|
+
readonly digest: string;
|
|
63
|
+
readonly description: string;
|
|
64
|
+
readonly inputSchema: unknown;
|
|
65
|
+
readonly risk: RivusToolRisk;
|
|
66
|
+
readonly idempotency: RivusToolIdempotency;
|
|
67
|
+
readonly pluginId: string;
|
|
68
|
+
}
|
|
69
|
+
interface RivusToolGrantSet {
|
|
70
|
+
readonly toolIds: ReadonlyArray<string>;
|
|
71
|
+
readonly revision: string;
|
|
72
|
+
}
|
|
73
|
+
//#endregion
|
|
74
|
+
//#region src/core/application/agent-catalog/contracts/rivus-runtime-tool.d.ts
|
|
75
|
+
declare const RIVUS_RUNTIME_TOOL_IDS: readonly ["read", "bash", "edit", "write", "grep", "find", "ls"];
|
|
76
|
+
type RivusRuntimeToolId = (typeof RIVUS_RUNTIME_TOOL_IDS)[number];
|
|
77
|
+
declare function isRivusRuntimeToolId(value: string): value is RivusRuntimeToolId;
|
|
78
|
+
//#endregion
|
|
79
|
+
//#region src/core/application/agent-catalog/contracts/rivus-skill.d.ts
|
|
80
|
+
interface RivusSkillDescriptor {
|
|
81
|
+
readonly id: string;
|
|
82
|
+
readonly version: string;
|
|
83
|
+
readonly digest: string;
|
|
84
|
+
readonly title: string;
|
|
85
|
+
readonly content: string;
|
|
86
|
+
}
|
|
87
|
+
interface RegisteredRivusSkill extends RivusSkillDescriptor {
|
|
88
|
+
readonly pluginId: string;
|
|
89
|
+
}
|
|
90
|
+
interface RivusSkillGrantSet {
|
|
91
|
+
readonly skillIds: ReadonlyArray<string>;
|
|
92
|
+
readonly revision: string;
|
|
93
|
+
}
|
|
94
|
+
//#endregion
|
|
95
|
+
export { RivusToolIdempotency as _, RivusRuntimeToolId as a, RivusHostToolDescriptor as c, RivusResolvedToolDescriptor as d, RivusToolDescriptor as f, RivusToolGrantSet as g, RivusToolFactoryContext as h, RIVUS_RUNTIME_TOOL_IDS as i, RivusMemoryAuthority as l, RivusToolExecutor as m, RivusSkillDescriptor as n, isRivusRuntimeToolId as o, RivusToolExecutionContext as p, RivusSkillGrantSet as r, RegisteredRivusTool as s, RegisteredRivusSkill as t, RivusMemoryScope as u, RivusToolInputRejected as v, RivusToolRisk as y };
|