@rudderhq/agent-runtime-utils 0.4.6-canary.9 → 0.5.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/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/rudder-mcp-contract.d.ts +1028 -0
- package/dist/rudder-mcp-contract.d.ts.map +1 -0
- package/dist/rudder-mcp-contract.js +257 -0
- package/dist/rudder-mcp-contract.js.map +1 -0
- package/dist/rudder-mcp-fingerprint.d.ts +4 -0
- package/dist/rudder-mcp-fingerprint.d.ts.map +1 -0
- package/dist/rudder-mcp-fingerprint.js +23 -0
- package/dist/rudder-mcp-fingerprint.js.map +1 -0
- package/dist/rudder-mcp-preflight.d.ts +12 -0
- package/dist/rudder-mcp-preflight.d.ts.map +1 -0
- package/dist/rudder-mcp-preflight.js +324 -0
- package/dist/rudder-mcp-preflight.js.map +1 -0
- package/dist/rudder-mcp-preflight.test.d.ts +2 -0
- package/dist/rudder-mcp-preflight.test.d.ts.map +1 -0
- package/dist/rudder-mcp-preflight.test.js +315 -0
- package/dist/rudder-mcp-preflight.test.js.map +1 -0
- package/dist/rudder-mcp-server.d.ts.map +1 -1
- package/dist/rudder-mcp-server.js +3 -0
- package/dist/rudder-mcp-server.js.map +1 -1
- package/dist/rudder-mcp-tool-descriptors.generated.d.ts +620 -0
- package/dist/rudder-mcp-tool-descriptors.generated.d.ts.map +1 -0
- package/dist/rudder-mcp-tool-descriptors.generated.js +699 -0
- package/dist/rudder-mcp-tool-descriptors.generated.js.map +1 -0
- package/dist/rudder-mcp.d.ts +32 -2
- package/dist/rudder-mcp.d.ts.map +1 -1
- package/dist/rudder-mcp.js +28 -9
- package/dist/rudder-mcp.js.map +1 -1
- package/dist/rudder-mcp.test.js +38 -2
- package/dist/rudder-mcp.test.js.map +1 -1
- package/dist/server-utils.cli.d.ts +41 -3
- package/dist/server-utils.cli.d.ts.map +1 -1
- package/dist/server-utils.cli.js +307 -23
- package/dist/server-utils.cli.js.map +1 -1
- package/dist/server-utils.prompts.d.ts +8 -6
- package/dist/server-utils.prompts.d.ts.map +1 -1
- package/dist/server-utils.prompts.js +77 -24
- package/dist/server-utils.prompts.js.map +1 -1
- package/dist/server-utils.prompts.test.js +97 -1
- package/dist/server-utils.prompts.test.js.map +1 -1
- package/dist/server-utils.test.js +582 -5
- package/dist/server-utils.test.js.map +1 -1
- package/dist/types.d.ts +58 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,1028 @@
|
|
|
1
|
+
export declare const RUDDER_MCP_CONTRACT_VERSION = "rudder.agent-mcp-tools/v1";
|
|
2
|
+
export interface RudderMcpSemanticToolContract {
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
inputSchema: Record<string, unknown>;
|
|
6
|
+
}
|
|
7
|
+
export interface RudderMcpToolContractSource extends RudderMcpSemanticToolContract {
|
|
8
|
+
mutating: boolean;
|
|
9
|
+
requiresOrgId: boolean;
|
|
10
|
+
requiresAgentId: boolean;
|
|
11
|
+
attachesRunIdWhenAvailable: boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare function rudderMcpInputSchemaForCapability(id: string): {
|
|
14
|
+
type: "object";
|
|
15
|
+
additionalProperties: false;
|
|
16
|
+
properties: Record<string, unknown>;
|
|
17
|
+
};
|
|
18
|
+
export declare const RUDDER_MCP_CANONICAL_TOOL_DEFINITIONS: ({
|
|
19
|
+
inputSchema: {
|
|
20
|
+
type: "object";
|
|
21
|
+
additionalProperties: false;
|
|
22
|
+
properties: Record<string, unknown>;
|
|
23
|
+
};
|
|
24
|
+
capabilityId: "agent.me";
|
|
25
|
+
name: "rudder_agent_me";
|
|
26
|
+
description: "Show the authenticated agent identity, budget, and chain of command.";
|
|
27
|
+
mutating: false;
|
|
28
|
+
requiresOrgId: false;
|
|
29
|
+
requiresAgentId: false;
|
|
30
|
+
attachesRunIdWhenAvailable: false;
|
|
31
|
+
} | {
|
|
32
|
+
inputSchema: {
|
|
33
|
+
type: "object";
|
|
34
|
+
additionalProperties: false;
|
|
35
|
+
properties: Record<string, unknown>;
|
|
36
|
+
};
|
|
37
|
+
capabilityId: "agent.inbox";
|
|
38
|
+
name: "rudder_agent_inbox";
|
|
39
|
+
description: "List the compact assignee and reviewer work inbox for the authenticated agent.";
|
|
40
|
+
mutating: false;
|
|
41
|
+
requiresOrgId: false;
|
|
42
|
+
requiresAgentId: false;
|
|
43
|
+
attachesRunIdWhenAvailable: false;
|
|
44
|
+
} | {
|
|
45
|
+
inputSchema: {
|
|
46
|
+
type: "object";
|
|
47
|
+
additionalProperties: false;
|
|
48
|
+
properties: Record<string, unknown>;
|
|
49
|
+
};
|
|
50
|
+
capabilityId: "agent.capabilities";
|
|
51
|
+
name: "rudder_agent_capabilities";
|
|
52
|
+
description: "List the stable Rudder agent command contract.";
|
|
53
|
+
mutating: false;
|
|
54
|
+
requiresOrgId: false;
|
|
55
|
+
requiresAgentId: false;
|
|
56
|
+
attachesRunIdWhenAvailable: false;
|
|
57
|
+
} | {
|
|
58
|
+
inputSchema: {
|
|
59
|
+
type: "object";
|
|
60
|
+
additionalProperties: false;
|
|
61
|
+
properties: Record<string, unknown>;
|
|
62
|
+
};
|
|
63
|
+
capabilityId: "agent.update";
|
|
64
|
+
name: "rudder_agent_update";
|
|
65
|
+
description: "Update an agent's control-plane identity fields; defaults to the authenticated agent.";
|
|
66
|
+
mutating: true;
|
|
67
|
+
requiresOrgId: false;
|
|
68
|
+
requiresAgentId: false;
|
|
69
|
+
attachesRunIdWhenAvailable: true;
|
|
70
|
+
} | {
|
|
71
|
+
inputSchema: {
|
|
72
|
+
type: "object";
|
|
73
|
+
additionalProperties: false;
|
|
74
|
+
properties: Record<string, unknown>;
|
|
75
|
+
};
|
|
76
|
+
capabilityId: "agent.skills.create";
|
|
77
|
+
name: "rudder_agent_skills_create";
|
|
78
|
+
description: "Create an agent-private skill package under AGENT_HOME/skills.";
|
|
79
|
+
mutating: true;
|
|
80
|
+
requiresOrgId: false;
|
|
81
|
+
requiresAgentId: false;
|
|
82
|
+
attachesRunIdWhenAvailable: true;
|
|
83
|
+
} | {
|
|
84
|
+
inputSchema: {
|
|
85
|
+
type: "object";
|
|
86
|
+
additionalProperties: false;
|
|
87
|
+
properties: Record<string, unknown>;
|
|
88
|
+
};
|
|
89
|
+
capabilityId: "agent.skills.enable";
|
|
90
|
+
name: "rudder_agent_skills_enable";
|
|
91
|
+
description: "Add skill selections to an agent without replacing existing enabled skills.";
|
|
92
|
+
mutating: true;
|
|
93
|
+
requiresOrgId: false;
|
|
94
|
+
requiresAgentId: false;
|
|
95
|
+
attachesRunIdWhenAvailable: true;
|
|
96
|
+
} | {
|
|
97
|
+
inputSchema: {
|
|
98
|
+
type: "object";
|
|
99
|
+
additionalProperties: false;
|
|
100
|
+
properties: Record<string, unknown>;
|
|
101
|
+
};
|
|
102
|
+
capabilityId: "agent.skills.sync";
|
|
103
|
+
name: "rudder_agent_skills_sync";
|
|
104
|
+
description: "Sync the desired enabled skill set for an agent.";
|
|
105
|
+
mutating: true;
|
|
106
|
+
requiresOrgId: false;
|
|
107
|
+
requiresAgentId: false;
|
|
108
|
+
attachesRunIdWhenAvailable: true;
|
|
109
|
+
} | {
|
|
110
|
+
inputSchema: {
|
|
111
|
+
type: "object";
|
|
112
|
+
additionalProperties: false;
|
|
113
|
+
properties: Record<string, unknown>;
|
|
114
|
+
};
|
|
115
|
+
capabilityId: "issue.get";
|
|
116
|
+
name: "rudder_issue_get";
|
|
117
|
+
description: "Read a full issue by UUID or identifier.";
|
|
118
|
+
mutating: false;
|
|
119
|
+
requiresOrgId: false;
|
|
120
|
+
requiresAgentId: false;
|
|
121
|
+
attachesRunIdWhenAvailable: false;
|
|
122
|
+
} | {
|
|
123
|
+
inputSchema: {
|
|
124
|
+
type: "object";
|
|
125
|
+
additionalProperties: false;
|
|
126
|
+
properties: Record<string, unknown>;
|
|
127
|
+
};
|
|
128
|
+
capabilityId: "issue.search";
|
|
129
|
+
name: "rudder_issue_search";
|
|
130
|
+
description: "Search issues with the server-side issue index across title, identifier, description, and comments.";
|
|
131
|
+
mutating: false;
|
|
132
|
+
requiresOrgId: true;
|
|
133
|
+
requiresAgentId: false;
|
|
134
|
+
attachesRunIdWhenAvailable: false;
|
|
135
|
+
} | {
|
|
136
|
+
inputSchema: {
|
|
137
|
+
type: "object";
|
|
138
|
+
additionalProperties: false;
|
|
139
|
+
properties: Record<string, unknown>;
|
|
140
|
+
};
|
|
141
|
+
capabilityId: "issue.context";
|
|
142
|
+
name: "rudder_issue_context";
|
|
143
|
+
description: "Read the compact heartbeat context for an issue; wake comments may be addressed by full id or cmt_<uuid-prefix>.";
|
|
144
|
+
mutating: false;
|
|
145
|
+
requiresOrgId: false;
|
|
146
|
+
requiresAgentId: false;
|
|
147
|
+
attachesRunIdWhenAvailable: false;
|
|
148
|
+
} | {
|
|
149
|
+
inputSchema: {
|
|
150
|
+
type: "object";
|
|
151
|
+
additionalProperties: false;
|
|
152
|
+
properties: Record<string, unknown>;
|
|
153
|
+
};
|
|
154
|
+
capabilityId: "issue.checkout";
|
|
155
|
+
name: "rudder_issue_checkout";
|
|
156
|
+
description: "Atomically checkout an issue for the current or specified agent.";
|
|
157
|
+
mutating: true;
|
|
158
|
+
requiresOrgId: false;
|
|
159
|
+
requiresAgentId: true;
|
|
160
|
+
attachesRunIdWhenAvailable: true;
|
|
161
|
+
} | {
|
|
162
|
+
inputSchema: {
|
|
163
|
+
type: "object";
|
|
164
|
+
additionalProperties: false;
|
|
165
|
+
properties: Record<string, unknown>;
|
|
166
|
+
};
|
|
167
|
+
capabilityId: "issue.comment";
|
|
168
|
+
name: "rudder_issue_comment";
|
|
169
|
+
description: "Add a comment to an issue, optionally uploading images and appending Markdown image links.";
|
|
170
|
+
mutating: true;
|
|
171
|
+
requiresOrgId: false;
|
|
172
|
+
requiresAgentId: false;
|
|
173
|
+
attachesRunIdWhenAvailable: true;
|
|
174
|
+
} | {
|
|
175
|
+
inputSchema: {
|
|
176
|
+
type: "object";
|
|
177
|
+
additionalProperties: false;
|
|
178
|
+
properties: Record<string, unknown>;
|
|
179
|
+
};
|
|
180
|
+
capabilityId: "issue.comments.list";
|
|
181
|
+
name: "rudder_issue_comments_list";
|
|
182
|
+
description: "List issue comments, optionally only newer comments after a full comment id or cmt_<uuid-prefix> with --after.";
|
|
183
|
+
mutating: false;
|
|
184
|
+
requiresOrgId: false;
|
|
185
|
+
requiresAgentId: false;
|
|
186
|
+
attachesRunIdWhenAvailable: false;
|
|
187
|
+
} | {
|
|
188
|
+
inputSchema: {
|
|
189
|
+
type: "object";
|
|
190
|
+
additionalProperties: false;
|
|
191
|
+
properties: Record<string, unknown>;
|
|
192
|
+
};
|
|
193
|
+
capabilityId: "issue.comments.get";
|
|
194
|
+
name: "rudder_issue_comments_get";
|
|
195
|
+
description: "Read one issue comment by full id or cmt_<uuid-prefix> scoped to the issue.";
|
|
196
|
+
mutating: false;
|
|
197
|
+
requiresOrgId: false;
|
|
198
|
+
requiresAgentId: false;
|
|
199
|
+
attachesRunIdWhenAvailable: false;
|
|
200
|
+
} | {
|
|
201
|
+
inputSchema: {
|
|
202
|
+
type: "object";
|
|
203
|
+
additionalProperties: false;
|
|
204
|
+
properties: Record<string, unknown>;
|
|
205
|
+
};
|
|
206
|
+
capabilityId: "issue.update";
|
|
207
|
+
name: "rudder_issue_update";
|
|
208
|
+
description: "Apply generic issue updates when workflow commands are not enough, optionally uploading images for the update comment.";
|
|
209
|
+
mutating: true;
|
|
210
|
+
requiresOrgId: false;
|
|
211
|
+
requiresAgentId: false;
|
|
212
|
+
attachesRunIdWhenAvailable: true;
|
|
213
|
+
} | {
|
|
214
|
+
inputSchema: {
|
|
215
|
+
type: "object";
|
|
216
|
+
additionalProperties: false;
|
|
217
|
+
properties: Record<string, unknown>;
|
|
218
|
+
};
|
|
219
|
+
capabilityId: "issue.review";
|
|
220
|
+
name: "rudder_issue_review";
|
|
221
|
+
description: "Record a structured reviewer decision with a required comment.";
|
|
222
|
+
mutating: true;
|
|
223
|
+
requiresOrgId: false;
|
|
224
|
+
requiresAgentId: false;
|
|
225
|
+
attachesRunIdWhenAvailable: true;
|
|
226
|
+
} | {
|
|
227
|
+
inputSchema: {
|
|
228
|
+
type: "object";
|
|
229
|
+
additionalProperties: false;
|
|
230
|
+
properties: Record<string, unknown>;
|
|
231
|
+
};
|
|
232
|
+
capabilityId: "issue.commit";
|
|
233
|
+
name: "rudder_issue_commit";
|
|
234
|
+
description: "Report a code commit created during issue work as structured issue activity.";
|
|
235
|
+
mutating: true;
|
|
236
|
+
requiresOrgId: false;
|
|
237
|
+
requiresAgentId: false;
|
|
238
|
+
attachesRunIdWhenAvailable: true;
|
|
239
|
+
} | {
|
|
240
|
+
inputSchema: {
|
|
241
|
+
type: "object";
|
|
242
|
+
additionalProperties: false;
|
|
243
|
+
properties: Record<string, unknown>;
|
|
244
|
+
};
|
|
245
|
+
capabilityId: "issue.done";
|
|
246
|
+
name: "rudder_issue_done";
|
|
247
|
+
description: "Mark an issue done with a required completion comment, optionally uploading images.";
|
|
248
|
+
mutating: true;
|
|
249
|
+
requiresOrgId: false;
|
|
250
|
+
requiresAgentId: false;
|
|
251
|
+
attachesRunIdWhenAvailable: true;
|
|
252
|
+
} | {
|
|
253
|
+
inputSchema: {
|
|
254
|
+
type: "object";
|
|
255
|
+
additionalProperties: false;
|
|
256
|
+
properties: Record<string, unknown>;
|
|
257
|
+
};
|
|
258
|
+
capabilityId: "issue.block";
|
|
259
|
+
name: "rudder_issue_block";
|
|
260
|
+
description: "Mark an issue blocked with a required blocker comment, optionally uploading images.";
|
|
261
|
+
mutating: true;
|
|
262
|
+
requiresOrgId: false;
|
|
263
|
+
requiresAgentId: false;
|
|
264
|
+
attachesRunIdWhenAvailable: true;
|
|
265
|
+
} | {
|
|
266
|
+
inputSchema: {
|
|
267
|
+
type: "object";
|
|
268
|
+
additionalProperties: false;
|
|
269
|
+
properties: Record<string, unknown>;
|
|
270
|
+
};
|
|
271
|
+
capabilityId: "project.list";
|
|
272
|
+
name: "rudder_project_list";
|
|
273
|
+
description: "List projects in an organization.";
|
|
274
|
+
mutating: false;
|
|
275
|
+
requiresOrgId: true;
|
|
276
|
+
requiresAgentId: false;
|
|
277
|
+
attachesRunIdWhenAvailable: false;
|
|
278
|
+
} | {
|
|
279
|
+
inputSchema: {
|
|
280
|
+
type: "object";
|
|
281
|
+
additionalProperties: false;
|
|
282
|
+
properties: Record<string, unknown>;
|
|
283
|
+
};
|
|
284
|
+
capabilityId: "project.get";
|
|
285
|
+
name: "rudder_project_get";
|
|
286
|
+
description: "Read one project by ID or shortname.";
|
|
287
|
+
mutating: false;
|
|
288
|
+
requiresOrgId: false;
|
|
289
|
+
requiresAgentId: false;
|
|
290
|
+
attachesRunIdWhenAvailable: false;
|
|
291
|
+
} | {
|
|
292
|
+
inputSchema: {
|
|
293
|
+
type: "object";
|
|
294
|
+
additionalProperties: false;
|
|
295
|
+
properties: Record<string, unknown>;
|
|
296
|
+
};
|
|
297
|
+
capabilityId: "project.create";
|
|
298
|
+
name: "rudder_project_create";
|
|
299
|
+
description: "Create a project in the organization.";
|
|
300
|
+
mutating: true;
|
|
301
|
+
requiresOrgId: true;
|
|
302
|
+
requiresAgentId: false;
|
|
303
|
+
attachesRunIdWhenAvailable: true;
|
|
304
|
+
} | {
|
|
305
|
+
inputSchema: {
|
|
306
|
+
type: "object";
|
|
307
|
+
additionalProperties: false;
|
|
308
|
+
properties: Record<string, unknown>;
|
|
309
|
+
};
|
|
310
|
+
capabilityId: "project.update";
|
|
311
|
+
name: "rudder_project_update";
|
|
312
|
+
description: "Update mutable project fields such as name, description, status, goals, lead agent, target date, color, or archivedAt.";
|
|
313
|
+
mutating: true;
|
|
314
|
+
requiresOrgId: false;
|
|
315
|
+
requiresAgentId: false;
|
|
316
|
+
attachesRunIdWhenAvailable: true;
|
|
317
|
+
} | {
|
|
318
|
+
inputSchema: {
|
|
319
|
+
type: "object";
|
|
320
|
+
additionalProperties: false;
|
|
321
|
+
properties: Record<string, unknown>;
|
|
322
|
+
};
|
|
323
|
+
capabilityId: "user.activity";
|
|
324
|
+
name: "rudder_user_activity";
|
|
325
|
+
description: "Read a user-centered activity ledger with safe excerpts and provenance across chats, issue comments, approval comments, and user actor activity.";
|
|
326
|
+
mutating: false;
|
|
327
|
+
requiresOrgId: true;
|
|
328
|
+
requiresAgentId: false;
|
|
329
|
+
attachesRunIdWhenAvailable: false;
|
|
330
|
+
} | {
|
|
331
|
+
inputSchema: {
|
|
332
|
+
type: "object";
|
|
333
|
+
additionalProperties: false;
|
|
334
|
+
properties: Record<string, unknown>;
|
|
335
|
+
};
|
|
336
|
+
capabilityId: "library.file.list";
|
|
337
|
+
name: "rudder_library_file_list";
|
|
338
|
+
description: "List Library files and folders; file rows include `libraryEntryId` when a strong reference can be generated.";
|
|
339
|
+
mutating: false;
|
|
340
|
+
requiresOrgId: true;
|
|
341
|
+
requiresAgentId: false;
|
|
342
|
+
attachesRunIdWhenAvailable: false;
|
|
343
|
+
} | {
|
|
344
|
+
inputSchema: {
|
|
345
|
+
type: "object";
|
|
346
|
+
additionalProperties: false;
|
|
347
|
+
properties: Record<string, unknown>;
|
|
348
|
+
};
|
|
349
|
+
capabilityId: "library.file.get";
|
|
350
|
+
name: "rudder_library_file_get";
|
|
351
|
+
description: "Fallback read when local filesystem access is unavailable; JSON includes `mentionHref` and `markdownLink`.";
|
|
352
|
+
mutating: false;
|
|
353
|
+
requiresOrgId: true;
|
|
354
|
+
requiresAgentId: false;
|
|
355
|
+
attachesRunIdWhenAvailable: false;
|
|
356
|
+
} | {
|
|
357
|
+
inputSchema: {
|
|
358
|
+
type: "object";
|
|
359
|
+
additionalProperties: false;
|
|
360
|
+
properties: Record<string, unknown>;
|
|
361
|
+
};
|
|
362
|
+
capabilityId: "library.file.ref";
|
|
363
|
+
name: "rudder_library_file_ref";
|
|
364
|
+
description: "Return the stable Markdown reference for one Library file without printing file content.";
|
|
365
|
+
mutating: false;
|
|
366
|
+
requiresOrgId: true;
|
|
367
|
+
requiresAgentId: false;
|
|
368
|
+
attachesRunIdWhenAvailable: false;
|
|
369
|
+
} | {
|
|
370
|
+
inputSchema: {
|
|
371
|
+
type: "object";
|
|
372
|
+
additionalProperties: false;
|
|
373
|
+
properties: Record<string, unknown>;
|
|
374
|
+
};
|
|
375
|
+
capabilityId: "library.file.link";
|
|
376
|
+
name: "rudder_library_file_link";
|
|
377
|
+
description: "Compatibility alias for `rudder library file ref <path>`.";
|
|
378
|
+
mutating: false;
|
|
379
|
+
requiresOrgId: true;
|
|
380
|
+
requiresAgentId: false;
|
|
381
|
+
attachesRunIdWhenAvailable: false;
|
|
382
|
+
} | {
|
|
383
|
+
inputSchema: {
|
|
384
|
+
type: "object";
|
|
385
|
+
additionalProperties: false;
|
|
386
|
+
properties: Record<string, unknown>;
|
|
387
|
+
};
|
|
388
|
+
capabilityId: "library.file.put";
|
|
389
|
+
name: "rudder_library_file_put";
|
|
390
|
+
description: "Fallback create/update when local filesystem access is unavailable; JSON includes `mentionHref` and `markdownLink`.";
|
|
391
|
+
mutating: true;
|
|
392
|
+
requiresOrgId: true;
|
|
393
|
+
requiresAgentId: false;
|
|
394
|
+
attachesRunIdWhenAvailable: true;
|
|
395
|
+
} | {
|
|
396
|
+
inputSchema: {
|
|
397
|
+
type: "object";
|
|
398
|
+
additionalProperties: false;
|
|
399
|
+
properties: Record<string, unknown>;
|
|
400
|
+
};
|
|
401
|
+
capabilityId: "approval.get";
|
|
402
|
+
name: "rudder_approval_get";
|
|
403
|
+
description: "Read one approval request.";
|
|
404
|
+
mutating: false;
|
|
405
|
+
requiresOrgId: false;
|
|
406
|
+
requiresAgentId: false;
|
|
407
|
+
attachesRunIdWhenAvailable: false;
|
|
408
|
+
} | {
|
|
409
|
+
inputSchema: {
|
|
410
|
+
type: "object";
|
|
411
|
+
additionalProperties: false;
|
|
412
|
+
properties: Record<string, unknown>;
|
|
413
|
+
};
|
|
414
|
+
capabilityId: "approval.issues";
|
|
415
|
+
name: "rudder_approval_issues";
|
|
416
|
+
description: "List the issues linked to an approval.";
|
|
417
|
+
mutating: false;
|
|
418
|
+
requiresOrgId: false;
|
|
419
|
+
requiresAgentId: false;
|
|
420
|
+
attachesRunIdWhenAvailable: false;
|
|
421
|
+
} | {
|
|
422
|
+
inputSchema: {
|
|
423
|
+
type: "object";
|
|
424
|
+
additionalProperties: false;
|
|
425
|
+
properties: Record<string, unknown>;
|
|
426
|
+
};
|
|
427
|
+
capabilityId: "approval.comment";
|
|
428
|
+
name: "rudder_approval_comment";
|
|
429
|
+
description: "Add a comment to an approval.";
|
|
430
|
+
mutating: true;
|
|
431
|
+
requiresOrgId: false;
|
|
432
|
+
requiresAgentId: false;
|
|
433
|
+
attachesRunIdWhenAvailable: true;
|
|
434
|
+
} | {
|
|
435
|
+
inputSchema: {
|
|
436
|
+
type: "object";
|
|
437
|
+
additionalProperties: false;
|
|
438
|
+
properties: Record<string, unknown>;
|
|
439
|
+
};
|
|
440
|
+
capabilityId: "skill.list";
|
|
441
|
+
name: "rudder_skill_list";
|
|
442
|
+
description: "List organization-visible skills.";
|
|
443
|
+
mutating: false;
|
|
444
|
+
requiresOrgId: true;
|
|
445
|
+
requiresAgentId: false;
|
|
446
|
+
attachesRunIdWhenAvailable: false;
|
|
447
|
+
} | {
|
|
448
|
+
inputSchema: {
|
|
449
|
+
type: "object";
|
|
450
|
+
additionalProperties: false;
|
|
451
|
+
properties: Record<string, unknown>;
|
|
452
|
+
};
|
|
453
|
+
capabilityId: "skill.get";
|
|
454
|
+
name: "rudder_skill_get";
|
|
455
|
+
description: "Read one organization skill detail.";
|
|
456
|
+
mutating: false;
|
|
457
|
+
requiresOrgId: true;
|
|
458
|
+
requiresAgentId: false;
|
|
459
|
+
attachesRunIdWhenAvailable: false;
|
|
460
|
+
} | {
|
|
461
|
+
inputSchema: {
|
|
462
|
+
type: "object";
|
|
463
|
+
additionalProperties: false;
|
|
464
|
+
properties: Record<string, unknown>;
|
|
465
|
+
};
|
|
466
|
+
capabilityId: "skill.file";
|
|
467
|
+
name: "rudder_skill_file";
|
|
468
|
+
description: "Read one file from an organization skill package.";
|
|
469
|
+
mutating: false;
|
|
470
|
+
requiresOrgId: true;
|
|
471
|
+
requiresAgentId: false;
|
|
472
|
+
attachesRunIdWhenAvailable: false;
|
|
473
|
+
} | {
|
|
474
|
+
inputSchema: {
|
|
475
|
+
type: "object";
|
|
476
|
+
additionalProperties: false;
|
|
477
|
+
properties: Record<string, unknown>;
|
|
478
|
+
};
|
|
479
|
+
capabilityId: "skill.import";
|
|
480
|
+
name: "rudder_skill_import";
|
|
481
|
+
description: "Import a skill package into the organization skill library.";
|
|
482
|
+
mutating: true;
|
|
483
|
+
requiresOrgId: true;
|
|
484
|
+
requiresAgentId: false;
|
|
485
|
+
attachesRunIdWhenAvailable: true;
|
|
486
|
+
} | {
|
|
487
|
+
inputSchema: {
|
|
488
|
+
type: "object";
|
|
489
|
+
additionalProperties: false;
|
|
490
|
+
properties: Record<string, unknown>;
|
|
491
|
+
};
|
|
492
|
+
capabilityId: "skill.scan-local";
|
|
493
|
+
name: "rudder_skill_scan_local";
|
|
494
|
+
description: "Scan local roots for skill packages and import new ones.";
|
|
495
|
+
mutating: true;
|
|
496
|
+
requiresOrgId: true;
|
|
497
|
+
requiresAgentId: false;
|
|
498
|
+
attachesRunIdWhenAvailable: true;
|
|
499
|
+
} | {
|
|
500
|
+
inputSchema: {
|
|
501
|
+
type: "object";
|
|
502
|
+
additionalProperties: false;
|
|
503
|
+
properties: Record<string, unknown>;
|
|
504
|
+
};
|
|
505
|
+
capabilityId: "skill.scan-projects";
|
|
506
|
+
name: "rudder_skill_scan_projects";
|
|
507
|
+
description: "Scan the org workspace and any legacy project workspace records for skill packages and import new ones.";
|
|
508
|
+
mutating: true;
|
|
509
|
+
requiresOrgId: true;
|
|
510
|
+
requiresAgentId: false;
|
|
511
|
+
attachesRunIdWhenAvailable: true;
|
|
512
|
+
} | {
|
|
513
|
+
inputSchema: {
|
|
514
|
+
type: "object";
|
|
515
|
+
additionalProperties: false;
|
|
516
|
+
properties: Record<string, unknown>;
|
|
517
|
+
};
|
|
518
|
+
capabilityId: "browser.tabs";
|
|
519
|
+
name: "rudder_browser_tabs";
|
|
520
|
+
description: "List Browser tabs owned by the current Rudder agent run.";
|
|
521
|
+
mutating: false;
|
|
522
|
+
requiresOrgId: true;
|
|
523
|
+
requiresAgentId: true;
|
|
524
|
+
attachesRunIdWhenAvailable: false;
|
|
525
|
+
} | {
|
|
526
|
+
inputSchema: {
|
|
527
|
+
type: "object";
|
|
528
|
+
additionalProperties: false;
|
|
529
|
+
properties: Record<string, unknown>;
|
|
530
|
+
};
|
|
531
|
+
capabilityId: "browser.open";
|
|
532
|
+
name: "rudder_browser_open";
|
|
533
|
+
description: "Open a run-owned tab in the Rudder Browser.";
|
|
534
|
+
mutating: true;
|
|
535
|
+
requiresOrgId: true;
|
|
536
|
+
requiresAgentId: true;
|
|
537
|
+
attachesRunIdWhenAvailable: true;
|
|
538
|
+
} | {
|
|
539
|
+
inputSchema: {
|
|
540
|
+
type: "object";
|
|
541
|
+
additionalProperties: false;
|
|
542
|
+
properties: Record<string, unknown>;
|
|
543
|
+
};
|
|
544
|
+
capabilityId: "browser.navigate";
|
|
545
|
+
name: "rudder_browser_navigate";
|
|
546
|
+
description: "Navigate a run-owned Rudder Browser tab.";
|
|
547
|
+
mutating: true;
|
|
548
|
+
requiresOrgId: true;
|
|
549
|
+
requiresAgentId: true;
|
|
550
|
+
attachesRunIdWhenAvailable: true;
|
|
551
|
+
} | {
|
|
552
|
+
inputSchema: {
|
|
553
|
+
type: "object";
|
|
554
|
+
additionalProperties: false;
|
|
555
|
+
properties: Record<string, unknown>;
|
|
556
|
+
};
|
|
557
|
+
capabilityId: "browser.read";
|
|
558
|
+
name: "rudder_browser_read";
|
|
559
|
+
description: "Read a structured snapshot from a run-owned Rudder Browser tab.";
|
|
560
|
+
mutating: false;
|
|
561
|
+
requiresOrgId: true;
|
|
562
|
+
requiresAgentId: true;
|
|
563
|
+
attachesRunIdWhenAvailable: false;
|
|
564
|
+
} | {
|
|
565
|
+
inputSchema: {
|
|
566
|
+
type: "object";
|
|
567
|
+
additionalProperties: false;
|
|
568
|
+
properties: Record<string, unknown>;
|
|
569
|
+
};
|
|
570
|
+
capabilityId: "browser.click";
|
|
571
|
+
name: "rudder_browser_click";
|
|
572
|
+
description: "Click an element reference returned by Rudder Browser read.";
|
|
573
|
+
mutating: true;
|
|
574
|
+
requiresOrgId: true;
|
|
575
|
+
requiresAgentId: true;
|
|
576
|
+
attachesRunIdWhenAvailable: true;
|
|
577
|
+
} | {
|
|
578
|
+
inputSchema: {
|
|
579
|
+
type: "object";
|
|
580
|
+
additionalProperties: false;
|
|
581
|
+
properties: Record<string, unknown>;
|
|
582
|
+
};
|
|
583
|
+
capabilityId: "browser.type";
|
|
584
|
+
name: "rudder_browser_type";
|
|
585
|
+
description: "Type into an element reference in a run-owned Rudder Browser tab.";
|
|
586
|
+
mutating: true;
|
|
587
|
+
requiresOrgId: true;
|
|
588
|
+
requiresAgentId: true;
|
|
589
|
+
attachesRunIdWhenAvailable: true;
|
|
590
|
+
} | {
|
|
591
|
+
inputSchema: {
|
|
592
|
+
type: "object";
|
|
593
|
+
additionalProperties: false;
|
|
594
|
+
properties: Record<string, unknown>;
|
|
595
|
+
};
|
|
596
|
+
capabilityId: "browser.screenshot";
|
|
597
|
+
name: "rudder_browser_screenshot";
|
|
598
|
+
description: "Capture a screenshot of a run-owned Rudder Browser tab.";
|
|
599
|
+
mutating: false;
|
|
600
|
+
requiresOrgId: true;
|
|
601
|
+
requiresAgentId: true;
|
|
602
|
+
attachesRunIdWhenAvailable: false;
|
|
603
|
+
} | {
|
|
604
|
+
inputSchema: {
|
|
605
|
+
type: "object";
|
|
606
|
+
additionalProperties: false;
|
|
607
|
+
properties: Record<string, unknown>;
|
|
608
|
+
};
|
|
609
|
+
capabilityId: "browser.close";
|
|
610
|
+
name: "rudder_browser_close";
|
|
611
|
+
description: "Close a run-owned Rudder Browser tab.";
|
|
612
|
+
mutating: true;
|
|
613
|
+
requiresOrgId: true;
|
|
614
|
+
requiresAgentId: true;
|
|
615
|
+
attachesRunIdWhenAvailable: true;
|
|
616
|
+
} | {
|
|
617
|
+
inputSchema: {
|
|
618
|
+
type: "object";
|
|
619
|
+
additionalProperties: false;
|
|
620
|
+
properties: Record<string, unknown>;
|
|
621
|
+
};
|
|
622
|
+
capabilityId: "automation.list";
|
|
623
|
+
name: "rudder_automation_list";
|
|
624
|
+
description: "List automations for an organization with compact local filters.";
|
|
625
|
+
mutating: false;
|
|
626
|
+
requiresOrgId: true;
|
|
627
|
+
requiresAgentId: false;
|
|
628
|
+
attachesRunIdWhenAvailable: false;
|
|
629
|
+
} | {
|
|
630
|
+
inputSchema: {
|
|
631
|
+
type: "object";
|
|
632
|
+
additionalProperties: false;
|
|
633
|
+
properties: Record<string, unknown>;
|
|
634
|
+
};
|
|
635
|
+
capabilityId: "automation.get";
|
|
636
|
+
name: "rudder_automation_get";
|
|
637
|
+
description: "Read one automation detail including triggers and recent runs.";
|
|
638
|
+
mutating: false;
|
|
639
|
+
requiresOrgId: false;
|
|
640
|
+
requiresAgentId: false;
|
|
641
|
+
attachesRunIdWhenAvailable: false;
|
|
642
|
+
} | {
|
|
643
|
+
inputSchema: {
|
|
644
|
+
type: "object";
|
|
645
|
+
additionalProperties: false;
|
|
646
|
+
properties: Record<string, unknown>;
|
|
647
|
+
};
|
|
648
|
+
capabilityId: "automation.runs";
|
|
649
|
+
name: "rudder_automation_runs";
|
|
650
|
+
description: "List recent runs for one automation.";
|
|
651
|
+
mutating: false;
|
|
652
|
+
requiresOrgId: false;
|
|
653
|
+
requiresAgentId: false;
|
|
654
|
+
attachesRunIdWhenAvailable: false;
|
|
655
|
+
} | {
|
|
656
|
+
inputSchema: {
|
|
657
|
+
type: "object";
|
|
658
|
+
additionalProperties: false;
|
|
659
|
+
properties: Record<string, unknown>;
|
|
660
|
+
};
|
|
661
|
+
capabilityId: "automation.triggers.list";
|
|
662
|
+
name: "rudder_automation_triggers_list";
|
|
663
|
+
description: "List triggers configured for one automation.";
|
|
664
|
+
mutating: false;
|
|
665
|
+
requiresOrgId: false;
|
|
666
|
+
requiresAgentId: false;
|
|
667
|
+
attachesRunIdWhenAvailable: false;
|
|
668
|
+
} | {
|
|
669
|
+
inputSchema: {
|
|
670
|
+
type: "object";
|
|
671
|
+
additionalProperties: false;
|
|
672
|
+
properties: Record<string, unknown>;
|
|
673
|
+
};
|
|
674
|
+
capabilityId: "automation.triggers.create";
|
|
675
|
+
name: "rudder_automation_triggers_create";
|
|
676
|
+
description: "Create a schedule, webhook, or API trigger through the governed automation API.";
|
|
677
|
+
mutating: true;
|
|
678
|
+
requiresOrgId: false;
|
|
679
|
+
requiresAgentId: false;
|
|
680
|
+
attachesRunIdWhenAvailable: true;
|
|
681
|
+
} | {
|
|
682
|
+
inputSchema: {
|
|
683
|
+
type: "object";
|
|
684
|
+
additionalProperties: false;
|
|
685
|
+
properties: Record<string, unknown>;
|
|
686
|
+
};
|
|
687
|
+
capabilityId: "automation.triggers.update";
|
|
688
|
+
name: "rudder_automation_triggers_update";
|
|
689
|
+
description: "Update an automation trigger through the governed automation API.";
|
|
690
|
+
mutating: true;
|
|
691
|
+
requiresOrgId: false;
|
|
692
|
+
requiresAgentId: false;
|
|
693
|
+
attachesRunIdWhenAvailable: true;
|
|
694
|
+
} | {
|
|
695
|
+
inputSchema: {
|
|
696
|
+
type: "object";
|
|
697
|
+
additionalProperties: false;
|
|
698
|
+
properties: Record<string, unknown>;
|
|
699
|
+
};
|
|
700
|
+
capabilityId: "automation.triggers.delete";
|
|
701
|
+
name: "rudder_automation_triggers_delete";
|
|
702
|
+
description: "Delete an automation trigger through the governed automation API.";
|
|
703
|
+
mutating: true;
|
|
704
|
+
requiresOrgId: false;
|
|
705
|
+
requiresAgentId: false;
|
|
706
|
+
attachesRunIdWhenAvailable: true;
|
|
707
|
+
} | {
|
|
708
|
+
inputSchema: {
|
|
709
|
+
type: "object";
|
|
710
|
+
additionalProperties: false;
|
|
711
|
+
properties: Record<string, unknown>;
|
|
712
|
+
};
|
|
713
|
+
capabilityId: "automation.triggers.rotate-secret";
|
|
714
|
+
name: "rudder_automation_triggers_rotate_secret";
|
|
715
|
+
description: "Rotate an automation webhook trigger secret through the governed automation API.";
|
|
716
|
+
mutating: true;
|
|
717
|
+
requiresOrgId: false;
|
|
718
|
+
requiresAgentId: false;
|
|
719
|
+
attachesRunIdWhenAvailable: true;
|
|
720
|
+
} | {
|
|
721
|
+
inputSchema: {
|
|
722
|
+
type: "object";
|
|
723
|
+
additionalProperties: false;
|
|
724
|
+
properties: Record<string, unknown>;
|
|
725
|
+
};
|
|
726
|
+
capabilityId: "automation.create";
|
|
727
|
+
name: "rudder_automation_create";
|
|
728
|
+
description: "Create an automation through the governed automation API.";
|
|
729
|
+
mutating: true;
|
|
730
|
+
requiresOrgId: true;
|
|
731
|
+
requiresAgentId: false;
|
|
732
|
+
attachesRunIdWhenAvailable: true;
|
|
733
|
+
} | {
|
|
734
|
+
inputSchema: {
|
|
735
|
+
type: "object";
|
|
736
|
+
additionalProperties: false;
|
|
737
|
+
properties: Record<string, unknown>;
|
|
738
|
+
};
|
|
739
|
+
capabilityId: "automation.update";
|
|
740
|
+
name: "rudder_automation_update";
|
|
741
|
+
description: "Update automation fields through the governed automation API.";
|
|
742
|
+
mutating: true;
|
|
743
|
+
requiresOrgId: false;
|
|
744
|
+
requiresAgentId: false;
|
|
745
|
+
attachesRunIdWhenAvailable: true;
|
|
746
|
+
} | {
|
|
747
|
+
inputSchema: {
|
|
748
|
+
type: "object";
|
|
749
|
+
additionalProperties: false;
|
|
750
|
+
properties: Record<string, unknown>;
|
|
751
|
+
};
|
|
752
|
+
capabilityId: "automation.enable";
|
|
753
|
+
name: "rudder_automation_enable";
|
|
754
|
+
description: "Enable an automation by setting status to active.";
|
|
755
|
+
mutating: true;
|
|
756
|
+
requiresOrgId: false;
|
|
757
|
+
requiresAgentId: false;
|
|
758
|
+
attachesRunIdWhenAvailable: true;
|
|
759
|
+
} | {
|
|
760
|
+
inputSchema: {
|
|
761
|
+
type: "object";
|
|
762
|
+
additionalProperties: false;
|
|
763
|
+
properties: Record<string, unknown>;
|
|
764
|
+
};
|
|
765
|
+
capabilityId: "automation.disable";
|
|
766
|
+
name: "rudder_automation_disable";
|
|
767
|
+
description: "Disable an automation by setting status to paused.";
|
|
768
|
+
mutating: true;
|
|
769
|
+
requiresOrgId: false;
|
|
770
|
+
requiresAgentId: false;
|
|
771
|
+
attachesRunIdWhenAvailable: true;
|
|
772
|
+
} | {
|
|
773
|
+
inputSchema: {
|
|
774
|
+
type: "object";
|
|
775
|
+
additionalProperties: false;
|
|
776
|
+
properties: Record<string, unknown>;
|
|
777
|
+
};
|
|
778
|
+
capabilityId: "automation.run";
|
|
779
|
+
name: "rudder_automation_run";
|
|
780
|
+
description: "Trigger a manual automation run.";
|
|
781
|
+
mutating: true;
|
|
782
|
+
requiresOrgId: false;
|
|
783
|
+
requiresAgentId: false;
|
|
784
|
+
attachesRunIdWhenAvailable: true;
|
|
785
|
+
} | {
|
|
786
|
+
inputSchema: {
|
|
787
|
+
type: "object";
|
|
788
|
+
additionalProperties: false;
|
|
789
|
+
properties: Record<string, unknown>;
|
|
790
|
+
};
|
|
791
|
+
capabilityId: "chat.list";
|
|
792
|
+
name: "rudder_chat_list";
|
|
793
|
+
description: "List chat conversations without dumping full message history.";
|
|
794
|
+
mutating: false;
|
|
795
|
+
requiresOrgId: true;
|
|
796
|
+
requiresAgentId: false;
|
|
797
|
+
attachesRunIdWhenAvailable: false;
|
|
798
|
+
} | {
|
|
799
|
+
inputSchema: {
|
|
800
|
+
type: "object";
|
|
801
|
+
additionalProperties: false;
|
|
802
|
+
properties: Record<string, unknown>;
|
|
803
|
+
};
|
|
804
|
+
capabilityId: "chat.search";
|
|
805
|
+
name: "rudder_chat_search";
|
|
806
|
+
description: "Search chats with bounded snippets and optional scope filtering.";
|
|
807
|
+
mutating: false;
|
|
808
|
+
requiresOrgId: true;
|
|
809
|
+
requiresAgentId: false;
|
|
810
|
+
attachesRunIdWhenAvailable: false;
|
|
811
|
+
} | {
|
|
812
|
+
inputSchema: {
|
|
813
|
+
type: "object";
|
|
814
|
+
additionalProperties: false;
|
|
815
|
+
properties: Record<string, unknown>;
|
|
816
|
+
};
|
|
817
|
+
capabilityId: "chat.get";
|
|
818
|
+
name: "rudder_chat_get";
|
|
819
|
+
description: "Read one chat conversation record.";
|
|
820
|
+
mutating: false;
|
|
821
|
+
requiresOrgId: false;
|
|
822
|
+
requiresAgentId: false;
|
|
823
|
+
attachesRunIdWhenAvailable: false;
|
|
824
|
+
} | {
|
|
825
|
+
inputSchema: {
|
|
826
|
+
type: "object";
|
|
827
|
+
additionalProperties: false;
|
|
828
|
+
properties: Record<string, unknown>;
|
|
829
|
+
};
|
|
830
|
+
capabilityId: "chat.messages";
|
|
831
|
+
name: "rudder_chat_messages";
|
|
832
|
+
description: "Read bounded chat messages with page cursors; transcript output is omitted unless requested.";
|
|
833
|
+
mutating: false;
|
|
834
|
+
requiresOrgId: false;
|
|
835
|
+
requiresAgentId: false;
|
|
836
|
+
attachesRunIdWhenAvailable: false;
|
|
837
|
+
} | {
|
|
838
|
+
inputSchema: {
|
|
839
|
+
type: "object";
|
|
840
|
+
additionalProperties: false;
|
|
841
|
+
properties: Record<string, unknown>;
|
|
842
|
+
};
|
|
843
|
+
capabilityId: "chat.transcript";
|
|
844
|
+
name: "rudder_chat_transcript";
|
|
845
|
+
description: "Read paginated chat messages with assistant transcript entries clipped in human output.";
|
|
846
|
+
mutating: false;
|
|
847
|
+
requiresOrgId: false;
|
|
848
|
+
requiresAgentId: false;
|
|
849
|
+
attachesRunIdWhenAvailable: false;
|
|
850
|
+
} | {
|
|
851
|
+
inputSchema: {
|
|
852
|
+
type: "object";
|
|
853
|
+
additionalProperties: false;
|
|
854
|
+
properties: Record<string, unknown>;
|
|
855
|
+
};
|
|
856
|
+
capabilityId: "chat.read";
|
|
857
|
+
name: "rudder_chat_read";
|
|
858
|
+
description: "Read a bounded recent-message snapshot for one chat with page cursors.";
|
|
859
|
+
mutating: false;
|
|
860
|
+
requiresOrgId: false;
|
|
861
|
+
requiresAgentId: false;
|
|
862
|
+
attachesRunIdWhenAvailable: false;
|
|
863
|
+
} | {
|
|
864
|
+
inputSchema: {
|
|
865
|
+
type: "object";
|
|
866
|
+
additionalProperties: false;
|
|
867
|
+
properties: Record<string, unknown>;
|
|
868
|
+
};
|
|
869
|
+
capabilityId: "chat.create";
|
|
870
|
+
name: "rudder_chat_create";
|
|
871
|
+
description: "Create a chat conversation.";
|
|
872
|
+
mutating: true;
|
|
873
|
+
requiresOrgId: true;
|
|
874
|
+
requiresAgentId: false;
|
|
875
|
+
attachesRunIdWhenAvailable: true;
|
|
876
|
+
} | {
|
|
877
|
+
inputSchema: {
|
|
878
|
+
type: "object";
|
|
879
|
+
additionalProperties: false;
|
|
880
|
+
properties: Record<string, unknown>;
|
|
881
|
+
};
|
|
882
|
+
capabilityId: "chat.send";
|
|
883
|
+
name: "rudder_chat_send";
|
|
884
|
+
description: "Send an agent-authored message directly to the operator in a chat.";
|
|
885
|
+
mutating: true;
|
|
886
|
+
requiresOrgId: false;
|
|
887
|
+
requiresAgentId: true;
|
|
888
|
+
attachesRunIdWhenAvailable: true;
|
|
889
|
+
} | {
|
|
890
|
+
inputSchema: {
|
|
891
|
+
type: "object";
|
|
892
|
+
additionalProperties: false;
|
|
893
|
+
properties: Record<string, unknown>;
|
|
894
|
+
};
|
|
895
|
+
capabilityId: "chat.archive";
|
|
896
|
+
name: "rudder_chat_archive";
|
|
897
|
+
description: "Archive a chat conversation without deleting it.";
|
|
898
|
+
mutating: true;
|
|
899
|
+
requiresOrgId: false;
|
|
900
|
+
requiresAgentId: false;
|
|
901
|
+
attachesRunIdWhenAvailable: true;
|
|
902
|
+
} | {
|
|
903
|
+
inputSchema: {
|
|
904
|
+
type: "object";
|
|
905
|
+
additionalProperties: false;
|
|
906
|
+
properties: Record<string, unknown>;
|
|
907
|
+
};
|
|
908
|
+
capabilityId: "runs.list";
|
|
909
|
+
name: "rudder_runs_list";
|
|
910
|
+
description: "List lightweight run summaries with stable pagination and filters; use --full only for legacy full-row compatibility.";
|
|
911
|
+
mutating: false;
|
|
912
|
+
requiresOrgId: true;
|
|
913
|
+
requiresAgentId: false;
|
|
914
|
+
attachesRunIdWhenAvailable: false;
|
|
915
|
+
} | {
|
|
916
|
+
inputSchema: {
|
|
917
|
+
type: "object";
|
|
918
|
+
additionalProperties: false;
|
|
919
|
+
properties: Record<string, unknown>;
|
|
920
|
+
};
|
|
921
|
+
capabilityId: "runs.by-skill";
|
|
922
|
+
name: "rudder_runs_by_skill";
|
|
923
|
+
description: "Build a paginated skill evidence packet from lightweight run summaries; use --full only for legacy full-row compatibility.";
|
|
924
|
+
mutating: false;
|
|
925
|
+
requiresOrgId: true;
|
|
926
|
+
requiresAgentId: false;
|
|
927
|
+
attachesRunIdWhenAvailable: false;
|
|
928
|
+
} | {
|
|
929
|
+
inputSchema: {
|
|
930
|
+
type: "object";
|
|
931
|
+
additionalProperties: false;
|
|
932
|
+
properties: Record<string, unknown>;
|
|
933
|
+
};
|
|
934
|
+
capabilityId: "runs.get";
|
|
935
|
+
name: "rudder_runs_get";
|
|
936
|
+
description: "Read one bounded run summary; use --full only from a direct trusted CLI for raw detail.";
|
|
937
|
+
mutating: false;
|
|
938
|
+
requiresOrgId: false;
|
|
939
|
+
requiresAgentId: false;
|
|
940
|
+
attachesRunIdWhenAvailable: false;
|
|
941
|
+
} | {
|
|
942
|
+
inputSchema: {
|
|
943
|
+
type: "object";
|
|
944
|
+
additionalProperties: false;
|
|
945
|
+
properties: Record<string, unknown>;
|
|
946
|
+
};
|
|
947
|
+
capabilityId: "runs.events";
|
|
948
|
+
name: "rudder_runs_events";
|
|
949
|
+
description: "List a bounded page of persisted run events with a lossless opaque cursor and clipped payload previews.";
|
|
950
|
+
mutating: false;
|
|
951
|
+
requiresOrgId: false;
|
|
952
|
+
requiresAgentId: false;
|
|
953
|
+
attachesRunIdWhenAvailable: false;
|
|
954
|
+
} | {
|
|
955
|
+
inputSchema: {
|
|
956
|
+
type: "object";
|
|
957
|
+
additionalProperties: false;
|
|
958
|
+
properties: Record<string, unknown>;
|
|
959
|
+
};
|
|
960
|
+
capabilityId: "runs.log";
|
|
961
|
+
name: "rudder_runs_log";
|
|
962
|
+
description: "Read a bounded byte range of stored run log content.";
|
|
963
|
+
mutating: false;
|
|
964
|
+
requiresOrgId: false;
|
|
965
|
+
requiresAgentId: false;
|
|
966
|
+
attachesRunIdWhenAvailable: false;
|
|
967
|
+
} | {
|
|
968
|
+
inputSchema: {
|
|
969
|
+
type: "object";
|
|
970
|
+
additionalProperties: false;
|
|
971
|
+
properties: Record<string, unknown>;
|
|
972
|
+
};
|
|
973
|
+
capabilityId: "runs.transcript";
|
|
974
|
+
name: "rudder_runs_transcript";
|
|
975
|
+
description: "Read a compact server-normalized transcript; --json changes encoding only and --full is direct-CLI-only raw access.";
|
|
976
|
+
mutating: false;
|
|
977
|
+
requiresOrgId: false;
|
|
978
|
+
requiresAgentId: false;
|
|
979
|
+
attachesRunIdWhenAvailable: false;
|
|
980
|
+
} | {
|
|
981
|
+
inputSchema: {
|
|
982
|
+
type: "object";
|
|
983
|
+
additionalProperties: false;
|
|
984
|
+
properties: Record<string, unknown>;
|
|
985
|
+
};
|
|
986
|
+
capabilityId: "runs.errors";
|
|
987
|
+
name: "rudder_runs_errors";
|
|
988
|
+
description: "List failed tool calls, stderr, runtime failures, and jump-to-context commands.";
|
|
989
|
+
mutating: false;
|
|
990
|
+
requiresOrgId: false;
|
|
991
|
+
requiresAgentId: false;
|
|
992
|
+
attachesRunIdWhenAvailable: false;
|
|
993
|
+
} | {
|
|
994
|
+
inputSchema: {
|
|
995
|
+
type: "object";
|
|
996
|
+
additionalProperties: false;
|
|
997
|
+
properties: Record<string, unknown>;
|
|
998
|
+
};
|
|
999
|
+
capabilityId: "runs.cancel";
|
|
1000
|
+
name: "rudder_runs_cancel";
|
|
1001
|
+
description: "Cancel a heartbeat run through the governed server route.";
|
|
1002
|
+
mutating: true;
|
|
1003
|
+
requiresOrgId: false;
|
|
1004
|
+
requiresAgentId: false;
|
|
1005
|
+
attachesRunIdWhenAvailable: true;
|
|
1006
|
+
} | {
|
|
1007
|
+
inputSchema: {
|
|
1008
|
+
type: "object";
|
|
1009
|
+
additionalProperties: false;
|
|
1010
|
+
properties: Record<string, unknown>;
|
|
1011
|
+
};
|
|
1012
|
+
capabilityId: "runs.retry";
|
|
1013
|
+
name: "rudder_runs_retry";
|
|
1014
|
+
description: "Retry a failed, timed out, or cancelled run through the governed server route.";
|
|
1015
|
+
mutating: true;
|
|
1016
|
+
requiresOrgId: false;
|
|
1017
|
+
requiresAgentId: false;
|
|
1018
|
+
attachesRunIdWhenAvailable: true;
|
|
1019
|
+
})[];
|
|
1020
|
+
export declare function rudderMcpSemanticToolContract(tool: RudderMcpToolContractSource): RudderMcpSemanticToolContract;
|
|
1021
|
+
export declare const RUDDER_MCP_CANONICAL_TOOL_CONTRACTS: RudderMcpSemanticToolContract[];
|
|
1022
|
+
export declare const RUDDER_CORE_MCP_TOOL_CONTRACTS: RudderMcpSemanticToolContract[];
|
|
1023
|
+
export declare const RUDDER_BROWSER_MCP_TOOL_CONTRACTS: RudderMcpSemanticToolContract[];
|
|
1024
|
+
export declare const RUDDER_CORE_MCP_TOOL_NAMES: string[];
|
|
1025
|
+
export declare const RUDDER_BROWSER_MCP_TOOL_NAMES: string[];
|
|
1026
|
+
export declare const RUDDER_CORE_MCP_CONTRACT_HASH = "85436ea9893ad336e449cef31a0d43ee34387e5955e836578f27828d2e576e17";
|
|
1027
|
+
export declare const RUDDER_BROWSER_MCP_CONTRACT_HASH = "c4d41b5aaa22d76e528877c17cee84e0fb363b38ebe9d2ff4e1c36a46edecfbe";
|
|
1028
|
+
//# sourceMappingURL=rudder-mcp-contract.d.ts.map
|