@llm-dev-ops/agentics-cli 1.4.14 → 1.4.16
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 +0 -1
- package/dist/adapters/base-adapter.d.ts +109 -1
- package/dist/adapters/base-adapter.d.ts.map +1 -1
- package/dist/adapters/base-adapter.js +368 -18
- package/dist/adapters/base-adapter.js.map +1 -1
- package/dist/adapters/index.d.ts +1 -1
- package/dist/adapters/index.d.ts.map +1 -1
- package/dist/adapters/index.js +3 -1
- package/dist/adapters/index.js.map +1 -1
- package/dist/agents/cli-ux-agent.d.ts +9 -3
- package/dist/agents/cli-ux-agent.d.ts.map +1 -1
- package/dist/agents/cli-ux-agent.js +13 -67
- package/dist/agents/cli-ux-agent.js.map +1 -1
- package/dist/agents/decision-event.d.ts +1 -1
- package/dist/agents/decision-event.d.ts.map +1 -1
- package/dist/agents/decision-event.js +12 -7
- package/dist/agents/decision-event.js.map +1 -1
- package/dist/auth/index.d.ts +1 -3
- package/dist/auth/index.d.ts.map +1 -1
- package/dist/auth/index.js +1 -3
- package/dist/auth/index.js.map +1 -1
- package/dist/auth/internal-allowlist.d.ts +19 -17
- package/dist/auth/internal-allowlist.d.ts.map +1 -1
- package/dist/auth/internal-allowlist.js +20 -90
- package/dist/auth/internal-allowlist.js.map +1 -1
- package/dist/auth/role-permissions.d.ts +23 -6
- package/dist/auth/role-permissions.d.ts.map +1 -1
- package/dist/auth/role-permissions.js +25 -37
- package/dist/auth/role-permissions.js.map +1 -1
- package/dist/cli/index.js +430 -27
- package/dist/cli/index.js.map +1 -1
- package/dist/commands/agents.d.ts +77 -0
- package/dist/commands/agents.d.ts.map +1 -0
- package/dist/commands/agents.js +378 -0
- package/dist/commands/agents.js.map +1 -0
- package/dist/commands/demo.d.ts +30 -0
- package/dist/commands/demo.d.ts.map +1 -0
- package/dist/commands/demo.js +393 -0
- package/dist/commands/demo.js.map +1 -0
- package/dist/commands/diligence.d.ts.map +1 -1
- package/dist/commands/diligence.js +10 -15
- package/dist/commands/diligence.js.map +1 -1
- package/dist/commands/export.d.ts.map +1 -1
- package/dist/commands/export.js +5 -7
- package/dist/commands/export.js.map +1 -1
- package/dist/commands/index.d.ts +2 -0
- package/dist/commands/index.d.ts.map +1 -1
- package/dist/commands/index.js +1 -0
- package/dist/commands/index.js.map +1 -1
- package/dist/commands/inspect.d.ts +17 -4
- package/dist/commands/inspect.d.ts.map +1 -1
- package/dist/commands/inspect.js +189 -77
- package/dist/commands/inspect.js.map +1 -1
- package/dist/commands/quantify.d.ts.map +1 -1
- package/dist/commands/quantify.js +12 -0
- package/dist/commands/quantify.js.map +1 -1
- package/dist/commands/readiness.d.ts +47 -0
- package/dist/commands/readiness.d.ts.map +1 -0
- package/dist/commands/readiness.js +270 -0
- package/dist/commands/readiness.js.map +1 -0
- package/dist/commands/simulate.d.ts +6 -0
- package/dist/commands/simulate.d.ts.map +1 -1
- package/dist/commands/simulate.js +167 -123
- package/dist/commands/simulate.js.map +1 -1
- package/dist/commands/whoami.d.ts +1 -6
- package/dist/commands/whoami.d.ts.map +1 -1
- package/dist/commands/whoami.js +4 -28
- package/dist/commands/whoami.js.map +1 -1
- package/dist/config/endpoints.d.ts.map +1 -1
- package/dist/config/endpoints.js +150 -2
- package/dist/config/endpoints.js.map +1 -1
- package/dist/contracts/adr-command-semantics.d.ts.map +1 -1
- package/dist/contracts/adr-command-semantics.js +17 -3
- package/dist/contracts/adr-command-semantics.js.map +1 -1
- package/dist/contracts/canonical.d.ts +207 -0
- package/dist/contracts/canonical.d.ts.map +1 -0
- package/dist/contracts/canonical.js +191 -0
- package/dist/contracts/canonical.js.map +1 -0
- package/dist/contracts/index.d.ts +3 -1
- package/dist/contracts/index.d.ts.map +1 -1
- package/dist/contracts/index.js +2 -0
- package/dist/contracts/index.js.map +1 -1
- package/dist/contracts/schemas/index.d.ts +709 -5
- package/dist/contracts/schemas/index.d.ts.map +1 -1
- package/dist/contracts/schemas/index.js +415 -0
- package/dist/contracts/schemas/index.js.map +1 -1
- package/dist/contracts/validator.d.ts +3 -3
- package/dist/contracts/validator.d.ts.map +1 -1
- package/dist/contracts/validator.js +48 -5
- package/dist/contracts/validator.js.map +1 -1
- package/dist/gates/argument-guard.js +1 -1
- package/dist/gates/argument-guard.js.map +1 -1
- package/dist/gates/auth-session-gate.d.ts +2 -2
- package/dist/gates/auth-session-gate.d.ts.map +1 -1
- package/dist/gates/auth-session-gate.js +2 -26
- package/dist/gates/auth-session-gate.js.map +1 -1
- package/dist/gates/execution-gate.d.ts +23 -54
- package/dist/gates/execution-gate.d.ts.map +1 -1
- package/dist/gates/execution-gate.js +66 -166
- package/dist/gates/execution-gate.js.map +1 -1
- package/dist/gates/index.d.ts +6 -0
- package/dist/gates/index.d.ts.map +1 -1
- package/dist/gates/index.js +8 -0
- package/dist/gates/index.js.map +1 -1
- package/dist/gates/meta-simulation-detector.d.ts +48 -0
- package/dist/gates/meta-simulation-detector.d.ts.map +1 -0
- package/dist/gates/meta-simulation-detector.js +45 -0
- package/dist/gates/meta-simulation-detector.js.map +1 -0
- package/dist/gates/readiness-gate.d.ts +108 -0
- package/dist/gates/readiness-gate.d.ts.map +1 -0
- package/dist/gates/readiness-gate.js +194 -0
- package/dist/gates/readiness-gate.js.map +1 -0
- package/dist/gates/ruvector-acceptance-gate.d.ts +78 -0
- package/dist/gates/ruvector-acceptance-gate.d.ts.map +1 -0
- package/dist/gates/ruvector-acceptance-gate.js +191 -0
- package/dist/gates/ruvector-acceptance-gate.js.map +1 -0
- package/dist/modules/artifact-handoff.d.ts.map +1 -1
- package/dist/modules/artifact-handoff.js +26 -0
- package/dist/modules/artifact-handoff.js.map +1 -1
- package/dist/modules/command-parser.d.ts +1 -1
- package/dist/modules/command-parser.d.ts.map +1 -1
- package/dist/modules/command-parser.js +5 -1
- package/dist/modules/command-parser.js.map +1 -1
- package/dist/modules/output-renderer.d.ts +13 -1
- package/dist/modules/output-renderer.d.ts.map +1 -1
- package/dist/modules/output-renderer.js +68 -0
- package/dist/modules/output-renderer.js.map +1 -1
- package/dist/runtime/claude-code-runner.d.ts.map +1 -1
- package/dist/runtime/claude-code-runner.js +165 -0
- package/dist/runtime/claude-code-runner.js.map +1 -1
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +59 -1
- package/dist/server/index.js.map +1 -1
- package/dist/server/routes/agents.d.ts +36 -0
- package/dist/server/routes/agents.d.ts.map +1 -0
- package/dist/server/routes/agents.js +263 -0
- package/dist/server/routes/agents.js.map +1 -0
- package/dist/server/routes/index.d.ts +1 -0
- package/dist/server/routes/index.d.ts.map +1 -1
- package/dist/server/routes/index.js +2 -0
- package/dist/server/routes/index.js.map +1 -1
- package/dist/synthesis/dynamic-router.d.ts +80 -0
- package/dist/synthesis/dynamic-router.d.ts.map +1 -0
- package/dist/synthesis/dynamic-router.js +63 -0
- package/dist/synthesis/dynamic-router.js.map +1 -0
- package/dist/synthesis/prompts/index.d.ts.map +1 -1
- package/dist/synthesis/prompts/index.js +100 -23
- package/dist/synthesis/prompts/index.js.map +1 -1
- package/dist/types/index.d.ts +86 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +8 -0
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -479,6 +479,8 @@ export interface SimulateRequestContract {
|
|
|
479
479
|
scenario?: ScenarioObject;
|
|
480
480
|
config?: Record<string, unknown>;
|
|
481
481
|
iterations?: number;
|
|
482
|
+
/** Canonical execution context — required by agentics-contracts */
|
|
483
|
+
execution_context?: Record<string, unknown>;
|
|
482
484
|
[key: string]: unknown;
|
|
483
485
|
}
|
|
484
486
|
export interface InspectRequestContract {
|
|
@@ -519,17 +521,19 @@ export interface ExecutionMetadata {
|
|
|
519
521
|
trace_id: string;
|
|
520
522
|
timestamp: string;
|
|
521
523
|
layers_executed?: LayerExecutionRecord[];
|
|
522
|
-
execution_graph?:
|
|
524
|
+
execution_graph?: {
|
|
525
|
+
graph_id: string;
|
|
526
|
+
root_node: string;
|
|
527
|
+
nodes: unknown[];
|
|
528
|
+
edges: unknown[];
|
|
529
|
+
created_at: string;
|
|
530
|
+
};
|
|
523
531
|
}
|
|
524
532
|
export interface LayerExecutionRecord {
|
|
525
533
|
layer: string;
|
|
526
534
|
status: string;
|
|
527
535
|
duration_ms?: number;
|
|
528
536
|
}
|
|
529
|
-
export interface ExecutionGraph {
|
|
530
|
-
nodes: unknown[];
|
|
531
|
-
edges: unknown[];
|
|
532
|
-
}
|
|
533
537
|
/**
|
|
534
538
|
* CLI UX Agent Input Schema
|
|
535
539
|
* Validates inputs to the CLI UX Agent.
|
|
@@ -1035,4 +1039,704 @@ export declare const AgentSchemas: Readonly<{
|
|
|
1035
1039
|
DECISION_EVENT: "decisionEvent";
|
|
1036
1040
|
AGENT_REGISTRATION: "agentRegistration";
|
|
1037
1041
|
}>;
|
|
1042
|
+
export declare const readinessStateSchema: {
|
|
1043
|
+
type: string;
|
|
1044
|
+
properties: {
|
|
1045
|
+
schema: {
|
|
1046
|
+
type: string;
|
|
1047
|
+
const: string;
|
|
1048
|
+
};
|
|
1049
|
+
state: {
|
|
1050
|
+
type: string;
|
|
1051
|
+
enum: string[];
|
|
1052
|
+
};
|
|
1053
|
+
simulation_id: {
|
|
1054
|
+
type: string;
|
|
1055
|
+
};
|
|
1056
|
+
plan_ref: {
|
|
1057
|
+
type: string;
|
|
1058
|
+
};
|
|
1059
|
+
determined_at: {
|
|
1060
|
+
type: string;
|
|
1061
|
+
format: string;
|
|
1062
|
+
};
|
|
1063
|
+
determination_inputs: {
|
|
1064
|
+
type: string;
|
|
1065
|
+
properties: {
|
|
1066
|
+
decision_readiness_summary: {
|
|
1067
|
+
type: string;
|
|
1068
|
+
};
|
|
1069
|
+
integration_manifest: {
|
|
1070
|
+
type: string;
|
|
1071
|
+
};
|
|
1072
|
+
};
|
|
1073
|
+
};
|
|
1074
|
+
execution_gate: {
|
|
1075
|
+
type: string;
|
|
1076
|
+
properties: {
|
|
1077
|
+
locked: {
|
|
1078
|
+
type: string;
|
|
1079
|
+
};
|
|
1080
|
+
reason: {
|
|
1081
|
+
type: string;
|
|
1082
|
+
};
|
|
1083
|
+
prerequisites_total: {
|
|
1084
|
+
type: string;
|
|
1085
|
+
minimum: number;
|
|
1086
|
+
};
|
|
1087
|
+
prerequisites_completed: {
|
|
1088
|
+
type: string;
|
|
1089
|
+
minimum: number;
|
|
1090
|
+
};
|
|
1091
|
+
critical_blockers: {
|
|
1092
|
+
type: string;
|
|
1093
|
+
items: {
|
|
1094
|
+
type: string;
|
|
1095
|
+
properties: {
|
|
1096
|
+
id: {
|
|
1097
|
+
type: string;
|
|
1098
|
+
};
|
|
1099
|
+
system: {
|
|
1100
|
+
type: string;
|
|
1101
|
+
};
|
|
1102
|
+
severity: {
|
|
1103
|
+
type: string;
|
|
1104
|
+
enum: string[];
|
|
1105
|
+
};
|
|
1106
|
+
effort: {
|
|
1107
|
+
type: string;
|
|
1108
|
+
};
|
|
1109
|
+
};
|
|
1110
|
+
required: string[];
|
|
1111
|
+
};
|
|
1112
|
+
};
|
|
1113
|
+
unlock_criteria: {
|
|
1114
|
+
type: string;
|
|
1115
|
+
};
|
|
1116
|
+
};
|
|
1117
|
+
required: string[];
|
|
1118
|
+
};
|
|
1119
|
+
integration_readiness: {
|
|
1120
|
+
type: string;
|
|
1121
|
+
properties: {
|
|
1122
|
+
entities_ready: {
|
|
1123
|
+
type: string;
|
|
1124
|
+
minimum: number;
|
|
1125
|
+
};
|
|
1126
|
+
entities_blocked: {
|
|
1127
|
+
type: string;
|
|
1128
|
+
minimum: number;
|
|
1129
|
+
};
|
|
1130
|
+
entities_total: {
|
|
1131
|
+
type: string;
|
|
1132
|
+
minimum: number;
|
|
1133
|
+
};
|
|
1134
|
+
readiness_pct: {
|
|
1135
|
+
type: string;
|
|
1136
|
+
minimum: number;
|
|
1137
|
+
maximum: number;
|
|
1138
|
+
};
|
|
1139
|
+
systems_ready: {
|
|
1140
|
+
type: string;
|
|
1141
|
+
items: {
|
|
1142
|
+
type: string;
|
|
1143
|
+
};
|
|
1144
|
+
};
|
|
1145
|
+
systems_blocked: {
|
|
1146
|
+
type: string;
|
|
1147
|
+
items: {
|
|
1148
|
+
type: string;
|
|
1149
|
+
};
|
|
1150
|
+
};
|
|
1151
|
+
};
|
|
1152
|
+
required: string[];
|
|
1153
|
+
};
|
|
1154
|
+
financial_posture: {
|
|
1155
|
+
type: string;
|
|
1156
|
+
properties: {
|
|
1157
|
+
annual_api_spend_usd: {
|
|
1158
|
+
type: string;
|
|
1159
|
+
};
|
|
1160
|
+
year1_investment_usd: {
|
|
1161
|
+
type: string;
|
|
1162
|
+
};
|
|
1163
|
+
annual_savings_usd: {
|
|
1164
|
+
type: string;
|
|
1165
|
+
};
|
|
1166
|
+
roi_payback_months: {
|
|
1167
|
+
type: string;
|
|
1168
|
+
};
|
|
1169
|
+
npv_5yr_usd: {
|
|
1170
|
+
type: string;
|
|
1171
|
+
};
|
|
1172
|
+
};
|
|
1173
|
+
required: string[];
|
|
1174
|
+
};
|
|
1175
|
+
audit_matrix: {
|
|
1176
|
+
type: string;
|
|
1177
|
+
properties: {
|
|
1178
|
+
result: {
|
|
1179
|
+
type: string;
|
|
1180
|
+
enum: string[];
|
|
1181
|
+
};
|
|
1182
|
+
checks_passed: {
|
|
1183
|
+
type: string;
|
|
1184
|
+
minimum: number;
|
|
1185
|
+
};
|
|
1186
|
+
checks_total: {
|
|
1187
|
+
type: string;
|
|
1188
|
+
minimum: number;
|
|
1189
|
+
};
|
|
1190
|
+
last_audit: {
|
|
1191
|
+
type: string;
|
|
1192
|
+
format: string;
|
|
1193
|
+
};
|
|
1194
|
+
};
|
|
1195
|
+
required: string[];
|
|
1196
|
+
};
|
|
1197
|
+
mode_transitions: {
|
|
1198
|
+
type: string;
|
|
1199
|
+
additionalProperties: {
|
|
1200
|
+
type: string;
|
|
1201
|
+
properties: {
|
|
1202
|
+
description: {
|
|
1203
|
+
type: string;
|
|
1204
|
+
};
|
|
1205
|
+
allowed_commands: {
|
|
1206
|
+
type: string;
|
|
1207
|
+
items: {
|
|
1208
|
+
type: string;
|
|
1209
|
+
};
|
|
1210
|
+
};
|
|
1211
|
+
blocked_commands: {
|
|
1212
|
+
type: string;
|
|
1213
|
+
items: {
|
|
1214
|
+
type: string;
|
|
1215
|
+
};
|
|
1216
|
+
};
|
|
1217
|
+
};
|
|
1218
|
+
};
|
|
1219
|
+
};
|
|
1220
|
+
};
|
|
1221
|
+
required: string[];
|
|
1222
|
+
additionalProperties: boolean;
|
|
1223
|
+
};
|
|
1224
|
+
export declare const ReadinessSchemas: Readonly<{
|
|
1225
|
+
READINESS_STATE: "readinessState";
|
|
1226
|
+
}>;
|
|
1227
|
+
/**
|
|
1228
|
+
* Generic agent invocation request schema.
|
|
1229
|
+
* All downstream agent Cloud Functions accept this envelope.
|
|
1230
|
+
*/
|
|
1231
|
+
export declare const agentInvocationRequestSchema: {
|
|
1232
|
+
type: string;
|
|
1233
|
+
properties: {
|
|
1234
|
+
agent: {
|
|
1235
|
+
type: string;
|
|
1236
|
+
description: string;
|
|
1237
|
+
};
|
|
1238
|
+
payload: {
|
|
1239
|
+
type: string;
|
|
1240
|
+
description: string;
|
|
1241
|
+
};
|
|
1242
|
+
context: {
|
|
1243
|
+
type: string;
|
|
1244
|
+
description: string;
|
|
1245
|
+
};
|
|
1246
|
+
options: {
|
|
1247
|
+
type: string;
|
|
1248
|
+
description: string;
|
|
1249
|
+
};
|
|
1250
|
+
};
|
|
1251
|
+
additionalProperties: boolean;
|
|
1252
|
+
};
|
|
1253
|
+
/**
|
|
1254
|
+
* Generic agent invocation response schema.
|
|
1255
|
+
* All downstream agent responses must include execution_metadata.
|
|
1256
|
+
*/
|
|
1257
|
+
export declare const agentInvocationResponseSchema: {
|
|
1258
|
+
type: string;
|
|
1259
|
+
properties: {
|
|
1260
|
+
id: {
|
|
1261
|
+
type: string;
|
|
1262
|
+
};
|
|
1263
|
+
type: {
|
|
1264
|
+
type: string;
|
|
1265
|
+
};
|
|
1266
|
+
agent: {
|
|
1267
|
+
type: string;
|
|
1268
|
+
};
|
|
1269
|
+
result: {
|
|
1270
|
+
type: string;
|
|
1271
|
+
};
|
|
1272
|
+
execution_metadata: {
|
|
1273
|
+
type: string;
|
|
1274
|
+
};
|
|
1275
|
+
};
|
|
1276
|
+
additionalProperties: boolean;
|
|
1277
|
+
};
|
|
1278
|
+
export declare const testBenchRequestSchema: {
|
|
1279
|
+
type: string;
|
|
1280
|
+
properties: {
|
|
1281
|
+
agent: {
|
|
1282
|
+
type: string;
|
|
1283
|
+
enum: string[];
|
|
1284
|
+
};
|
|
1285
|
+
payload: {
|
|
1286
|
+
type: string;
|
|
1287
|
+
};
|
|
1288
|
+
context: {
|
|
1289
|
+
type: string;
|
|
1290
|
+
};
|
|
1291
|
+
};
|
|
1292
|
+
additionalProperties: boolean;
|
|
1293
|
+
};
|
|
1294
|
+
export declare const observatoryRequestSchema: {
|
|
1295
|
+
type: string;
|
|
1296
|
+
properties: {
|
|
1297
|
+
agent: {
|
|
1298
|
+
type: string;
|
|
1299
|
+
enum: string[];
|
|
1300
|
+
};
|
|
1301
|
+
payload: {
|
|
1302
|
+
type: string;
|
|
1303
|
+
};
|
|
1304
|
+
context: {
|
|
1305
|
+
type: string;
|
|
1306
|
+
};
|
|
1307
|
+
};
|
|
1308
|
+
additionalProperties: boolean;
|
|
1309
|
+
};
|
|
1310
|
+
export declare const shieldRequestSchema: {
|
|
1311
|
+
type: string;
|
|
1312
|
+
properties: {
|
|
1313
|
+
agent: {
|
|
1314
|
+
type: string;
|
|
1315
|
+
enum: string[];
|
|
1316
|
+
};
|
|
1317
|
+
payload: {
|
|
1318
|
+
type: string;
|
|
1319
|
+
};
|
|
1320
|
+
context: {
|
|
1321
|
+
type: string;
|
|
1322
|
+
};
|
|
1323
|
+
};
|
|
1324
|
+
additionalProperties: boolean;
|
|
1325
|
+
};
|
|
1326
|
+
export declare const sentinelRequestSchema: {
|
|
1327
|
+
type: string;
|
|
1328
|
+
properties: {
|
|
1329
|
+
agent: {
|
|
1330
|
+
type: string;
|
|
1331
|
+
enum: string[];
|
|
1332
|
+
};
|
|
1333
|
+
payload: {
|
|
1334
|
+
type: string;
|
|
1335
|
+
};
|
|
1336
|
+
context: {
|
|
1337
|
+
type: string;
|
|
1338
|
+
};
|
|
1339
|
+
};
|
|
1340
|
+
additionalProperties: boolean;
|
|
1341
|
+
};
|
|
1342
|
+
export declare const memoryGraphRequestSchema: {
|
|
1343
|
+
type: string;
|
|
1344
|
+
properties: {
|
|
1345
|
+
agent: {
|
|
1346
|
+
type: string;
|
|
1347
|
+
enum: string[];
|
|
1348
|
+
};
|
|
1349
|
+
payload: {
|
|
1350
|
+
type: string;
|
|
1351
|
+
};
|
|
1352
|
+
context: {
|
|
1353
|
+
type: string;
|
|
1354
|
+
};
|
|
1355
|
+
};
|
|
1356
|
+
additionalProperties: boolean;
|
|
1357
|
+
};
|
|
1358
|
+
export declare const latencyLensRequestSchema: {
|
|
1359
|
+
type: string;
|
|
1360
|
+
properties: {
|
|
1361
|
+
agent: {
|
|
1362
|
+
type: string;
|
|
1363
|
+
enum: string[];
|
|
1364
|
+
};
|
|
1365
|
+
payload: {
|
|
1366
|
+
type: string;
|
|
1367
|
+
};
|
|
1368
|
+
context: {
|
|
1369
|
+
type: string;
|
|
1370
|
+
};
|
|
1371
|
+
};
|
|
1372
|
+
additionalProperties: boolean;
|
|
1373
|
+
};
|
|
1374
|
+
export declare const forgeRequestSchema: {
|
|
1375
|
+
type: string;
|
|
1376
|
+
properties: {
|
|
1377
|
+
agent: {
|
|
1378
|
+
type: string;
|
|
1379
|
+
enum: string[];
|
|
1380
|
+
};
|
|
1381
|
+
payload: {
|
|
1382
|
+
type: string;
|
|
1383
|
+
};
|
|
1384
|
+
context: {
|
|
1385
|
+
type: string;
|
|
1386
|
+
};
|
|
1387
|
+
};
|
|
1388
|
+
additionalProperties: boolean;
|
|
1389
|
+
};
|
|
1390
|
+
export declare const edgeAgentRequestSchema: {
|
|
1391
|
+
type: string;
|
|
1392
|
+
properties: {
|
|
1393
|
+
agent: {
|
|
1394
|
+
type: string;
|
|
1395
|
+
enum: string[];
|
|
1396
|
+
};
|
|
1397
|
+
payload: {
|
|
1398
|
+
type: string;
|
|
1399
|
+
};
|
|
1400
|
+
context: {
|
|
1401
|
+
type: string;
|
|
1402
|
+
};
|
|
1403
|
+
};
|
|
1404
|
+
additionalProperties: boolean;
|
|
1405
|
+
};
|
|
1406
|
+
export declare const autoOptimizerRequestSchema: {
|
|
1407
|
+
type: string;
|
|
1408
|
+
properties: {
|
|
1409
|
+
agent: {
|
|
1410
|
+
type: string;
|
|
1411
|
+
enum: string[];
|
|
1412
|
+
};
|
|
1413
|
+
payload: {
|
|
1414
|
+
type: string;
|
|
1415
|
+
};
|
|
1416
|
+
context: {
|
|
1417
|
+
type: string;
|
|
1418
|
+
};
|
|
1419
|
+
};
|
|
1420
|
+
additionalProperties: boolean;
|
|
1421
|
+
};
|
|
1422
|
+
export declare const incidentManagerRequestSchema: {
|
|
1423
|
+
type: string;
|
|
1424
|
+
properties: {
|
|
1425
|
+
agent: {
|
|
1426
|
+
type: string;
|
|
1427
|
+
enum: string[];
|
|
1428
|
+
};
|
|
1429
|
+
payload: {
|
|
1430
|
+
type: string;
|
|
1431
|
+
};
|
|
1432
|
+
context: {
|
|
1433
|
+
type: string;
|
|
1434
|
+
};
|
|
1435
|
+
};
|
|
1436
|
+
additionalProperties: boolean;
|
|
1437
|
+
};
|
|
1438
|
+
export declare const orchestratorRequestSchema: {
|
|
1439
|
+
type: string;
|
|
1440
|
+
properties: {
|
|
1441
|
+
agent: {
|
|
1442
|
+
type: string;
|
|
1443
|
+
enum: string[];
|
|
1444
|
+
};
|
|
1445
|
+
payload: {
|
|
1446
|
+
type: string;
|
|
1447
|
+
};
|
|
1448
|
+
context: {
|
|
1449
|
+
type: string;
|
|
1450
|
+
};
|
|
1451
|
+
};
|
|
1452
|
+
additionalProperties: boolean;
|
|
1453
|
+
};
|
|
1454
|
+
export declare const costopsRequestSchema: {
|
|
1455
|
+
type: string;
|
|
1456
|
+
properties: {
|
|
1457
|
+
agent: {
|
|
1458
|
+
type: string;
|
|
1459
|
+
enum: string[];
|
|
1460
|
+
};
|
|
1461
|
+
payload: {
|
|
1462
|
+
type: string;
|
|
1463
|
+
};
|
|
1464
|
+
context: {
|
|
1465
|
+
type: string;
|
|
1466
|
+
};
|
|
1467
|
+
};
|
|
1468
|
+
additionalProperties: boolean;
|
|
1469
|
+
};
|
|
1470
|
+
export declare const governanceDashboardRequestSchema: {
|
|
1471
|
+
type: string;
|
|
1472
|
+
properties: {
|
|
1473
|
+
agent: {
|
|
1474
|
+
type: string;
|
|
1475
|
+
enum: string[];
|
|
1476
|
+
};
|
|
1477
|
+
payload: {
|
|
1478
|
+
type: string;
|
|
1479
|
+
};
|
|
1480
|
+
context: {
|
|
1481
|
+
type: string;
|
|
1482
|
+
};
|
|
1483
|
+
};
|
|
1484
|
+
additionalProperties: boolean;
|
|
1485
|
+
};
|
|
1486
|
+
export declare const policyEngineRequestSchema: {
|
|
1487
|
+
type: string;
|
|
1488
|
+
properties: {
|
|
1489
|
+
agent: {
|
|
1490
|
+
type: string;
|
|
1491
|
+
enum: string[];
|
|
1492
|
+
};
|
|
1493
|
+
payload: {
|
|
1494
|
+
type: string;
|
|
1495
|
+
};
|
|
1496
|
+
context: {
|
|
1497
|
+
type: string;
|
|
1498
|
+
};
|
|
1499
|
+
};
|
|
1500
|
+
additionalProperties: boolean;
|
|
1501
|
+
};
|
|
1502
|
+
export declare const registryRequestSchema: {
|
|
1503
|
+
type: string;
|
|
1504
|
+
properties: {
|
|
1505
|
+
agent: {
|
|
1506
|
+
type: string;
|
|
1507
|
+
enum: string[];
|
|
1508
|
+
};
|
|
1509
|
+
payload: {
|
|
1510
|
+
type: string;
|
|
1511
|
+
};
|
|
1512
|
+
context: {
|
|
1513
|
+
type: string;
|
|
1514
|
+
};
|
|
1515
|
+
};
|
|
1516
|
+
additionalProperties: boolean;
|
|
1517
|
+
};
|
|
1518
|
+
export declare const marketplaceRequestSchema: {
|
|
1519
|
+
type: string;
|
|
1520
|
+
properties: {
|
|
1521
|
+
agent: {
|
|
1522
|
+
type: string;
|
|
1523
|
+
enum: string[];
|
|
1524
|
+
};
|
|
1525
|
+
payload: {
|
|
1526
|
+
type: string;
|
|
1527
|
+
};
|
|
1528
|
+
context: {
|
|
1529
|
+
type: string;
|
|
1530
|
+
};
|
|
1531
|
+
};
|
|
1532
|
+
additionalProperties: boolean;
|
|
1533
|
+
};
|
|
1534
|
+
export declare const analyticsHubRequestSchema: {
|
|
1535
|
+
type: string;
|
|
1536
|
+
properties: {
|
|
1537
|
+
agent: {
|
|
1538
|
+
type: string;
|
|
1539
|
+
enum: string[];
|
|
1540
|
+
};
|
|
1541
|
+
payload: {
|
|
1542
|
+
type: string;
|
|
1543
|
+
};
|
|
1544
|
+
context: {
|
|
1545
|
+
type: string;
|
|
1546
|
+
};
|
|
1547
|
+
};
|
|
1548
|
+
additionalProperties: boolean;
|
|
1549
|
+
};
|
|
1550
|
+
export declare const configManagerRequestSchema: {
|
|
1551
|
+
type: string;
|
|
1552
|
+
properties: {
|
|
1553
|
+
agent: {
|
|
1554
|
+
type: string;
|
|
1555
|
+
enum: string[];
|
|
1556
|
+
};
|
|
1557
|
+
payload: {
|
|
1558
|
+
type: string;
|
|
1559
|
+
};
|
|
1560
|
+
context: {
|
|
1561
|
+
type: string;
|
|
1562
|
+
};
|
|
1563
|
+
};
|
|
1564
|
+
additionalProperties: boolean;
|
|
1565
|
+
};
|
|
1566
|
+
export declare const schemaRegistryRequestSchema: {
|
|
1567
|
+
type: string;
|
|
1568
|
+
properties: {
|
|
1569
|
+
agent: {
|
|
1570
|
+
type: string;
|
|
1571
|
+
enum: string[];
|
|
1572
|
+
};
|
|
1573
|
+
payload: {
|
|
1574
|
+
type: string;
|
|
1575
|
+
};
|
|
1576
|
+
context: {
|
|
1577
|
+
type: string;
|
|
1578
|
+
};
|
|
1579
|
+
};
|
|
1580
|
+
additionalProperties: boolean;
|
|
1581
|
+
};
|
|
1582
|
+
export declare const connectorHubRequestSchema: {
|
|
1583
|
+
type: string;
|
|
1584
|
+
properties: {
|
|
1585
|
+
agent: {
|
|
1586
|
+
type: string;
|
|
1587
|
+
enum: string[];
|
|
1588
|
+
};
|
|
1589
|
+
payload: {
|
|
1590
|
+
type: string;
|
|
1591
|
+
};
|
|
1592
|
+
context: {
|
|
1593
|
+
type: string;
|
|
1594
|
+
};
|
|
1595
|
+
};
|
|
1596
|
+
additionalProperties: boolean;
|
|
1597
|
+
};
|
|
1598
|
+
export declare const copilotRequestSchema: {
|
|
1599
|
+
type: string;
|
|
1600
|
+
properties: {
|
|
1601
|
+
agent: {
|
|
1602
|
+
type: string;
|
|
1603
|
+
enum: string[];
|
|
1604
|
+
};
|
|
1605
|
+
payload: {
|
|
1606
|
+
type: string;
|
|
1607
|
+
};
|
|
1608
|
+
context: {
|
|
1609
|
+
type: string;
|
|
1610
|
+
};
|
|
1611
|
+
};
|
|
1612
|
+
additionalProperties: boolean;
|
|
1613
|
+
};
|
|
1614
|
+
export declare const simulatorRequestSchema_: {
|
|
1615
|
+
type: string;
|
|
1616
|
+
properties: {
|
|
1617
|
+
agent: {
|
|
1618
|
+
type: string;
|
|
1619
|
+
enum: string[];
|
|
1620
|
+
};
|
|
1621
|
+
payload: {
|
|
1622
|
+
type: string;
|
|
1623
|
+
};
|
|
1624
|
+
context: {
|
|
1625
|
+
type: string;
|
|
1626
|
+
};
|
|
1627
|
+
};
|
|
1628
|
+
additionalProperties: boolean;
|
|
1629
|
+
};
|
|
1630
|
+
export declare const benchmarkExchangeRequestSchema: {
|
|
1631
|
+
type: string;
|
|
1632
|
+
properties: {
|
|
1633
|
+
agent: {
|
|
1634
|
+
type: string;
|
|
1635
|
+
enum: string[];
|
|
1636
|
+
};
|
|
1637
|
+
payload: {
|
|
1638
|
+
type: string;
|
|
1639
|
+
};
|
|
1640
|
+
context: {
|
|
1641
|
+
type: string;
|
|
1642
|
+
};
|
|
1643
|
+
};
|
|
1644
|
+
additionalProperties: boolean;
|
|
1645
|
+
};
|
|
1646
|
+
export declare const inferenceGatewayRequestSchema: {
|
|
1647
|
+
type: string;
|
|
1648
|
+
properties: {
|
|
1649
|
+
agent: {
|
|
1650
|
+
type: string;
|
|
1651
|
+
enum: string[];
|
|
1652
|
+
};
|
|
1653
|
+
payload: {
|
|
1654
|
+
type: string;
|
|
1655
|
+
};
|
|
1656
|
+
context: {
|
|
1657
|
+
type: string;
|
|
1658
|
+
};
|
|
1659
|
+
};
|
|
1660
|
+
additionalProperties: boolean;
|
|
1661
|
+
};
|
|
1662
|
+
export declare const dataVaultRequestSchema: {
|
|
1663
|
+
type: string;
|
|
1664
|
+
properties: {
|
|
1665
|
+
agent: {
|
|
1666
|
+
type: string;
|
|
1667
|
+
enum: string[];
|
|
1668
|
+
};
|
|
1669
|
+
payload: {
|
|
1670
|
+
type: string;
|
|
1671
|
+
};
|
|
1672
|
+
context: {
|
|
1673
|
+
type: string;
|
|
1674
|
+
};
|
|
1675
|
+
};
|
|
1676
|
+
additionalProperties: boolean;
|
|
1677
|
+
};
|
|
1678
|
+
export declare const researchLabRequestSchema: {
|
|
1679
|
+
type: string;
|
|
1680
|
+
properties: {
|
|
1681
|
+
agent: {
|
|
1682
|
+
type: string;
|
|
1683
|
+
enum: string[];
|
|
1684
|
+
};
|
|
1685
|
+
payload: {
|
|
1686
|
+
type: string;
|
|
1687
|
+
};
|
|
1688
|
+
context: {
|
|
1689
|
+
type: string;
|
|
1690
|
+
};
|
|
1691
|
+
};
|
|
1692
|
+
additionalProperties: boolean;
|
|
1693
|
+
};
|
|
1694
|
+
export declare const platformAgentsRequestSchema: {
|
|
1695
|
+
type: string;
|
|
1696
|
+
properties: {
|
|
1697
|
+
agent: {
|
|
1698
|
+
type: string;
|
|
1699
|
+
enum: string[];
|
|
1700
|
+
};
|
|
1701
|
+
payload: {
|
|
1702
|
+
type: string;
|
|
1703
|
+
};
|
|
1704
|
+
context: {
|
|
1705
|
+
type: string;
|
|
1706
|
+
};
|
|
1707
|
+
};
|
|
1708
|
+
additionalProperties: boolean;
|
|
1709
|
+
};
|
|
1710
|
+
export declare const DownstreamAgentRequestSchemas: Readonly<{
|
|
1711
|
+
TEST_BENCH: "testBench";
|
|
1712
|
+
OBSERVATORY: "observatory";
|
|
1713
|
+
SHIELD: "shield";
|
|
1714
|
+
SENTINEL: "sentinel";
|
|
1715
|
+
MEMORY_GRAPH: "memoryGraph";
|
|
1716
|
+
LATENCY_LENS: "latencyLens";
|
|
1717
|
+
FORGE: "forge";
|
|
1718
|
+
EDGE_AGENT: "edgeAgent";
|
|
1719
|
+
AUTO_OPTIMIZER: "autoOptimizer";
|
|
1720
|
+
INCIDENT_MANAGER: "incidentManager";
|
|
1721
|
+
ORCHESTRATOR: "orchestrator";
|
|
1722
|
+
COSTOPS: "costops";
|
|
1723
|
+
GOVERNANCE_DASHBOARD: "governanceDashboard";
|
|
1724
|
+
POLICY_ENGINE: "policyEngine";
|
|
1725
|
+
REGISTRY: "registry";
|
|
1726
|
+
MARKETPLACE: "marketplace";
|
|
1727
|
+
ANALYTICS_HUB: "analyticsHub";
|
|
1728
|
+
CONFIG_MANAGER: "configManager";
|
|
1729
|
+
SCHEMA_REGISTRY: "schemaRegistry";
|
|
1730
|
+
CONNECTOR_HUB: "connectorHub";
|
|
1731
|
+
COPILOT: "copilot";
|
|
1732
|
+
SIMULATOR: "simulator_";
|
|
1733
|
+
BENCHMARK_EXCHANGE: "benchmarkExchange";
|
|
1734
|
+
INFERENCE_GATEWAY: "inferenceGateway";
|
|
1735
|
+
DATA_VAULT: "dataVault";
|
|
1736
|
+
RESEARCH_LAB: "researchLab";
|
|
1737
|
+
PLATFORM_AGENTS: "platformAgents";
|
|
1738
|
+
}>;
|
|
1739
|
+
export declare const DownstreamAgentResponseSchemas: Readonly<{
|
|
1740
|
+
AGENT_INVOCATION: "agentInvocation";
|
|
1741
|
+
}>;
|
|
1038
1742
|
//# sourceMappingURL=index.d.ts.map
|