@provos/ironcurtain 0.6.0 → 0.7.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 +21 -2
- package/dist/cli-help.d.ts +63 -0
- package/dist/cli-help.js +102 -0
- package/dist/cli-help.js.map +1 -0
- package/dist/cli.js +73 -56
- package/dist/cli.js.map +1 -1
- package/dist/config/config-command.js +136 -2
- package/dist/config/config-command.js.map +1 -1
- package/dist/config/generated/tool-annotations.json +487 -338
- package/dist/config/index.d.ts +21 -1
- package/dist/config/index.js +12 -4
- package/dist/config/index.js.map +1 -1
- package/dist/config/mcp-servers.json +2 -8
- package/dist/config/paths.d.ts +30 -0
- package/dist/config/paths.js +58 -0
- package/dist/config/paths.js.map +1 -1
- package/dist/config/tool-description-hints.json +15 -0
- package/dist/config/types.d.ts +7 -0
- package/dist/config/user-config.d.ts +21 -0
- package/dist/config/user-config.js +8 -0
- package/dist/config/user-config.js.map +1 -1
- package/dist/cron/compile-task-policy.d.ts +17 -0
- package/dist/cron/compile-task-policy.js +39 -0
- package/dist/cron/compile-task-policy.js.map +1 -0
- package/dist/cron/cron-scheduler.d.ts +65 -0
- package/dist/cron/cron-scheduler.js +184 -0
- package/dist/cron/cron-scheduler.js.map +1 -0
- package/dist/cron/file-lock.d.ts +41 -0
- package/dist/cron/file-lock.js +156 -0
- package/dist/cron/file-lock.js.map +1 -0
- package/dist/cron/format-utils.d.ts +18 -0
- package/dist/cron/format-utils.js +145 -0
- package/dist/cron/format-utils.js.map +1 -0
- package/dist/cron/git-sync.d.ts +22 -0
- package/dist/cron/git-sync.js +121 -0
- package/dist/cron/git-sync.js.map +1 -0
- package/dist/cron/headless-transport.d.ts +27 -0
- package/dist/cron/headless-transport.js +43 -0
- package/dist/cron/headless-transport.js.map +1 -0
- package/dist/cron/job-commands.d.ts +39 -0
- package/dist/cron/job-commands.js +522 -0
- package/dist/cron/job-commands.js.map +1 -0
- package/dist/cron/job-store.d.ts +35 -0
- package/dist/cron/job-store.js +111 -0
- package/dist/cron/job-store.js.map +1 -0
- package/dist/cron/types.d.ts +127 -0
- package/dist/cron/types.js +25 -0
- package/dist/cron/types.js.map +1 -0
- package/dist/daemon/control-socket.d.ts +127 -0
- package/dist/daemon/control-socket.js +261 -0
- package/dist/daemon/control-socket.js.map +1 -0
- package/dist/daemon/daemon-command.d.ts +13 -0
- package/dist/daemon/daemon-command.js +230 -0
- package/dist/daemon/daemon-command.js.map +1 -0
- package/dist/daemon/ironcurtain-daemon.d.ts +90 -0
- package/dist/daemon/ironcurtain-daemon.js +548 -0
- package/dist/daemon/ironcurtain-daemon.js.map +1 -0
- package/dist/docker/adapters/claude-code.js +7 -47
- package/dist/docker/adapters/claude-code.js.map +1 -1
- package/dist/docker/adapters/goose.d.ts +58 -0
- package/dist/docker/adapters/goose.js +250 -0
- package/dist/docker/adapters/goose.js.map +1 -0
- package/dist/docker/adapters/shared-scripts.d.ts +29 -0
- package/dist/docker/adapters/shared-scripts.js +80 -0
- package/dist/docker/adapters/shared-scripts.js.map +1 -0
- package/dist/docker/agent-adapter.d.ts +12 -0
- package/dist/docker/agent-adapter.js.map +1 -1
- package/dist/docker/agent-registry.d.ts +6 -1
- package/dist/docker/agent-registry.js +10 -1
- package/dist/docker/agent-registry.js.map +1 -1
- package/dist/docker/docker-agent-session.d.ts +2 -25
- package/dist/docker/docker-agent-session.js +7 -106
- package/dist/docker/docker-agent-session.js.map +1 -1
- package/dist/docker/docker-infrastructure.d.ts +8 -0
- package/dist/docker/docker-infrastructure.js +12 -11
- package/dist/docker/docker-infrastructure.js.map +1 -1
- package/dist/docker/pty-session.js +7 -4
- package/dist/docker/pty-session.js.map +1 -1
- package/dist/escalation/escalation-watcher.d.ts +2 -0
- package/dist/escalation/escalation-watcher.js +3 -0
- package/dist/escalation/escalation-watcher.js.map +1 -1
- package/dist/escalation/session-registry.js +1 -14
- package/dist/escalation/session-registry.js.map +1 -1
- package/dist/index.js +30 -1
- package/dist/index.js.map +1 -1
- package/dist/mux/mux-app.js +11 -6
- package/dist/mux/mux-app.js.map +1 -1
- package/dist/mux/mux-command.js +20 -9
- package/dist/mux/mux-command.js.map +1 -1
- package/dist/mux/mux-input-handler.d.ts +5 -0
- package/dist/mux/mux-input-handler.js +64 -9
- package/dist/mux/mux-input-handler.js.map +1 -1
- package/dist/mux/mux-renderer.d.ts +20 -0
- package/dist/mux/mux-renderer.js +127 -35
- package/dist/mux/mux-renderer.js.map +1 -1
- package/dist/mux/mux-splash.js +2 -1
- package/dist/mux/mux-splash.js.map +1 -1
- package/dist/mux/paste-interceptor.d.ts +22 -0
- package/dist/mux/paste-interceptor.js +143 -0
- package/dist/mux/paste-interceptor.js.map +1 -0
- package/dist/mux/pty-bridge.js +1 -1
- package/dist/mux/pty-bridge.js.map +1 -1
- package/dist/mux/types.d.ts +8 -1
- package/dist/mux/types.js +17 -5
- package/dist/mux/types.js.map +1 -1
- package/dist/pipeline/annotate.js +2 -1
- package/dist/pipeline/annotate.js.map +1 -1
- package/dist/pipeline/compile.d.ts +4 -34
- package/dist/pipeline/compile.js +29 -568
- package/dist/pipeline/compile.js.map +1 -1
- package/dist/pipeline/constitution-compiler.js +1 -1
- package/dist/pipeline/mcp-connections.d.ts +16 -0
- package/dist/pipeline/mcp-connections.js +61 -0
- package/dist/pipeline/mcp-connections.js.map +1 -0
- package/dist/pipeline/pipeline-runner.d.ts +86 -0
- package/dist/pipeline/pipeline-runner.js +554 -0
- package/dist/pipeline/pipeline-runner.js.map +1 -0
- package/dist/pipeline/pipeline-shared.d.ts +29 -2
- package/dist/pipeline/pipeline-shared.js +68 -12
- package/dist/pipeline/pipeline-shared.js.map +1 -1
- package/dist/pipeline/refresh-lists.js +38 -12
- package/dist/pipeline/refresh-lists.js.map +1 -1
- package/dist/pipeline/scenario-generator.js +2 -1
- package/dist/pipeline/scenario-generator.js.map +1 -1
- package/dist/pipeline/tool-annotator.d.ts +3 -3
- package/dist/pipeline/tool-annotator.js +96 -4
- package/dist/pipeline/tool-annotator.js.map +1 -1
- package/dist/pipeline/types.d.ts +52 -0
- package/dist/sandbox/index.js +36 -1
- package/dist/sandbox/index.js.map +1 -1
- package/dist/session/agent-session.d.ts +3 -0
- package/dist/session/agent-session.js +10 -1
- package/dist/session/agent-session.js.map +1 -1
- package/dist/session/index.js +54 -5
- package/dist/session/index.js.map +1 -1
- package/dist/session/preflight.js +26 -6
- package/dist/session/preflight.js.map +1 -1
- package/dist/session/prompts.d.ts +14 -0
- package/dist/session/prompts.js +39 -2
- package/dist/session/prompts.js.map +1 -1
- package/dist/session/session-manager.d.ts +105 -0
- package/dist/session/session-manager.js +134 -0
- package/dist/session/session-manager.js.map +1 -0
- package/dist/session/types.d.ts +27 -0
- package/dist/session/workspace-validation.d.ts +2 -0
- package/dist/session/workspace-validation.js +6 -5
- package/dist/session/workspace-validation.js.map +1 -1
- package/dist/signal/bot-command.d.ts +2 -0
- package/dist/signal/bot-command.js +8 -0
- package/dist/signal/bot-command.js.map +1 -1
- package/dist/signal/format.d.ts +27 -0
- package/dist/signal/format.js +59 -0
- package/dist/signal/format.js.map +1 -1
- package/dist/signal/signal-bot-daemon.d.ts +27 -25
- package/dist/signal/signal-bot-daemon.js +145 -130
- package/dist/signal/signal-bot-daemon.js.map +1 -1
- package/dist/signal/signal-container.js +63 -19
- package/dist/signal/signal-container.js.map +1 -1
- package/dist/signal/signal-transport.js +3 -8
- package/dist/signal/signal-transport.js.map +1 -1
- package/dist/trusted-process/domain-utils.d.ts +38 -4
- package/dist/trusted-process/domain-utils.js +118 -11
- package/dist/trusted-process/domain-utils.js.map +1 -1
- package/dist/trusted-process/index.js +6 -2
- package/dist/trusted-process/index.js.map +1 -1
- package/dist/trusted-process/mcp-client-manager.js +11 -5
- package/dist/trusted-process/mcp-client-manager.js.map +1 -1
- package/dist/trusted-process/mcp-proxy-server.d.ts +2 -0
- package/dist/trusted-process/mcp-proxy-server.js +59 -16
- package/dist/trusted-process/mcp-proxy-server.js.map +1 -1
- package/dist/trusted-process/permissive-output-validator.d.ts +23 -0
- package/dist/trusted-process/permissive-output-validator.js +10 -0
- package/dist/trusted-process/permissive-output-validator.js.map +1 -0
- package/dist/trusted-process/policy-engine.d.ts +27 -4
- package/dist/trusted-process/policy-engine.js +152 -57
- package/dist/trusted-process/policy-engine.js.map +1 -1
- package/dist/trusted-process/tool-description-hints.d.ts +19 -0
- package/dist/trusted-process/tool-description-hints.js +53 -0
- package/dist/trusted-process/tool-description-hints.js.map +1 -0
- package/dist/types/argument-roles.d.ts +33 -1
- package/dist/types/argument-roles.js +129 -1
- package/dist/types/argument-roles.js.map +1 -1
- package/docker/Dockerfile.goose +34 -0
- package/docker/entrypoint-goose.sh +30 -0
- package/package.json +1 -1
- package/src/config/generated/tool-annotations.json +487 -338
- package/src/config/mcp-servers.json +2 -8
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-
|
|
2
|
+
"generatedAt": "2026-03-05T00:53:56.055Z",
|
|
3
3
|
"servers": {
|
|
4
4
|
"filesystem": {
|
|
5
|
-
"inputHash": "
|
|
5
|
+
"inputHash": "4efe924aad6d0b55f7128efebd2b9e23689dad318dafa05fd71913bcb6f85ee9",
|
|
6
6
|
"tools": [
|
|
7
7
|
{
|
|
8
8
|
"toolName": "read_file",
|
|
9
|
-
"comment": "Reads the complete
|
|
9
|
+
"comment": "Reads the complete contents of a file as text, optionally limited to the first or last N lines (deprecated in favor of read_text_file).",
|
|
10
10
|
"sideEffects": true,
|
|
11
11
|
"args": {
|
|
12
12
|
"path": [
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
{
|
|
25
25
|
"toolName": "read_text_file",
|
|
26
|
-
"comment": "Reads the complete
|
|
26
|
+
"comment": "Reads the complete contents of a text file, optionally limited to the first or last N lines.",
|
|
27
27
|
"sideEffects": true,
|
|
28
28
|
"args": {
|
|
29
29
|
"path": [
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
"toolName": "read_media_file",
|
|
43
|
-
"comment": "Reads an image or audio file and returns its base64-encoded data
|
|
43
|
+
"comment": "Reads an image or audio file and returns its base64-encoded data and MIME type.",
|
|
44
44
|
"sideEffects": true,
|
|
45
45
|
"args": {
|
|
46
46
|
"path": [
|
|
@@ -76,13 +76,26 @@
|
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
78
|
"toolName": "edit_file",
|
|
79
|
-
"comment": "Makes
|
|
80
|
-
"sideEffects": true,
|
|
81
|
-
"args": {
|
|
82
|
-
"path":
|
|
83
|
-
"
|
|
84
|
-
|
|
85
|
-
|
|
79
|
+
"comment": "Makes line-based edits to a text file by replacing exact line sequences, returning a git-style diff of the changes.",
|
|
80
|
+
"sideEffects": true,
|
|
81
|
+
"args": {
|
|
82
|
+
"path": {
|
|
83
|
+
"default": [
|
|
84
|
+
"read-path",
|
|
85
|
+
"write-path"
|
|
86
|
+
],
|
|
87
|
+
"when": [
|
|
88
|
+
{
|
|
89
|
+
"condition": {
|
|
90
|
+
"arg": "dryRun",
|
|
91
|
+
"equals": true
|
|
92
|
+
},
|
|
93
|
+
"roles": [
|
|
94
|
+
"read-path"
|
|
95
|
+
]
|
|
96
|
+
}
|
|
97
|
+
]
|
|
98
|
+
},
|
|
86
99
|
"edits": [
|
|
87
100
|
"none"
|
|
88
101
|
],
|
|
@@ -94,7 +107,7 @@
|
|
|
94
107
|
},
|
|
95
108
|
{
|
|
96
109
|
"toolName": "create_directory",
|
|
97
|
-
"comment": "Creates a new directory (including
|
|
110
|
+
"comment": "Creates a new directory (including nested directories) at the specified path, succeeding silently if it already exists.",
|
|
98
111
|
"sideEffects": true,
|
|
99
112
|
"args": {
|
|
100
113
|
"path": [
|
|
@@ -105,7 +118,7 @@
|
|
|
105
118
|
},
|
|
106
119
|
{
|
|
107
120
|
"toolName": "list_directory",
|
|
108
|
-
"comment": "
|
|
121
|
+
"comment": "Returns a detailed listing of all files and directories within the specified path, distinguishing files from directories.",
|
|
109
122
|
"sideEffects": true,
|
|
110
123
|
"args": {
|
|
111
124
|
"path": [
|
|
@@ -116,7 +129,7 @@
|
|
|
116
129
|
},
|
|
117
130
|
{
|
|
118
131
|
"toolName": "list_directory_with_sizes",
|
|
119
|
-
"comment": "
|
|
132
|
+
"comment": "Returns a detailed listing of all files and directories within the specified path including their sizes, with optional sorting.",
|
|
120
133
|
"sideEffects": true,
|
|
121
134
|
"args": {
|
|
122
135
|
"path": [
|
|
@@ -130,7 +143,7 @@
|
|
|
130
143
|
},
|
|
131
144
|
{
|
|
132
145
|
"toolName": "directory_tree",
|
|
133
|
-
"comment": "
|
|
146
|
+
"comment": "Returns a recursive JSON tree view of all files and directories under the specified path, with optional exclusion patterns.",
|
|
134
147
|
"sideEffects": true,
|
|
135
148
|
"args": {
|
|
136
149
|
"path": [
|
|
@@ -144,7 +157,7 @@
|
|
|
144
157
|
},
|
|
145
158
|
{
|
|
146
159
|
"toolName": "move_file",
|
|
147
|
-
"comment": "Moves or renames a file or directory from a source path to a destination path
|
|
160
|
+
"comment": "Moves or renames a file or directory from a source path to a destination path in a single operation.",
|
|
148
161
|
"sideEffects": true,
|
|
149
162
|
"args": {
|
|
150
163
|
"source": [
|
|
@@ -159,7 +172,7 @@
|
|
|
159
172
|
},
|
|
160
173
|
{
|
|
161
174
|
"toolName": "search_files",
|
|
162
|
-
"comment": "Recursively searches for files and directories matching a glob-style pattern
|
|
175
|
+
"comment": "Recursively searches for files and directories matching a glob-style pattern within the specified path, returning full matching paths.",
|
|
163
176
|
"sideEffects": true,
|
|
164
177
|
"args": {
|
|
165
178
|
"path": [
|
|
@@ -187,7 +200,7 @@
|
|
|
187
200
|
},
|
|
188
201
|
{
|
|
189
202
|
"toolName": "list_allowed_directories",
|
|
190
|
-
"comment": "Returns the list of directories
|
|
203
|
+
"comment": "Returns the list of directories that the server is permitted to access.",
|
|
191
204
|
"sideEffects": false,
|
|
192
205
|
"args": {},
|
|
193
206
|
"serverName": "filesystem"
|
|
@@ -195,11 +208,11 @@
|
|
|
195
208
|
]
|
|
196
209
|
},
|
|
197
210
|
"git": {
|
|
198
|
-
"inputHash": "
|
|
211
|
+
"inputHash": "7f1ec738f0b9061f49ee2b04f20d6ee449a48a5edba987be16d3de1383dc605d",
|
|
199
212
|
"tools": [
|
|
200
213
|
{
|
|
201
214
|
"toolName": "git_add",
|
|
202
|
-
"comment": "Stages specified files in the
|
|
215
|
+
"comment": "Stages specified files or all changes in the repository for the next commit.",
|
|
203
216
|
"sideEffects": true,
|
|
204
217
|
"args": {
|
|
205
218
|
"path": [
|
|
@@ -222,7 +235,7 @@
|
|
|
222
235
|
},
|
|
223
236
|
{
|
|
224
237
|
"toolName": "git_blame",
|
|
225
|
-
"comment": "Shows line-by-line authorship information for a file, revealing who last modified each line.",
|
|
238
|
+
"comment": "Shows line-by-line authorship information for a file, revealing who last modified each line and when.",
|
|
226
239
|
"sideEffects": true,
|
|
227
240
|
"args": {
|
|
228
241
|
"path": [
|
|
@@ -245,14 +258,53 @@
|
|
|
245
258
|
},
|
|
246
259
|
{
|
|
247
260
|
"toolName": "git_branch",
|
|
248
|
-
"comment": "
|
|
249
|
-
"sideEffects": true,
|
|
250
|
-
"args": {
|
|
251
|
-
"path":
|
|
252
|
-
"
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
261
|
+
"comment": "Manages git branches by listing, creating, deleting, renaming, or showing the current branch.",
|
|
262
|
+
"sideEffects": true,
|
|
263
|
+
"args": {
|
|
264
|
+
"path": {
|
|
265
|
+
"default": [
|
|
266
|
+
"read-path",
|
|
267
|
+
"write-history",
|
|
268
|
+
"delete-history"
|
|
269
|
+
],
|
|
270
|
+
"when": [
|
|
271
|
+
{
|
|
272
|
+
"condition": {
|
|
273
|
+
"arg": "operation",
|
|
274
|
+
"in": [
|
|
275
|
+
"list",
|
|
276
|
+
"show-current"
|
|
277
|
+
]
|
|
278
|
+
},
|
|
279
|
+
"roles": [
|
|
280
|
+
"read-path"
|
|
281
|
+
]
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"condition": {
|
|
285
|
+
"arg": "operation",
|
|
286
|
+
"in": [
|
|
287
|
+
"create",
|
|
288
|
+
"rename"
|
|
289
|
+
]
|
|
290
|
+
},
|
|
291
|
+
"roles": [
|
|
292
|
+
"read-path",
|
|
293
|
+
"write-history"
|
|
294
|
+
]
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"condition": {
|
|
298
|
+
"arg": "operation",
|
|
299
|
+
"equals": "delete"
|
|
300
|
+
},
|
|
301
|
+
"roles": [
|
|
302
|
+
"read-path",
|
|
303
|
+
"delete-history"
|
|
304
|
+
]
|
|
305
|
+
}
|
|
306
|
+
]
|
|
307
|
+
},
|
|
256
308
|
"operation": [
|
|
257
309
|
"none"
|
|
258
310
|
],
|
|
@@ -308,7 +360,7 @@
|
|
|
308
360
|
},
|
|
309
361
|
{
|
|
310
362
|
"toolName": "git_checkout",
|
|
311
|
-
"comment": "Switches branches, restores working tree files
|
|
363
|
+
"comment": "Switches branches, creates new branches, or restores specific working tree files to a given state.",
|
|
312
364
|
"sideEffects": true,
|
|
313
365
|
"args": {
|
|
314
366
|
"path": [
|
|
@@ -325,8 +377,7 @@
|
|
|
325
377
|
"none"
|
|
326
378
|
],
|
|
327
379
|
"paths": [
|
|
328
|
-
"read-path"
|
|
329
|
-
"write-path"
|
|
380
|
+
"read-path"
|
|
330
381
|
],
|
|
331
382
|
"track": [
|
|
332
383
|
"none"
|
|
@@ -336,7 +387,7 @@
|
|
|
336
387
|
},
|
|
337
388
|
{
|
|
338
389
|
"toolName": "git_cherry_pick",
|
|
339
|
-
"comment": "Applies specific commits from other branches onto the current branch.",
|
|
390
|
+
"comment": "Applies specific commits from other branches onto the current branch without merging entire branches.",
|
|
340
391
|
"sideEffects": true,
|
|
341
392
|
"args": {
|
|
342
393
|
"path": [
|
|
@@ -369,13 +420,26 @@
|
|
|
369
420
|
},
|
|
370
421
|
{
|
|
371
422
|
"toolName": "git_clean",
|
|
372
|
-
"comment": "Removes untracked files (and optionally directories) from the working directory.",
|
|
373
|
-
"sideEffects": true,
|
|
374
|
-
"args": {
|
|
375
|
-
"path":
|
|
376
|
-
"
|
|
377
|
-
|
|
378
|
-
|
|
423
|
+
"comment": "Removes untracked files (and optionally directories) from the working directory, with a dry-run preview option.",
|
|
424
|
+
"sideEffects": true,
|
|
425
|
+
"args": {
|
|
426
|
+
"path": {
|
|
427
|
+
"default": [
|
|
428
|
+
"read-path",
|
|
429
|
+
"delete-path"
|
|
430
|
+
],
|
|
431
|
+
"when": [
|
|
432
|
+
{
|
|
433
|
+
"condition": {
|
|
434
|
+
"arg": "dryRun",
|
|
435
|
+
"equals": true
|
|
436
|
+
},
|
|
437
|
+
"roles": [
|
|
438
|
+
"read-path"
|
|
439
|
+
]
|
|
440
|
+
}
|
|
441
|
+
]
|
|
442
|
+
},
|
|
379
443
|
"force": [
|
|
380
444
|
"none"
|
|
381
445
|
],
|
|
@@ -393,7 +457,7 @@
|
|
|
393
457
|
},
|
|
394
458
|
{
|
|
395
459
|
"toolName": "git_clear_working_dir",
|
|
396
|
-
"comment": "Clears the session working directory setting
|
|
460
|
+
"comment": "Clears the session working directory setting so subsequent git operations require an explicit path parameter.",
|
|
397
461
|
"sideEffects": false,
|
|
398
462
|
"args": {
|
|
399
463
|
"confirm": [
|
|
@@ -404,7 +468,7 @@
|
|
|
404
468
|
},
|
|
405
469
|
{
|
|
406
470
|
"toolName": "git_clone",
|
|
407
|
-
"comment": "Clones a remote git repository to a local path,
|
|
471
|
+
"comment": "Clones a remote git repository to a local path, with support for shallow cloning and bare/mirror modes.",
|
|
408
472
|
"sideEffects": true,
|
|
409
473
|
"args": {
|
|
410
474
|
"url": [
|
|
@@ -430,7 +494,7 @@
|
|
|
430
494
|
},
|
|
431
495
|
{
|
|
432
496
|
"toolName": "git_commit",
|
|
433
|
-
"comment": "Creates a new commit
|
|
497
|
+
"comment": "Creates a new commit recording staged changes in the repository with a specified commit message.",
|
|
434
498
|
"sideEffects": true,
|
|
435
499
|
"args": {
|
|
436
500
|
"path": [
|
|
@@ -466,7 +530,7 @@
|
|
|
466
530
|
},
|
|
467
531
|
{
|
|
468
532
|
"toolName": "git_diff",
|
|
469
|
-
"comment": "Shows differences between commits, branches, or the working tree in unified diff format.",
|
|
533
|
+
"comment": "Shows differences between commits, branches, staged changes, or the working tree in unified diff format.",
|
|
470
534
|
"sideEffects": true,
|
|
471
535
|
"args": {
|
|
472
536
|
"path": [
|
|
@@ -501,11 +565,12 @@
|
|
|
501
565
|
},
|
|
502
566
|
{
|
|
503
567
|
"toolName": "git_fetch",
|
|
504
|
-
"comment": "
|
|
568
|
+
"comment": "Downloads objects and refs from a remote repository without merging them into the local branch.",
|
|
505
569
|
"sideEffects": true,
|
|
506
570
|
"args": {
|
|
507
571
|
"path": [
|
|
508
|
-
"read-path"
|
|
572
|
+
"read-path",
|
|
573
|
+
"write-history"
|
|
509
574
|
],
|
|
510
575
|
"remote": [
|
|
511
576
|
"git-remote-url"
|
|
@@ -524,7 +589,7 @@
|
|
|
524
589
|
},
|
|
525
590
|
{
|
|
526
591
|
"toolName": "git_init",
|
|
527
|
-
"comment": "Initializes a new
|
|
592
|
+
"comment": "Initializes a new Git repository at the specified path, creating a .git directory and setting up the initial branch.",
|
|
528
593
|
"sideEffects": true,
|
|
529
594
|
"args": {
|
|
530
595
|
"path": [
|
|
@@ -541,7 +606,7 @@
|
|
|
541
606
|
},
|
|
542
607
|
{
|
|
543
608
|
"toolName": "git_log",
|
|
544
|
-
"comment": "
|
|
609
|
+
"comment": "Displays commit history with optional filtering by author, date, file path, or commit message pattern.",
|
|
545
610
|
"sideEffects": true,
|
|
546
611
|
"args": {
|
|
547
612
|
"path": [
|
|
@@ -588,7 +653,7 @@
|
|
|
588
653
|
},
|
|
589
654
|
{
|
|
590
655
|
"toolName": "git_merge",
|
|
591
|
-
"comment": "Merges another branch into the current branch
|
|
656
|
+
"comment": "Merges another branch into the current branch using optional merge strategies and commit options.",
|
|
592
657
|
"sideEffects": true,
|
|
593
658
|
"args": {
|
|
594
659
|
"path": [
|
|
@@ -618,7 +683,7 @@
|
|
|
618
683
|
},
|
|
619
684
|
{
|
|
620
685
|
"toolName": "git_pull",
|
|
621
|
-
"comment": "Fetches
|
|
686
|
+
"comment": "Fetches changes from a remote repository and integrates them into the current local branch.",
|
|
622
687
|
"sideEffects": true,
|
|
623
688
|
"args": {
|
|
624
689
|
"path": [
|
|
@@ -642,7 +707,7 @@
|
|
|
642
707
|
},
|
|
643
708
|
{
|
|
644
709
|
"toolName": "git_push",
|
|
645
|
-
"comment": "Uploads local commits to a remote repository branch, with options for force push and branch deletion.",
|
|
710
|
+
"comment": "Uploads local commits to a remote repository branch, with options for force push, tagging, and branch deletion.",
|
|
646
711
|
"sideEffects": true,
|
|
647
712
|
"args": {
|
|
648
713
|
"path": [
|
|
@@ -683,7 +748,7 @@
|
|
|
683
748
|
},
|
|
684
749
|
{
|
|
685
750
|
"toolName": "git_rebase",
|
|
686
|
-
"comment": "Reapplies commits on top of another base tip to produce a cleaner linear history.",
|
|
751
|
+
"comment": "Reapplies commits on top of another base tip to produce a cleaner linear history, with support for continue/abort/skip modes.",
|
|
687
752
|
"sideEffects": true,
|
|
688
753
|
"args": {
|
|
689
754
|
"path": [
|
|
@@ -694,7 +759,7 @@
|
|
|
694
759
|
"none"
|
|
695
760
|
],
|
|
696
761
|
"upstream": [
|
|
697
|
-
"
|
|
762
|
+
"branch-name"
|
|
698
763
|
],
|
|
699
764
|
"branch": [
|
|
700
765
|
"branch-name"
|
|
@@ -713,7 +778,7 @@
|
|
|
713
778
|
},
|
|
714
779
|
{
|
|
715
780
|
"toolName": "git_reflog",
|
|
716
|
-
"comment": "
|
|
781
|
+
"comment": "Displays the reference logs tracking when branch tips and other git references were updated, useful for recovering lost commits.",
|
|
717
782
|
"sideEffects": true,
|
|
718
783
|
"args": {
|
|
719
784
|
"path": [
|
|
@@ -730,7 +795,7 @@
|
|
|
730
795
|
},
|
|
731
796
|
{
|
|
732
797
|
"toolName": "git_remote",
|
|
733
|
-
"comment": "Manages remote
|
|
798
|
+
"comment": "Manages remote repository configurations by listing, adding, removing, renaming, or updating remote URLs.",
|
|
734
799
|
"sideEffects": true,
|
|
735
800
|
"args": {
|
|
736
801
|
"path": [
|
|
@@ -740,7 +805,7 @@
|
|
|
740
805
|
"none"
|
|
741
806
|
],
|
|
742
807
|
"name": [
|
|
743
|
-
"
|
|
808
|
+
"none"
|
|
744
809
|
],
|
|
745
810
|
"url": [
|
|
746
811
|
"git-remote-url"
|
|
@@ -756,7 +821,7 @@
|
|
|
756
821
|
},
|
|
757
822
|
{
|
|
758
823
|
"toolName": "git_reset",
|
|
759
|
-
"comment": "Resets the current HEAD to a specified state,
|
|
824
|
+
"comment": "Resets the current HEAD to a specified state, with modes ranging from unstaging files to discarding all changes.",
|
|
760
825
|
"sideEffects": true,
|
|
761
826
|
"args": {
|
|
762
827
|
"path": [
|
|
@@ -800,7 +865,7 @@
|
|
|
800
865
|
},
|
|
801
866
|
{
|
|
802
867
|
"toolName": "git_show",
|
|
803
|
-
"comment": "Displays details
|
|
868
|
+
"comment": "Displays details of a git object (commit, tree, blob, or tag) including commit metadata and diffs.",
|
|
804
869
|
"sideEffects": true,
|
|
805
870
|
"args": {
|
|
806
871
|
"path": [
|
|
@@ -850,7 +915,7 @@
|
|
|
850
915
|
},
|
|
851
916
|
{
|
|
852
917
|
"toolName": "git_status",
|
|
853
|
-
"comment": "Shows the working tree status including staged, unstaged, and untracked files.",
|
|
918
|
+
"comment": "Shows the current working tree status including staged, unstaged, and untracked files.",
|
|
854
919
|
"sideEffects": true,
|
|
855
920
|
"args": {
|
|
856
921
|
"path": [
|
|
@@ -864,14 +929,47 @@
|
|
|
864
929
|
},
|
|
865
930
|
{
|
|
866
931
|
"toolName": "git_tag",
|
|
867
|
-
"comment": "Manages tags by listing, creating
|
|
868
|
-
"sideEffects": true,
|
|
869
|
-
"args": {
|
|
870
|
-
"path":
|
|
871
|
-
"
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
932
|
+
"comment": "Manages git tags by listing all tags, creating new lightweight or annotated tags, or deleting existing tags.",
|
|
933
|
+
"sideEffects": true,
|
|
934
|
+
"args": {
|
|
935
|
+
"path": {
|
|
936
|
+
"default": [
|
|
937
|
+
"read-path",
|
|
938
|
+
"write-history",
|
|
939
|
+
"delete-history"
|
|
940
|
+
],
|
|
941
|
+
"when": [
|
|
942
|
+
{
|
|
943
|
+
"condition": {
|
|
944
|
+
"arg": "mode",
|
|
945
|
+
"equals": "list"
|
|
946
|
+
},
|
|
947
|
+
"roles": [
|
|
948
|
+
"read-path"
|
|
949
|
+
]
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"condition": {
|
|
953
|
+
"arg": "mode",
|
|
954
|
+
"equals": "create"
|
|
955
|
+
},
|
|
956
|
+
"roles": [
|
|
957
|
+
"read-path",
|
|
958
|
+
"write-history"
|
|
959
|
+
]
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"condition": {
|
|
963
|
+
"arg": "mode",
|
|
964
|
+
"equals": "delete"
|
|
965
|
+
},
|
|
966
|
+
"roles": [
|
|
967
|
+
"read-path",
|
|
968
|
+
"delete-history"
|
|
969
|
+
]
|
|
970
|
+
}
|
|
971
|
+
]
|
|
972
|
+
},
|
|
875
973
|
"mode": [
|
|
876
974
|
"none"
|
|
877
975
|
],
|
|
@@ -910,11 +1008,62 @@
|
|
|
910
1008
|
"mode": [
|
|
911
1009
|
"none"
|
|
912
1010
|
],
|
|
913
|
-
"worktreePath":
|
|
914
|
-
"
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
1011
|
+
"worktreePath": {
|
|
1012
|
+
"default": [
|
|
1013
|
+
"read-path",
|
|
1014
|
+
"write-path",
|
|
1015
|
+
"delete-path"
|
|
1016
|
+
],
|
|
1017
|
+
"when": [
|
|
1018
|
+
{
|
|
1019
|
+
"condition": {
|
|
1020
|
+
"arg": "mode",
|
|
1021
|
+
"equals": "list"
|
|
1022
|
+
},
|
|
1023
|
+
"roles": [
|
|
1024
|
+
"read-path"
|
|
1025
|
+
]
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"condition": {
|
|
1029
|
+
"arg": "mode",
|
|
1030
|
+
"equals": "add"
|
|
1031
|
+
},
|
|
1032
|
+
"roles": [
|
|
1033
|
+
"write-path"
|
|
1034
|
+
]
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"condition": {
|
|
1038
|
+
"arg": "mode",
|
|
1039
|
+
"equals": "remove"
|
|
1040
|
+
},
|
|
1041
|
+
"roles": [
|
|
1042
|
+
"read-path",
|
|
1043
|
+
"delete-path"
|
|
1044
|
+
]
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"condition": {
|
|
1048
|
+
"arg": "mode",
|
|
1049
|
+
"equals": "move"
|
|
1050
|
+
},
|
|
1051
|
+
"roles": [
|
|
1052
|
+
"read-path",
|
|
1053
|
+
"delete-path"
|
|
1054
|
+
]
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"condition": {
|
|
1058
|
+
"arg": "mode",
|
|
1059
|
+
"equals": "prune"
|
|
1060
|
+
},
|
|
1061
|
+
"roles": [
|
|
1062
|
+
"read-path"
|
|
1063
|
+
]
|
|
1064
|
+
}
|
|
1065
|
+
]
|
|
1066
|
+
},
|
|
918
1067
|
"branch": [
|
|
919
1068
|
"branch-name"
|
|
920
1069
|
],
|
|
@@ -941,7 +1090,7 @@
|
|
|
941
1090
|
},
|
|
942
1091
|
{
|
|
943
1092
|
"toolName": "git_wrapup_instructions",
|
|
944
|
-
"comment": "Returns the user's desired git wrap-up workflow instructions
|
|
1093
|
+
"comment": "Returns the user's desired git wrap-up workflow instructions and current repository status to guide committing and documenting changes.",
|
|
945
1094
|
"sideEffects": false,
|
|
946
1095
|
"args": {
|
|
947
1096
|
"acknowledgement": [
|
|
@@ -959,11 +1108,11 @@
|
|
|
959
1108
|
]
|
|
960
1109
|
},
|
|
961
1110
|
"fetch": {
|
|
962
|
-
"inputHash": "
|
|
1111
|
+
"inputHash": "b952616993b762ff5748e85c13cd0a65abfa3b6846daa3682e24341d19ae6117",
|
|
963
1112
|
"tools": [
|
|
964
1113
|
{
|
|
965
1114
|
"toolName": "http_fetch",
|
|
966
|
-
"comment": "Fetches content
|
|
1115
|
+
"comment": "Fetches the content of a given URL via HTTP GET and returns it in the specified format.",
|
|
967
1116
|
"sideEffects": true,
|
|
968
1117
|
"args": {
|
|
969
1118
|
"url": [
|
|
@@ -986,7 +1135,7 @@
|
|
|
986
1135
|
},
|
|
987
1136
|
{
|
|
988
1137
|
"toolName": "web_search",
|
|
989
|
-
"comment": "Searches the web using a configured search provider and returns a list of results for
|
|
1138
|
+
"comment": "Searches the web using a configured search provider and returns a list of results for a given query.",
|
|
990
1139
|
"sideEffects": true,
|
|
991
1140
|
"args": {
|
|
992
1141
|
"query": [
|
|
@@ -1001,29 +1150,32 @@
|
|
|
1001
1150
|
]
|
|
1002
1151
|
},
|
|
1003
1152
|
"github": {
|
|
1004
|
-
"inputHash": "
|
|
1153
|
+
"inputHash": "d3e8b8ddd578329c19e676ca628bf1cb7ea7e79fd77d9fffc0ed43a9918fcdde",
|
|
1005
1154
|
"tools": [
|
|
1006
1155
|
{
|
|
1007
1156
|
"toolName": "add_comment_to_pending_review",
|
|
1008
|
-
"comment": "Adds a review comment to the requester's
|
|
1157
|
+
"comment": "Adds a review comment to the requester's existing pending pull request review.",
|
|
1009
1158
|
"sideEffects": true,
|
|
1010
1159
|
"args": {
|
|
1011
|
-
"body": [
|
|
1012
|
-
"none"
|
|
1013
|
-
],
|
|
1014
|
-
"line": [
|
|
1015
|
-
"none"
|
|
1016
|
-
],
|
|
1017
1160
|
"owner": [
|
|
1018
1161
|
"github-owner"
|
|
1019
1162
|
],
|
|
1163
|
+
"repo": [
|
|
1164
|
+
"github-repo"
|
|
1165
|
+
],
|
|
1166
|
+
"pullNumber": [
|
|
1167
|
+
"none"
|
|
1168
|
+
],
|
|
1020
1169
|
"path": [
|
|
1021
1170
|
"none"
|
|
1022
1171
|
],
|
|
1023
|
-
"
|
|
1172
|
+
"body": [
|
|
1024
1173
|
"none"
|
|
1025
1174
|
],
|
|
1026
|
-
"
|
|
1175
|
+
"subjectType": [
|
|
1176
|
+
"none"
|
|
1177
|
+
],
|
|
1178
|
+
"line": [
|
|
1027
1179
|
"none"
|
|
1028
1180
|
],
|
|
1029
1181
|
"side": [
|
|
@@ -1034,9 +1186,6 @@
|
|
|
1034
1186
|
],
|
|
1035
1187
|
"startSide": [
|
|
1036
1188
|
"none"
|
|
1037
|
-
],
|
|
1038
|
-
"subjectType": [
|
|
1039
|
-
"none"
|
|
1040
1189
|
]
|
|
1041
1190
|
},
|
|
1042
1191
|
"serverName": "github"
|
|
@@ -1046,16 +1195,16 @@
|
|
|
1046
1195
|
"comment": "Adds a comment to a specific issue or pull request in a GitHub repository.",
|
|
1047
1196
|
"sideEffects": true,
|
|
1048
1197
|
"args": {
|
|
1049
|
-
"body": [
|
|
1050
|
-
"none"
|
|
1051
|
-
],
|
|
1052
|
-
"issue_number": [
|
|
1053
|
-
"none"
|
|
1054
|
-
],
|
|
1055
1198
|
"owner": [
|
|
1056
1199
|
"github-owner"
|
|
1057
1200
|
],
|
|
1058
1201
|
"repo": [
|
|
1202
|
+
"github-repo"
|
|
1203
|
+
],
|
|
1204
|
+
"issue_number": [
|
|
1205
|
+
"none"
|
|
1206
|
+
],
|
|
1207
|
+
"body": [
|
|
1059
1208
|
"none"
|
|
1060
1209
|
]
|
|
1061
1210
|
},
|
|
@@ -1063,22 +1212,22 @@
|
|
|
1063
1212
|
},
|
|
1064
1213
|
{
|
|
1065
1214
|
"toolName": "add_reply_to_pull_request_comment",
|
|
1066
|
-
"comment": "Adds a reply to an existing pull request comment,
|
|
1215
|
+
"comment": "Adds a reply to an existing pull request comment, linking it as a threaded response.",
|
|
1067
1216
|
"sideEffects": true,
|
|
1068
1217
|
"args": {
|
|
1069
|
-
"body": [
|
|
1070
|
-
"none"
|
|
1071
|
-
],
|
|
1072
|
-
"commentId": [
|
|
1073
|
-
"none"
|
|
1074
|
-
],
|
|
1075
1218
|
"owner": [
|
|
1076
1219
|
"github-owner"
|
|
1077
1220
|
],
|
|
1221
|
+
"repo": [
|
|
1222
|
+
"github-repo"
|
|
1223
|
+
],
|
|
1078
1224
|
"pullNumber": [
|
|
1079
1225
|
"none"
|
|
1080
1226
|
],
|
|
1081
|
-
"
|
|
1227
|
+
"commentId": [
|
|
1228
|
+
"none"
|
|
1229
|
+
],
|
|
1230
|
+
"body": [
|
|
1082
1231
|
"none"
|
|
1083
1232
|
]
|
|
1084
1233
|
},
|
|
@@ -1086,22 +1235,22 @@
|
|
|
1086
1235
|
},
|
|
1087
1236
|
{
|
|
1088
1237
|
"toolName": "assign_copilot_to_issue",
|
|
1089
|
-
"comment": "Assigns GitHub Copilot to work on a specific issue, potentially
|
|
1238
|
+
"comment": "Assigns GitHub Copilot as an agent to work on a specific issue, potentially creating a pull request with code changes.",
|
|
1090
1239
|
"sideEffects": true,
|
|
1091
1240
|
"args": {
|
|
1092
|
-
"
|
|
1093
|
-
"
|
|
1241
|
+
"owner": [
|
|
1242
|
+
"github-owner"
|
|
1094
1243
|
],
|
|
1095
|
-
"
|
|
1096
|
-
"
|
|
1244
|
+
"repo": [
|
|
1245
|
+
"github-repo"
|
|
1097
1246
|
],
|
|
1098
1247
|
"issue_number": [
|
|
1099
1248
|
"none"
|
|
1100
1249
|
],
|
|
1101
|
-
"
|
|
1102
|
-
"
|
|
1250
|
+
"base_ref": [
|
|
1251
|
+
"branch-name"
|
|
1103
1252
|
],
|
|
1104
|
-
"
|
|
1253
|
+
"custom_instructions": [
|
|
1105
1254
|
"none"
|
|
1106
1255
|
]
|
|
1107
1256
|
},
|
|
@@ -1112,44 +1261,44 @@
|
|
|
1112
1261
|
"comment": "Creates a new branch in a GitHub repository, optionally from a specified source branch.",
|
|
1113
1262
|
"sideEffects": true,
|
|
1114
1263
|
"args": {
|
|
1264
|
+
"owner": [
|
|
1265
|
+
"github-owner"
|
|
1266
|
+
],
|
|
1267
|
+
"repo": [
|
|
1268
|
+
"github-repo"
|
|
1269
|
+
],
|
|
1115
1270
|
"branch": [
|
|
1116
1271
|
"branch-name"
|
|
1117
1272
|
],
|
|
1118
1273
|
"from_branch": [
|
|
1119
1274
|
"branch-name"
|
|
1120
|
-
],
|
|
1121
|
-
"owner": [
|
|
1122
|
-
"github-owner"
|
|
1123
|
-
],
|
|
1124
|
-
"repo": [
|
|
1125
|
-
"none"
|
|
1126
1275
|
]
|
|
1127
1276
|
},
|
|
1128
1277
|
"serverName": "github"
|
|
1129
1278
|
},
|
|
1130
1279
|
{
|
|
1131
1280
|
"toolName": "create_or_update_file",
|
|
1132
|
-
"comment": "Creates or updates a single file in a GitHub repository
|
|
1281
|
+
"comment": "Creates or updates a single file in a GitHub repository with a commit message.",
|
|
1133
1282
|
"sideEffects": true,
|
|
1134
1283
|
"args": {
|
|
1135
|
-
"branch": [
|
|
1136
|
-
"branch-name"
|
|
1137
|
-
],
|
|
1138
|
-
"content": [
|
|
1139
|
-
"none"
|
|
1140
|
-
],
|
|
1141
|
-
"message": [
|
|
1142
|
-
"none"
|
|
1143
|
-
],
|
|
1144
1284
|
"owner": [
|
|
1145
1285
|
"github-owner"
|
|
1146
1286
|
],
|
|
1287
|
+
"repo": [
|
|
1288
|
+
"github-repo"
|
|
1289
|
+
],
|
|
1147
1290
|
"path": [
|
|
1148
1291
|
"none"
|
|
1149
1292
|
],
|
|
1150
|
-
"
|
|
1293
|
+
"content": [
|
|
1151
1294
|
"none"
|
|
1152
1295
|
],
|
|
1296
|
+
"message": [
|
|
1297
|
+
"none"
|
|
1298
|
+
],
|
|
1299
|
+
"branch": [
|
|
1300
|
+
"branch-name"
|
|
1301
|
+
],
|
|
1153
1302
|
"sha": [
|
|
1154
1303
|
"none"
|
|
1155
1304
|
]
|
|
@@ -1158,31 +1307,31 @@
|
|
|
1158
1307
|
},
|
|
1159
1308
|
{
|
|
1160
1309
|
"toolName": "create_pull_request",
|
|
1161
|
-
"comment": "Creates a new pull request in a GitHub repository
|
|
1310
|
+
"comment": "Creates a new pull request in a GitHub repository between specified head and base branches.",
|
|
1162
1311
|
"sideEffects": true,
|
|
1163
1312
|
"args": {
|
|
1164
|
-
"
|
|
1165
|
-
"
|
|
1313
|
+
"owner": [
|
|
1314
|
+
"github-owner"
|
|
1166
1315
|
],
|
|
1167
|
-
"
|
|
1168
|
-
"
|
|
1316
|
+
"repo": [
|
|
1317
|
+
"github-repo"
|
|
1169
1318
|
],
|
|
1170
|
-
"
|
|
1319
|
+
"title": [
|
|
1171
1320
|
"none"
|
|
1172
1321
|
],
|
|
1173
1322
|
"head": [
|
|
1174
1323
|
"branch-name"
|
|
1175
1324
|
],
|
|
1176
|
-
"
|
|
1177
|
-
"
|
|
1325
|
+
"base": [
|
|
1326
|
+
"branch-name"
|
|
1178
1327
|
],
|
|
1179
|
-
"
|
|
1180
|
-
"
|
|
1328
|
+
"body": [
|
|
1329
|
+
"none"
|
|
1181
1330
|
],
|
|
1182
|
-
"
|
|
1331
|
+
"draft": [
|
|
1183
1332
|
"none"
|
|
1184
1333
|
],
|
|
1185
|
-
"
|
|
1334
|
+
"maintainer_can_modify": [
|
|
1186
1335
|
"none"
|
|
1187
1336
|
]
|
|
1188
1337
|
},
|
|
@@ -1193,43 +1342,43 @@
|
|
|
1193
1342
|
"comment": "Creates a new GitHub repository in the authenticated user's account or a specified organization.",
|
|
1194
1343
|
"sideEffects": true,
|
|
1195
1344
|
"args": {
|
|
1196
|
-
"autoInit": [
|
|
1197
|
-
"none"
|
|
1198
|
-
],
|
|
1199
|
-
"description": [
|
|
1200
|
-
"none"
|
|
1201
|
-
],
|
|
1202
1345
|
"name": [
|
|
1203
|
-
"
|
|
1346
|
+
"github-repo"
|
|
1204
1347
|
],
|
|
1205
1348
|
"organization": [
|
|
1206
1349
|
"github-owner"
|
|
1207
1350
|
],
|
|
1351
|
+
"description": [
|
|
1352
|
+
"none"
|
|
1353
|
+
],
|
|
1208
1354
|
"private": [
|
|
1209
1355
|
"none"
|
|
1356
|
+
],
|
|
1357
|
+
"autoInit": [
|
|
1358
|
+
"none"
|
|
1210
1359
|
]
|
|
1211
1360
|
},
|
|
1212
1361
|
"serverName": "github"
|
|
1213
1362
|
},
|
|
1214
1363
|
{
|
|
1215
1364
|
"toolName": "delete_file",
|
|
1216
|
-
"comment": "Deletes a file from a specified branch
|
|
1365
|
+
"comment": "Deletes a file from a GitHub repository on a specified branch with a commit message.",
|
|
1217
1366
|
"sideEffects": true,
|
|
1218
1367
|
"args": {
|
|
1219
|
-
"branch": [
|
|
1220
|
-
"branch-name"
|
|
1221
|
-
],
|
|
1222
|
-
"message": [
|
|
1223
|
-
"none"
|
|
1224
|
-
],
|
|
1225
1368
|
"owner": [
|
|
1226
1369
|
"github-owner"
|
|
1227
1370
|
],
|
|
1371
|
+
"repo": [
|
|
1372
|
+
"github-repo"
|
|
1373
|
+
],
|
|
1228
1374
|
"path": [
|
|
1229
1375
|
"none"
|
|
1230
1376
|
],
|
|
1231
|
-
"
|
|
1377
|
+
"message": [
|
|
1232
1378
|
"none"
|
|
1379
|
+
],
|
|
1380
|
+
"branch": [
|
|
1381
|
+
"branch-name"
|
|
1233
1382
|
]
|
|
1234
1383
|
},
|
|
1235
1384
|
"serverName": "github"
|
|
@@ -1239,14 +1388,14 @@
|
|
|
1239
1388
|
"comment": "Forks a GitHub repository to the authenticated user's account or a specified organization.",
|
|
1240
1389
|
"sideEffects": true,
|
|
1241
1390
|
"args": {
|
|
1242
|
-
"organization": [
|
|
1243
|
-
"github-owner"
|
|
1244
|
-
],
|
|
1245
1391
|
"owner": [
|
|
1246
1392
|
"github-owner"
|
|
1247
1393
|
],
|
|
1248
1394
|
"repo": [
|
|
1249
|
-
"
|
|
1395
|
+
"github-repo"
|
|
1396
|
+
],
|
|
1397
|
+
"organization": [
|
|
1398
|
+
"github-owner"
|
|
1250
1399
|
]
|
|
1251
1400
|
},
|
|
1252
1401
|
"serverName": "github"
|
|
@@ -1256,22 +1405,22 @@
|
|
|
1256
1405
|
"comment": "Retrieves details for a specific commit from a GitHub repository, optionally including diffs.",
|
|
1257
1406
|
"sideEffects": true,
|
|
1258
1407
|
"args": {
|
|
1259
|
-
"include_diff": [
|
|
1260
|
-
"none"
|
|
1261
|
-
],
|
|
1262
1408
|
"owner": [
|
|
1263
1409
|
"github-owner"
|
|
1264
1410
|
],
|
|
1265
|
-
"
|
|
1411
|
+
"repo": [
|
|
1412
|
+
"github-repo"
|
|
1413
|
+
],
|
|
1414
|
+
"sha": [
|
|
1266
1415
|
"none"
|
|
1267
1416
|
],
|
|
1268
|
-
"
|
|
1417
|
+
"include_diff": [
|
|
1269
1418
|
"none"
|
|
1270
1419
|
],
|
|
1271
|
-
"
|
|
1420
|
+
"page": [
|
|
1272
1421
|
"none"
|
|
1273
1422
|
],
|
|
1274
|
-
"
|
|
1423
|
+
"perPage": [
|
|
1275
1424
|
"none"
|
|
1276
1425
|
]
|
|
1277
1426
|
},
|
|
@@ -1285,15 +1434,15 @@
|
|
|
1285
1434
|
"owner": [
|
|
1286
1435
|
"github-owner"
|
|
1287
1436
|
],
|
|
1437
|
+
"repo": [
|
|
1438
|
+
"github-repo"
|
|
1439
|
+
],
|
|
1288
1440
|
"path": [
|
|
1289
1441
|
"none"
|
|
1290
1442
|
],
|
|
1291
1443
|
"ref": [
|
|
1292
1444
|
"none"
|
|
1293
1445
|
],
|
|
1294
|
-
"repo": [
|
|
1295
|
-
"none"
|
|
1296
|
-
],
|
|
1297
1446
|
"sha": [
|
|
1298
1447
|
"none"
|
|
1299
1448
|
]
|
|
@@ -1305,13 +1454,13 @@
|
|
|
1305
1454
|
"comment": "Retrieves details of a specific label from a GitHub repository.",
|
|
1306
1455
|
"sideEffects": true,
|
|
1307
1456
|
"args": {
|
|
1308
|
-
"name": [
|
|
1309
|
-
"none"
|
|
1310
|
-
],
|
|
1311
1457
|
"owner": [
|
|
1312
1458
|
"github-owner"
|
|
1313
1459
|
],
|
|
1314
1460
|
"repo": [
|
|
1461
|
+
"github-repo"
|
|
1462
|
+
],
|
|
1463
|
+
"name": [
|
|
1315
1464
|
"none"
|
|
1316
1465
|
]
|
|
1317
1466
|
},
|
|
@@ -1326,7 +1475,7 @@
|
|
|
1326
1475
|
"github-owner"
|
|
1327
1476
|
],
|
|
1328
1477
|
"repo": [
|
|
1329
|
-
"
|
|
1478
|
+
"github-repo"
|
|
1330
1479
|
]
|
|
1331
1480
|
},
|
|
1332
1481
|
"serverName": "github"
|
|
@@ -1334,20 +1483,20 @@
|
|
|
1334
1483
|
{
|
|
1335
1484
|
"toolName": "get_me",
|
|
1336
1485
|
"comment": "Retrieves profile details of the currently authenticated GitHub user.",
|
|
1337
|
-
"sideEffects":
|
|
1486
|
+
"sideEffects": false,
|
|
1338
1487
|
"args": {},
|
|
1339
1488
|
"serverName": "github"
|
|
1340
1489
|
},
|
|
1341
1490
|
{
|
|
1342
1491
|
"toolName": "get_release_by_tag",
|
|
1343
|
-
"comment": "Retrieves a specific release identified by its tag name
|
|
1492
|
+
"comment": "Retrieves a specific release from a GitHub repository identified by its tag name.",
|
|
1344
1493
|
"sideEffects": true,
|
|
1345
1494
|
"args": {
|
|
1346
1495
|
"owner": [
|
|
1347
1496
|
"github-owner"
|
|
1348
1497
|
],
|
|
1349
1498
|
"repo": [
|
|
1350
|
-
"
|
|
1499
|
+
"github-repo"
|
|
1351
1500
|
],
|
|
1352
1501
|
"tag": [
|
|
1353
1502
|
"none"
|
|
@@ -1364,7 +1513,7 @@
|
|
|
1364
1513
|
"github-owner"
|
|
1365
1514
|
],
|
|
1366
1515
|
"repo": [
|
|
1367
|
-
"
|
|
1516
|
+
"github-repo"
|
|
1368
1517
|
],
|
|
1369
1518
|
"tag": [
|
|
1370
1519
|
"none"
|
|
@@ -1388,7 +1537,7 @@
|
|
|
1388
1537
|
},
|
|
1389
1538
|
{
|
|
1390
1539
|
"toolName": "get_teams",
|
|
1391
|
-
"comment": "Retrieves the teams
|
|
1540
|
+
"comment": "Retrieves the teams that a specified user (or the authenticated user) is a member of.",
|
|
1392
1541
|
"sideEffects": true,
|
|
1393
1542
|
"args": {
|
|
1394
1543
|
"user": [
|
|
@@ -1399,25 +1548,25 @@
|
|
|
1399
1548
|
},
|
|
1400
1549
|
{
|
|
1401
1550
|
"toolName": "issue_read",
|
|
1402
|
-
"comment": "Reads information about a specific GitHub
|
|
1551
|
+
"comment": "Reads information about a specific issue in a GitHub repository, including details, comments, sub-issues, or labels.",
|
|
1403
1552
|
"sideEffects": true,
|
|
1404
1553
|
"args": {
|
|
1405
|
-
"issue_number": [
|
|
1406
|
-
"none"
|
|
1407
|
-
],
|
|
1408
1554
|
"method": [
|
|
1409
1555
|
"none"
|
|
1410
1556
|
],
|
|
1411
1557
|
"owner": [
|
|
1412
1558
|
"github-owner"
|
|
1413
1559
|
],
|
|
1414
|
-
"
|
|
1560
|
+
"repo": [
|
|
1561
|
+
"github-repo"
|
|
1562
|
+
],
|
|
1563
|
+
"issue_number": [
|
|
1415
1564
|
"none"
|
|
1416
1565
|
],
|
|
1417
|
-
"
|
|
1566
|
+
"page": [
|
|
1418
1567
|
"none"
|
|
1419
1568
|
],
|
|
1420
|
-
"
|
|
1569
|
+
"perPage": [
|
|
1421
1570
|
"none"
|
|
1422
1571
|
]
|
|
1423
1572
|
},
|
|
@@ -1428,64 +1577,64 @@
|
|
|
1428
1577
|
"comment": "Creates a new issue or updates an existing issue in a GitHub repository.",
|
|
1429
1578
|
"sideEffects": true,
|
|
1430
1579
|
"args": {
|
|
1431
|
-
"
|
|
1580
|
+
"method": [
|
|
1432
1581
|
"none"
|
|
1433
1582
|
],
|
|
1434
|
-
"
|
|
1435
|
-
"
|
|
1583
|
+
"owner": [
|
|
1584
|
+
"github-owner"
|
|
1436
1585
|
],
|
|
1437
|
-
"
|
|
1438
|
-
"
|
|
1586
|
+
"repo": [
|
|
1587
|
+
"github-repo"
|
|
1439
1588
|
],
|
|
1440
1589
|
"issue_number": [
|
|
1441
1590
|
"none"
|
|
1442
1591
|
],
|
|
1443
|
-
"
|
|
1592
|
+
"title": [
|
|
1444
1593
|
"none"
|
|
1445
1594
|
],
|
|
1446
|
-
"
|
|
1595
|
+
"body": [
|
|
1447
1596
|
"none"
|
|
1448
1597
|
],
|
|
1449
|
-
"
|
|
1598
|
+
"state": [
|
|
1450
1599
|
"none"
|
|
1451
1600
|
],
|
|
1452
|
-
"
|
|
1453
|
-
"github-owner"
|
|
1454
|
-
],
|
|
1455
|
-
"repo": [
|
|
1601
|
+
"state_reason": [
|
|
1456
1602
|
"none"
|
|
1457
1603
|
],
|
|
1458
|
-
"
|
|
1604
|
+
"labels": [
|
|
1459
1605
|
"none"
|
|
1460
1606
|
],
|
|
1461
|
-
"
|
|
1607
|
+
"assignees": [
|
|
1462
1608
|
"none"
|
|
1463
1609
|
],
|
|
1464
|
-
"
|
|
1610
|
+
"milestone": [
|
|
1465
1611
|
"none"
|
|
1466
1612
|
],
|
|
1467
1613
|
"type": [
|
|
1468
1614
|
"none"
|
|
1615
|
+
],
|
|
1616
|
+
"duplicate_of": [
|
|
1617
|
+
"none"
|
|
1469
1618
|
]
|
|
1470
1619
|
},
|
|
1471
1620
|
"serverName": "github"
|
|
1472
1621
|
},
|
|
1473
1622
|
{
|
|
1474
1623
|
"toolName": "list_branches",
|
|
1475
|
-
"comment": "Lists
|
|
1624
|
+
"comment": "Lists branches in a GitHub repository with pagination support.",
|
|
1476
1625
|
"sideEffects": true,
|
|
1477
1626
|
"args": {
|
|
1478
1627
|
"owner": [
|
|
1479
1628
|
"github-owner"
|
|
1480
1629
|
],
|
|
1630
|
+
"repo": [
|
|
1631
|
+
"github-repo"
|
|
1632
|
+
],
|
|
1481
1633
|
"page": [
|
|
1482
1634
|
"none"
|
|
1483
1635
|
],
|
|
1484
1636
|
"perPage": [
|
|
1485
1637
|
"none"
|
|
1486
|
-
],
|
|
1487
|
-
"repo": [
|
|
1488
|
-
"none"
|
|
1489
1638
|
]
|
|
1490
1639
|
},
|
|
1491
1640
|
"serverName": "github"
|
|
@@ -1495,22 +1644,22 @@
|
|
|
1495
1644
|
"comment": "Lists commits on a branch or up to a specific SHA in a GitHub repository.",
|
|
1496
1645
|
"sideEffects": true,
|
|
1497
1646
|
"args": {
|
|
1498
|
-
"author": [
|
|
1499
|
-
"none"
|
|
1500
|
-
],
|
|
1501
1647
|
"owner": [
|
|
1502
1648
|
"github-owner"
|
|
1503
1649
|
],
|
|
1504
|
-
"
|
|
1650
|
+
"repo": [
|
|
1651
|
+
"github-repo"
|
|
1652
|
+
],
|
|
1653
|
+
"sha": [
|
|
1505
1654
|
"none"
|
|
1506
1655
|
],
|
|
1507
|
-
"
|
|
1656
|
+
"author": [
|
|
1508
1657
|
"none"
|
|
1509
1658
|
],
|
|
1510
|
-
"
|
|
1659
|
+
"page": [
|
|
1511
1660
|
"none"
|
|
1512
1661
|
],
|
|
1513
|
-
"
|
|
1662
|
+
"perPage": [
|
|
1514
1663
|
"none"
|
|
1515
1664
|
]
|
|
1516
1665
|
},
|
|
@@ -1529,34 +1678,34 @@
|
|
|
1529
1678
|
},
|
|
1530
1679
|
{
|
|
1531
1680
|
"toolName": "list_issues",
|
|
1532
|
-
"comment": "Lists issues in a GitHub repository with
|
|
1681
|
+
"comment": "Lists issues in a GitHub repository with filtering and pagination support.",
|
|
1533
1682
|
"sideEffects": true,
|
|
1534
1683
|
"args": {
|
|
1535
|
-
"
|
|
1536
|
-
"
|
|
1684
|
+
"owner": [
|
|
1685
|
+
"github-owner"
|
|
1537
1686
|
],
|
|
1538
|
-
"
|
|
1687
|
+
"repo": [
|
|
1688
|
+
"github-repo"
|
|
1689
|
+
],
|
|
1690
|
+
"state": [
|
|
1539
1691
|
"none"
|
|
1540
1692
|
],
|
|
1541
1693
|
"labels": [
|
|
1542
1694
|
"none"
|
|
1543
1695
|
],
|
|
1544
|
-
"
|
|
1696
|
+
"since": [
|
|
1545
1697
|
"none"
|
|
1546
1698
|
],
|
|
1547
|
-
"owner": [
|
|
1548
|
-
"github-owner"
|
|
1549
|
-
],
|
|
1550
1699
|
"perPage": [
|
|
1551
1700
|
"none"
|
|
1552
1701
|
],
|
|
1553
|
-
"
|
|
1702
|
+
"after": [
|
|
1554
1703
|
"none"
|
|
1555
1704
|
],
|
|
1556
|
-
"
|
|
1705
|
+
"orderBy": [
|
|
1557
1706
|
"none"
|
|
1558
1707
|
],
|
|
1559
|
-
"
|
|
1708
|
+
"direction": [
|
|
1560
1709
|
"none"
|
|
1561
1710
|
]
|
|
1562
1711
|
},
|
|
@@ -1564,34 +1713,34 @@
|
|
|
1564
1713
|
},
|
|
1565
1714
|
{
|
|
1566
1715
|
"toolName": "list_pull_requests",
|
|
1567
|
-
"comment": "Lists pull requests in a GitHub repository with
|
|
1716
|
+
"comment": "Lists pull requests in a GitHub repository with filtering and pagination support.",
|
|
1568
1717
|
"sideEffects": true,
|
|
1569
1718
|
"args": {
|
|
1570
|
-
"
|
|
1571
|
-
"
|
|
1719
|
+
"owner": [
|
|
1720
|
+
"github-owner"
|
|
1572
1721
|
],
|
|
1573
|
-
"
|
|
1722
|
+
"repo": [
|
|
1723
|
+
"github-repo"
|
|
1724
|
+
],
|
|
1725
|
+
"state": [
|
|
1574
1726
|
"none"
|
|
1575
1727
|
],
|
|
1576
1728
|
"head": [
|
|
1577
|
-
"
|
|
1578
|
-
],
|
|
1579
|
-
"owner": [
|
|
1580
|
-
"github-owner"
|
|
1729
|
+
"none"
|
|
1581
1730
|
],
|
|
1582
|
-
"
|
|
1731
|
+
"base": [
|
|
1583
1732
|
"none"
|
|
1584
1733
|
],
|
|
1585
|
-
"
|
|
1734
|
+
"sort": [
|
|
1586
1735
|
"none"
|
|
1587
1736
|
],
|
|
1588
|
-
"
|
|
1737
|
+
"direction": [
|
|
1589
1738
|
"none"
|
|
1590
1739
|
],
|
|
1591
|
-
"
|
|
1740
|
+
"page": [
|
|
1592
1741
|
"none"
|
|
1593
1742
|
],
|
|
1594
|
-
"
|
|
1743
|
+
"perPage": [
|
|
1595
1744
|
"none"
|
|
1596
1745
|
]
|
|
1597
1746
|
},
|
|
@@ -1599,40 +1748,40 @@
|
|
|
1599
1748
|
},
|
|
1600
1749
|
{
|
|
1601
1750
|
"toolName": "list_releases",
|
|
1602
|
-
"comment": "Lists
|
|
1751
|
+
"comment": "Lists releases in a GitHub repository with pagination support.",
|
|
1603
1752
|
"sideEffects": true,
|
|
1604
1753
|
"args": {
|
|
1605
1754
|
"owner": [
|
|
1606
1755
|
"github-owner"
|
|
1607
1756
|
],
|
|
1757
|
+
"repo": [
|
|
1758
|
+
"github-repo"
|
|
1759
|
+
],
|
|
1608
1760
|
"page": [
|
|
1609
1761
|
"none"
|
|
1610
1762
|
],
|
|
1611
1763
|
"perPage": [
|
|
1612
1764
|
"none"
|
|
1613
|
-
],
|
|
1614
|
-
"repo": [
|
|
1615
|
-
"none"
|
|
1616
1765
|
]
|
|
1617
1766
|
},
|
|
1618
1767
|
"serverName": "github"
|
|
1619
1768
|
},
|
|
1620
1769
|
{
|
|
1621
1770
|
"toolName": "list_tags",
|
|
1622
|
-
"comment": "Lists
|
|
1771
|
+
"comment": "Lists git tags in a GitHub repository with pagination support.",
|
|
1623
1772
|
"sideEffects": true,
|
|
1624
1773
|
"args": {
|
|
1625
1774
|
"owner": [
|
|
1626
1775
|
"github-owner"
|
|
1627
1776
|
],
|
|
1777
|
+
"repo": [
|
|
1778
|
+
"github-repo"
|
|
1779
|
+
],
|
|
1628
1780
|
"page": [
|
|
1629
1781
|
"none"
|
|
1630
1782
|
],
|
|
1631
1783
|
"perPage": [
|
|
1632
1784
|
"none"
|
|
1633
|
-
],
|
|
1634
|
-
"repo": [
|
|
1635
|
-
"none"
|
|
1636
1785
|
]
|
|
1637
1786
|
},
|
|
1638
1787
|
"serverName": "github"
|
|
@@ -1642,22 +1791,22 @@
|
|
|
1642
1791
|
"comment": "Merges a pull request in a GitHub repository using a specified merge method.",
|
|
1643
1792
|
"sideEffects": true,
|
|
1644
1793
|
"args": {
|
|
1645
|
-
"
|
|
1646
|
-
"
|
|
1794
|
+
"owner": [
|
|
1795
|
+
"github-owner"
|
|
1647
1796
|
],
|
|
1648
|
-
"
|
|
1649
|
-
"
|
|
1797
|
+
"repo": [
|
|
1798
|
+
"github-repo"
|
|
1650
1799
|
],
|
|
1651
|
-
"
|
|
1800
|
+
"pullNumber": [
|
|
1652
1801
|
"none"
|
|
1653
1802
|
],
|
|
1654
|
-
"
|
|
1655
|
-
"
|
|
1803
|
+
"commit_title": [
|
|
1804
|
+
"none"
|
|
1656
1805
|
],
|
|
1657
|
-
"
|
|
1806
|
+
"commit_message": [
|
|
1658
1807
|
"none"
|
|
1659
1808
|
],
|
|
1660
|
-
"
|
|
1809
|
+
"merge_method": [
|
|
1661
1810
|
"none"
|
|
1662
1811
|
]
|
|
1663
1812
|
},
|
|
@@ -1665,7 +1814,7 @@
|
|
|
1665
1814
|
},
|
|
1666
1815
|
{
|
|
1667
1816
|
"toolName": "pull_request_read",
|
|
1668
|
-
"comment": "Retrieves information about a specific pull request, including details, diffs, status, files, comments, or
|
|
1817
|
+
"comment": "Retrieves information about a specific pull request, including details, diffs, status, files, review comments, reviews, or comments.",
|
|
1669
1818
|
"sideEffects": true,
|
|
1670
1819
|
"args": {
|
|
1671
1820
|
"method": [
|
|
@@ -1674,16 +1823,16 @@
|
|
|
1674
1823
|
"owner": [
|
|
1675
1824
|
"github-owner"
|
|
1676
1825
|
],
|
|
1677
|
-
"
|
|
1678
|
-
"
|
|
1826
|
+
"repo": [
|
|
1827
|
+
"github-repo"
|
|
1679
1828
|
],
|
|
1680
|
-
"
|
|
1829
|
+
"pullNumber": [
|
|
1681
1830
|
"none"
|
|
1682
1831
|
],
|
|
1683
|
-
"
|
|
1832
|
+
"page": [
|
|
1684
1833
|
"none"
|
|
1685
1834
|
],
|
|
1686
|
-
"
|
|
1835
|
+
"perPage": [
|
|
1687
1836
|
"none"
|
|
1688
1837
|
]
|
|
1689
1838
|
},
|
|
@@ -1694,25 +1843,25 @@
|
|
|
1694
1843
|
"comment": "Creates, submits, or deletes a pull request review on a GitHub repository.",
|
|
1695
1844
|
"sideEffects": true,
|
|
1696
1845
|
"args": {
|
|
1697
|
-
"body": [
|
|
1698
|
-
"none"
|
|
1699
|
-
],
|
|
1700
|
-
"commitID": [
|
|
1701
|
-
"none"
|
|
1702
|
-
],
|
|
1703
|
-
"event": [
|
|
1704
|
-
"none"
|
|
1705
|
-
],
|
|
1706
1846
|
"method": [
|
|
1707
1847
|
"none"
|
|
1708
1848
|
],
|
|
1709
1849
|
"owner": [
|
|
1710
1850
|
"github-owner"
|
|
1711
1851
|
],
|
|
1852
|
+
"repo": [
|
|
1853
|
+
"github-repo"
|
|
1854
|
+
],
|
|
1712
1855
|
"pullNumber": [
|
|
1713
1856
|
"none"
|
|
1714
1857
|
],
|
|
1715
|
-
"
|
|
1858
|
+
"body": [
|
|
1859
|
+
"none"
|
|
1860
|
+
],
|
|
1861
|
+
"event": [
|
|
1862
|
+
"none"
|
|
1863
|
+
],
|
|
1864
|
+
"commitID": [
|
|
1716
1865
|
"none"
|
|
1717
1866
|
]
|
|
1718
1867
|
},
|
|
@@ -1720,9 +1869,15 @@
|
|
|
1720
1869
|
},
|
|
1721
1870
|
{
|
|
1722
1871
|
"toolName": "push_files",
|
|
1723
|
-
"comment": "Pushes multiple files to a GitHub repository
|
|
1872
|
+
"comment": "Pushes multiple files to a GitHub repository in a single commit on a specified branch.",
|
|
1724
1873
|
"sideEffects": true,
|
|
1725
1874
|
"args": {
|
|
1875
|
+
"owner": [
|
|
1876
|
+
"github-owner"
|
|
1877
|
+
],
|
|
1878
|
+
"repo": [
|
|
1879
|
+
"github-repo"
|
|
1880
|
+
],
|
|
1726
1881
|
"branch": [
|
|
1727
1882
|
"branch-name"
|
|
1728
1883
|
],
|
|
@@ -1731,12 +1886,6 @@
|
|
|
1731
1886
|
],
|
|
1732
1887
|
"message": [
|
|
1733
1888
|
"none"
|
|
1734
|
-
],
|
|
1735
|
-
"owner": [
|
|
1736
|
-
"github-owner"
|
|
1737
|
-
],
|
|
1738
|
-
"repo": [
|
|
1739
|
-
"none"
|
|
1740
1889
|
]
|
|
1741
1890
|
},
|
|
1742
1891
|
"serverName": "github"
|
|
@@ -1749,10 +1898,10 @@
|
|
|
1749
1898
|
"owner": [
|
|
1750
1899
|
"github-owner"
|
|
1751
1900
|
],
|
|
1752
|
-
"pullNumber": [
|
|
1753
|
-
"none"
|
|
1754
|
-
],
|
|
1755
1901
|
"repo": [
|
|
1902
|
+
"github-repo"
|
|
1903
|
+
],
|
|
1904
|
+
"pullNumber": [
|
|
1756
1905
|
"none"
|
|
1757
1906
|
]
|
|
1758
1907
|
},
|
|
@@ -1763,19 +1912,19 @@
|
|
|
1763
1912
|
"comment": "Searches for code across GitHub repositories using GitHub's native code search syntax.",
|
|
1764
1913
|
"sideEffects": true,
|
|
1765
1914
|
"args": {
|
|
1766
|
-
"
|
|
1915
|
+
"query": [
|
|
1767
1916
|
"none"
|
|
1768
1917
|
],
|
|
1769
|
-
"
|
|
1918
|
+
"sort": [
|
|
1770
1919
|
"none"
|
|
1771
1920
|
],
|
|
1772
|
-
"
|
|
1921
|
+
"order": [
|
|
1773
1922
|
"none"
|
|
1774
1923
|
],
|
|
1775
|
-
"
|
|
1924
|
+
"page": [
|
|
1776
1925
|
"none"
|
|
1777
1926
|
],
|
|
1778
|
-
"
|
|
1927
|
+
"perPage": [
|
|
1779
1928
|
"none"
|
|
1780
1929
|
]
|
|
1781
1930
|
},
|
|
@@ -1786,25 +1935,25 @@
|
|
|
1786
1935
|
"comment": "Searches for issues across GitHub repositories using GitHub's issue search syntax.",
|
|
1787
1936
|
"sideEffects": true,
|
|
1788
1937
|
"args": {
|
|
1789
|
-
"
|
|
1938
|
+
"query": [
|
|
1790
1939
|
"none"
|
|
1791
1940
|
],
|
|
1792
1941
|
"owner": [
|
|
1793
1942
|
"github-owner"
|
|
1794
1943
|
],
|
|
1795
|
-
"
|
|
1796
|
-
"
|
|
1944
|
+
"repo": [
|
|
1945
|
+
"github-repo"
|
|
1797
1946
|
],
|
|
1798
|
-
"
|
|
1947
|
+
"sort": [
|
|
1799
1948
|
"none"
|
|
1800
1949
|
],
|
|
1801
|
-
"
|
|
1950
|
+
"order": [
|
|
1802
1951
|
"none"
|
|
1803
1952
|
],
|
|
1804
|
-
"
|
|
1953
|
+
"page": [
|
|
1805
1954
|
"none"
|
|
1806
1955
|
],
|
|
1807
|
-
"
|
|
1956
|
+
"perPage": [
|
|
1808
1957
|
"none"
|
|
1809
1958
|
]
|
|
1810
1959
|
},
|
|
@@ -1815,25 +1964,25 @@
|
|
|
1815
1964
|
"comment": "Searches for pull requests across GitHub repositories using GitHub's pull request search syntax.",
|
|
1816
1965
|
"sideEffects": true,
|
|
1817
1966
|
"args": {
|
|
1818
|
-
"
|
|
1967
|
+
"query": [
|
|
1819
1968
|
"none"
|
|
1820
1969
|
],
|
|
1821
1970
|
"owner": [
|
|
1822
1971
|
"github-owner"
|
|
1823
1972
|
],
|
|
1824
|
-
"
|
|
1825
|
-
"
|
|
1973
|
+
"repo": [
|
|
1974
|
+
"github-repo"
|
|
1826
1975
|
],
|
|
1827
|
-
"
|
|
1976
|
+
"sort": [
|
|
1828
1977
|
"none"
|
|
1829
1978
|
],
|
|
1830
|
-
"
|
|
1979
|
+
"order": [
|
|
1831
1980
|
"none"
|
|
1832
1981
|
],
|
|
1833
|
-
"
|
|
1982
|
+
"page": [
|
|
1834
1983
|
"none"
|
|
1835
1984
|
],
|
|
1836
|
-
"
|
|
1985
|
+
"perPage": [
|
|
1837
1986
|
"none"
|
|
1838
1987
|
]
|
|
1839
1988
|
},
|
|
@@ -1844,7 +1993,10 @@
|
|
|
1844
1993
|
"comment": "Searches for GitHub repositories by name, description, topics, or other metadata.",
|
|
1845
1994
|
"sideEffects": true,
|
|
1846
1995
|
"args": {
|
|
1847
|
-
"
|
|
1996
|
+
"query": [
|
|
1997
|
+
"none"
|
|
1998
|
+
],
|
|
1999
|
+
"sort": [
|
|
1848
2000
|
"none"
|
|
1849
2001
|
],
|
|
1850
2002
|
"order": [
|
|
@@ -1856,10 +2008,7 @@
|
|
|
1856
2008
|
"perPage": [
|
|
1857
2009
|
"none"
|
|
1858
2010
|
],
|
|
1859
|
-
"
|
|
1860
|
-
"none"
|
|
1861
|
-
],
|
|
1862
|
-
"sort": [
|
|
2011
|
+
"minimal_output": [
|
|
1863
2012
|
"none"
|
|
1864
2013
|
]
|
|
1865
2014
|
},
|
|
@@ -1867,22 +2016,22 @@
|
|
|
1867
2016
|
},
|
|
1868
2017
|
{
|
|
1869
2018
|
"toolName": "search_users",
|
|
1870
|
-
"comment": "Searches for GitHub users by username, name, or other profile information.",
|
|
2019
|
+
"comment": "Searches for GitHub users by username, real name, or other profile information.",
|
|
1871
2020
|
"sideEffects": true,
|
|
1872
2021
|
"args": {
|
|
1873
|
-
"
|
|
2022
|
+
"query": [
|
|
1874
2023
|
"none"
|
|
1875
2024
|
],
|
|
1876
|
-
"
|
|
2025
|
+
"sort": [
|
|
1877
2026
|
"none"
|
|
1878
2027
|
],
|
|
1879
|
-
"
|
|
2028
|
+
"order": [
|
|
1880
2029
|
"none"
|
|
1881
2030
|
],
|
|
1882
|
-
"
|
|
2031
|
+
"page": [
|
|
1883
2032
|
"none"
|
|
1884
2033
|
],
|
|
1885
|
-
"
|
|
2034
|
+
"perPage": [
|
|
1886
2035
|
"none"
|
|
1887
2036
|
]
|
|
1888
2037
|
},
|
|
@@ -1890,31 +2039,31 @@
|
|
|
1890
2039
|
},
|
|
1891
2040
|
{
|
|
1892
2041
|
"toolName": "sub_issue_write",
|
|
1893
|
-
"comment": "Adds, removes, or reprioritizes a sub-issue
|
|
2042
|
+
"comment": "Adds, removes, or reprioritizes a sub-issue under a parent issue in a GitHub repository.",
|
|
1894
2043
|
"sideEffects": true,
|
|
1895
2044
|
"args": {
|
|
1896
|
-
"
|
|
2045
|
+
"method": [
|
|
1897
2046
|
"none"
|
|
1898
2047
|
],
|
|
1899
|
-
"
|
|
1900
|
-
"
|
|
2048
|
+
"owner": [
|
|
2049
|
+
"github-owner"
|
|
2050
|
+
],
|
|
2051
|
+
"repo": [
|
|
2052
|
+
"github-repo"
|
|
1901
2053
|
],
|
|
1902
2054
|
"issue_number": [
|
|
1903
2055
|
"none"
|
|
1904
2056
|
],
|
|
1905
|
-
"
|
|
2057
|
+
"sub_issue_id": [
|
|
1906
2058
|
"none"
|
|
1907
2059
|
],
|
|
1908
|
-
"owner": [
|
|
1909
|
-
"github-owner"
|
|
1910
|
-
],
|
|
1911
2060
|
"replace_parent": [
|
|
1912
2061
|
"none"
|
|
1913
2062
|
],
|
|
1914
|
-
"
|
|
2063
|
+
"after_id": [
|
|
1915
2064
|
"none"
|
|
1916
2065
|
],
|
|
1917
|
-
"
|
|
2066
|
+
"before_id": [
|
|
1918
2067
|
"none"
|
|
1919
2068
|
]
|
|
1920
2069
|
},
|
|
@@ -1922,37 +2071,37 @@
|
|
|
1922
2071
|
},
|
|
1923
2072
|
{
|
|
1924
2073
|
"toolName": "update_pull_request",
|
|
1925
|
-
"comment": "Updates an existing pull request's
|
|
2074
|
+
"comment": "Updates an existing pull request's title, description, state, base branch, reviewers, or draft status.",
|
|
1926
2075
|
"sideEffects": true,
|
|
1927
2076
|
"args": {
|
|
1928
|
-
"
|
|
1929
|
-
"
|
|
2077
|
+
"owner": [
|
|
2078
|
+
"github-owner"
|
|
1930
2079
|
],
|
|
1931
|
-
"
|
|
1932
|
-
"
|
|
2080
|
+
"repo": [
|
|
2081
|
+
"github-repo"
|
|
1933
2082
|
],
|
|
1934
|
-
"
|
|
2083
|
+
"pullNumber": [
|
|
1935
2084
|
"none"
|
|
1936
2085
|
],
|
|
1937
|
-
"
|
|
2086
|
+
"title": [
|
|
1938
2087
|
"none"
|
|
1939
2088
|
],
|
|
1940
|
-
"
|
|
1941
|
-
"github-owner"
|
|
1942
|
-
],
|
|
1943
|
-
"pullNumber": [
|
|
2089
|
+
"body": [
|
|
1944
2090
|
"none"
|
|
1945
2091
|
],
|
|
1946
|
-
"
|
|
2092
|
+
"state": [
|
|
1947
2093
|
"none"
|
|
1948
2094
|
],
|
|
1949
|
-
"
|
|
2095
|
+
"base": [
|
|
2096
|
+
"branch-name"
|
|
2097
|
+
],
|
|
2098
|
+
"maintainer_can_modify": [
|
|
1950
2099
|
"none"
|
|
1951
2100
|
],
|
|
1952
|
-
"
|
|
2101
|
+
"draft": [
|
|
1953
2102
|
"none"
|
|
1954
2103
|
],
|
|
1955
|
-
"
|
|
2104
|
+
"reviewers": [
|
|
1956
2105
|
"none"
|
|
1957
2106
|
]
|
|
1958
2107
|
},
|
|
@@ -1963,16 +2112,16 @@
|
|
|
1963
2112
|
"comment": "Updates a pull request's branch with the latest changes from its base branch.",
|
|
1964
2113
|
"sideEffects": true,
|
|
1965
2114
|
"args": {
|
|
1966
|
-
"expectedHeadSha": [
|
|
1967
|
-
"none"
|
|
1968
|
-
],
|
|
1969
2115
|
"owner": [
|
|
1970
2116
|
"github-owner"
|
|
1971
2117
|
],
|
|
2118
|
+
"repo": [
|
|
2119
|
+
"github-repo"
|
|
2120
|
+
],
|
|
1972
2121
|
"pullNumber": [
|
|
1973
2122
|
"none"
|
|
1974
2123
|
],
|
|
1975
|
-
"
|
|
2124
|
+
"expectedHeadSha": [
|
|
1976
2125
|
"none"
|
|
1977
2126
|
]
|
|
1978
2127
|
},
|