@provos/ironcurtain 0.1.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/LICENSE +202 -0
- package/README.md +311 -0
- package/dist/agent/index.d.ts +10 -0
- package/dist/agent/index.js +71 -0
- package/dist/agent/index.js.map +1 -0
- package/dist/agent/prompts.d.ts +5 -0
- package/dist/agent/prompts.js +26 -0
- package/dist/agent/prompts.js.map +1 -0
- package/dist/agent/tools.d.ts +13 -0
- package/dist/agent/tools.js +51 -0
- package/dist/agent/tools.js.map +1 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +78 -0
- package/dist/cli.js.map +1 -0
- package/dist/config/constitution.md +16 -0
- package/dist/config/generated/compiled-policy.json +236 -0
- package/dist/config/generated/test-scenarios.json +765 -0
- package/dist/config/generated/tool-annotations.json +955 -0
- package/dist/config/index.d.ts +25 -0
- package/dist/config/index.js +151 -0
- package/dist/config/index.js.map +1 -0
- package/dist/config/mcp-servers.json +22 -0
- package/dist/config/model-provider.d.ts +49 -0
- package/dist/config/model-provider.js +78 -0
- package/dist/config/model-provider.js.map +1 -0
- package/dist/config/paths.d.ts +59 -0
- package/dist/config/paths.js +96 -0
- package/dist/config/paths.js.map +1 -0
- package/dist/config/types.d.ts +89 -0
- package/dist/config/types.js +2 -0
- package/dist/config/types.js.map +1 -0
- package/dist/config/user-config.d.ts +93 -0
- package/dist/config/user-config.js +309 -0
- package/dist/config/user-config.js.map +1 -0
- package/dist/hash.d.ts +17 -0
- package/dist/hash.js +34 -0
- package/dist/hash.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +61 -0
- package/dist/index.js.map +1 -0
- package/dist/logger.d.ts +11 -0
- package/dist/logger.js +93 -0
- package/dist/logger.js.map +1 -0
- package/dist/pipeline/annotate.d.ts +9 -0
- package/dist/pipeline/annotate.js +136 -0
- package/dist/pipeline/annotate.js.map +1 -0
- package/dist/pipeline/compile.d.ts +23 -0
- package/dist/pipeline/compile.js +386 -0
- package/dist/pipeline/compile.js.map +1 -0
- package/dist/pipeline/constitution-compiler.d.ts +22 -0
- package/dist/pipeline/constitution-compiler.js +197 -0
- package/dist/pipeline/constitution-compiler.js.map +1 -0
- package/dist/pipeline/generate-with-repair.d.ts +22 -0
- package/dist/pipeline/generate-with-repair.js +64 -0
- package/dist/pipeline/generate-with-repair.js.map +1 -0
- package/dist/pipeline/handwritten-scenarios.d.ts +9 -0
- package/dist/pipeline/handwritten-scenarios.js +321 -0
- package/dist/pipeline/handwritten-scenarios.js.map +1 -0
- package/dist/pipeline/llm-logger.d.ts +42 -0
- package/dist/pipeline/llm-logger.js +78 -0
- package/dist/pipeline/llm-logger.js.map +1 -0
- package/dist/pipeline/pipeline-shared.d.ts +47 -0
- package/dist/pipeline/pipeline-shared.js +145 -0
- package/dist/pipeline/pipeline-shared.js.map +1 -0
- package/dist/pipeline/policy-verifier.d.ts +46 -0
- package/dist/pipeline/policy-verifier.js +277 -0
- package/dist/pipeline/policy-verifier.js.map +1 -0
- package/dist/pipeline/scenario-generator.d.ts +11 -0
- package/dist/pipeline/scenario-generator.js +128 -0
- package/dist/pipeline/scenario-generator.js.map +1 -0
- package/dist/pipeline/tool-annotator.d.ts +24 -0
- package/dist/pipeline/tool-annotator.js +201 -0
- package/dist/pipeline/tool-annotator.js.map +1 -0
- package/dist/pipeline/types.d.ts +122 -0
- package/dist/pipeline/types.js +10 -0
- package/dist/pipeline/types.js.map +1 -0
- package/dist/sandbox/index.d.ts +39 -0
- package/dist/sandbox/index.js +178 -0
- package/dist/sandbox/index.js.map +1 -0
- package/dist/session/agent-session.d.ts +83 -0
- package/dist/session/agent-session.js +382 -0
- package/dist/session/agent-session.js.map +1 -0
- package/dist/session/cli-transport.d.ts +61 -0
- package/dist/session/cli-transport.js +320 -0
- package/dist/session/cli-transport.js.map +1 -0
- package/dist/session/errors.d.ts +19 -0
- package/dist/session/errors.js +33 -0
- package/dist/session/errors.js.map +1 -0
- package/dist/session/index.d.ts +29 -0
- package/dist/session/index.js +104 -0
- package/dist/session/index.js.map +1 -0
- package/dist/session/message-compactor.d.ts +32 -0
- package/dist/session/message-compactor.js +81 -0
- package/dist/session/message-compactor.js.map +1 -0
- package/dist/session/prompts.d.ts +5 -0
- package/dist/session/prompts.js +62 -0
- package/dist/session/prompts.js.map +1 -0
- package/dist/session/resource-budget-tracker.d.ts +124 -0
- package/dist/session/resource-budget-tracker.js +327 -0
- package/dist/session/resource-budget-tracker.js.map +1 -0
- package/dist/session/step-loop-detector.d.ts +63 -0
- package/dist/session/step-loop-detector.js +136 -0
- package/dist/session/step-loop-detector.js.map +1 -0
- package/dist/session/transport.d.ts +24 -0
- package/dist/session/transport.js +2 -0
- package/dist/session/transport.js.map +1 -0
- package/dist/session/truncate-result.d.ts +35 -0
- package/dist/session/truncate-result.js +71 -0
- package/dist/session/truncate-result.js.map +1 -0
- package/dist/session/types.d.ts +220 -0
- package/dist/session/types.js +6 -0
- package/dist/session/types.js.map +1 -0
- package/dist/trusted-process/audit-log.d.ts +7 -0
- package/dist/trusted-process/audit-log.js +21 -0
- package/dist/trusted-process/audit-log.js.map +1 -0
- package/dist/trusted-process/call-circuit-breaker.d.ts +33 -0
- package/dist/trusted-process/call-circuit-breaker.js +61 -0
- package/dist/trusted-process/call-circuit-breaker.js.map +1 -0
- package/dist/trusted-process/escalation.d.ts +7 -0
- package/dist/trusted-process/escalation.js +38 -0
- package/dist/trusted-process/escalation.js.map +1 -0
- package/dist/trusted-process/index.d.ts +32 -0
- package/dist/trusted-process/index.js +151 -0
- package/dist/trusted-process/index.js.map +1 -0
- package/dist/trusted-process/mcp-client-manager.d.ts +25 -0
- package/dist/trusted-process/mcp-client-manager.js +90 -0
- package/dist/trusted-process/mcp-client-manager.js.map +1 -0
- package/dist/trusted-process/mcp-proxy-server.d.ts +24 -0
- package/dist/trusted-process/mcp-proxy-server.js +451 -0
- package/dist/trusted-process/mcp-proxy-server.js.map +1 -0
- package/dist/trusted-process/path-utils.d.ts +50 -0
- package/dist/trusted-process/path-utils.js +158 -0
- package/dist/trusted-process/path-utils.js.map +1 -0
- package/dist/trusted-process/policy-engine.d.ts +88 -0
- package/dist/trusted-process/policy-engine.js +523 -0
- package/dist/trusted-process/policy-engine.js.map +1 -0
- package/dist/trusted-process/policy-roots.d.ts +50 -0
- package/dist/trusted-process/policy-roots.js +67 -0
- package/dist/trusted-process/policy-roots.js.map +1 -0
- package/dist/trusted-process/policy-types.d.ts +6 -0
- package/dist/trusted-process/policy-types.js +2 -0
- package/dist/trusted-process/policy-types.js.map +1 -0
- package/dist/trusted-process/sandbox-integration.d.ts +92 -0
- package/dist/trusted-process/sandbox-integration.js +184 -0
- package/dist/trusted-process/sandbox-integration.js.map +1 -0
- package/dist/types/argument-roles.d.ts +112 -0
- package/dist/types/argument-roles.js +344 -0
- package/dist/types/argument-roles.js.map +1 -0
- package/dist/types/audit.d.ts +18 -0
- package/dist/types/audit.js +2 -0
- package/dist/types/audit.js.map +1 -0
- package/dist/types/mcp.d.ts +20 -0
- package/dist/types/mcp.js +2 -0
- package/dist/types/mcp.js.map +1 -0
- package/package.json +83 -0
- package/src/config/constitution.md +16 -0
- package/src/config/generated/compiled-policy.json +236 -0
- package/src/config/generated/test-scenarios.json +765 -0
- package/src/config/generated/tool-annotations.json +955 -0
- package/src/config/mcp-servers.json +22 -0
|
@@ -0,0 +1,955 @@
|
|
|
1
|
+
{
|
|
2
|
+
"generatedAt": "2026-02-20T16:51:30.978Z",
|
|
3
|
+
"servers": {
|
|
4
|
+
"filesystem": {
|
|
5
|
+
"inputHash": "a1185a78242f2b1b809313233c7296bfcc2ec362aed66f003eb4f47ade7f942a",
|
|
6
|
+
"tools": [
|
|
7
|
+
{
|
|
8
|
+
"toolName": "read_file",
|
|
9
|
+
"comment": "Reads the complete (or partial) text contents of a file at the specified path (deprecated in favor of read_text_file).",
|
|
10
|
+
"sideEffects": true,
|
|
11
|
+
"args": {
|
|
12
|
+
"path": [
|
|
13
|
+
"read-path"
|
|
14
|
+
],
|
|
15
|
+
"tail": [
|
|
16
|
+
"none"
|
|
17
|
+
],
|
|
18
|
+
"head": [
|
|
19
|
+
"none"
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"serverName": "filesystem"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"toolName": "read_text_file",
|
|
26
|
+
"comment": "Reads the complete (or partial) text contents of a file at the specified path, handling various text encodings.",
|
|
27
|
+
"sideEffects": true,
|
|
28
|
+
"args": {
|
|
29
|
+
"path": [
|
|
30
|
+
"read-path"
|
|
31
|
+
],
|
|
32
|
+
"tail": [
|
|
33
|
+
"none"
|
|
34
|
+
],
|
|
35
|
+
"head": [
|
|
36
|
+
"none"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
"serverName": "filesystem"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"toolName": "read_media_file",
|
|
43
|
+
"comment": "Reads an image or audio file and returns its base64-encoded data along with its MIME type.",
|
|
44
|
+
"sideEffects": true,
|
|
45
|
+
"args": {
|
|
46
|
+
"path": [
|
|
47
|
+
"read-path"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
"serverName": "filesystem"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"toolName": "read_multiple_files",
|
|
54
|
+
"comment": "Reads the text contents of multiple files simultaneously, returning each file's content keyed by its path.",
|
|
55
|
+
"sideEffects": true,
|
|
56
|
+
"args": {
|
|
57
|
+
"paths": [
|
|
58
|
+
"read-path"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
"serverName": "filesystem"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"toolName": "write_file",
|
|
65
|
+
"comment": "Creates a new file or completely overwrites an existing file with the provided text content.",
|
|
66
|
+
"sideEffects": true,
|
|
67
|
+
"args": {
|
|
68
|
+
"path": [
|
|
69
|
+
"write-path"
|
|
70
|
+
],
|
|
71
|
+
"content": [
|
|
72
|
+
"none"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
"serverName": "filesystem"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"toolName": "edit_file",
|
|
79
|
+
"comment": "Makes targeted line-based edits to an existing text file by replacing exact text sequences, returning a git-style diff of changes.",
|
|
80
|
+
"sideEffects": true,
|
|
81
|
+
"args": {
|
|
82
|
+
"path": [
|
|
83
|
+
"read-path",
|
|
84
|
+
"write-path"
|
|
85
|
+
],
|
|
86
|
+
"edits": [
|
|
87
|
+
"none"
|
|
88
|
+
],
|
|
89
|
+
"dryRun": [
|
|
90
|
+
"none"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
"serverName": "filesystem"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"toolName": "create_directory",
|
|
97
|
+
"comment": "Creates a new directory (including any necessary parent directories) at the specified path, succeeding silently if it already exists.",
|
|
98
|
+
"sideEffects": true,
|
|
99
|
+
"args": {
|
|
100
|
+
"path": [
|
|
101
|
+
"write-path"
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
"serverName": "filesystem"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"toolName": "list_directory",
|
|
108
|
+
"comment": "Lists all files and directories at the specified path, distinguishing entries with [FILE] and [DIR] prefixes.",
|
|
109
|
+
"sideEffects": true,
|
|
110
|
+
"args": {
|
|
111
|
+
"path": [
|
|
112
|
+
"read-path"
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
"serverName": "filesystem"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"toolName": "list_directory_with_sizes",
|
|
119
|
+
"comment": "Lists all files and directories at the specified path including their sizes, with optional sorting by name or size.",
|
|
120
|
+
"sideEffects": true,
|
|
121
|
+
"args": {
|
|
122
|
+
"path": [
|
|
123
|
+
"read-path"
|
|
124
|
+
],
|
|
125
|
+
"sortBy": [
|
|
126
|
+
"none"
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
"serverName": "filesystem"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"toolName": "directory_tree",
|
|
133
|
+
"comment": "Recursively returns a JSON tree structure of all files and directories under the specified path, with optional exclusion patterns.",
|
|
134
|
+
"sideEffects": true,
|
|
135
|
+
"args": {
|
|
136
|
+
"path": [
|
|
137
|
+
"read-path"
|
|
138
|
+
],
|
|
139
|
+
"excludePatterns": [
|
|
140
|
+
"none"
|
|
141
|
+
]
|
|
142
|
+
},
|
|
143
|
+
"serverName": "filesystem"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"toolName": "move_file",
|
|
147
|
+
"comment": "Moves or renames a file or directory from a source path to a destination path in a single operation.",
|
|
148
|
+
"sideEffects": true,
|
|
149
|
+
"args": {
|
|
150
|
+
"source": [
|
|
151
|
+
"read-path",
|
|
152
|
+
"delete-path"
|
|
153
|
+
],
|
|
154
|
+
"destination": [
|
|
155
|
+
"write-path"
|
|
156
|
+
]
|
|
157
|
+
},
|
|
158
|
+
"serverName": "filesystem"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"toolName": "search_files",
|
|
162
|
+
"comment": "Recursively searches for files and directories matching a glob-style pattern under a specified root path, returning full matching paths.",
|
|
163
|
+
"sideEffects": true,
|
|
164
|
+
"args": {
|
|
165
|
+
"path": [
|
|
166
|
+
"read-path"
|
|
167
|
+
],
|
|
168
|
+
"pattern": [
|
|
169
|
+
"none"
|
|
170
|
+
],
|
|
171
|
+
"excludePatterns": [
|
|
172
|
+
"none"
|
|
173
|
+
]
|
|
174
|
+
},
|
|
175
|
+
"serverName": "filesystem"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"toolName": "get_file_info",
|
|
179
|
+
"comment": "Retrieves detailed metadata (size, timestamps, permissions, type) about a file or directory without reading its content.",
|
|
180
|
+
"sideEffects": true,
|
|
181
|
+
"args": {
|
|
182
|
+
"path": [
|
|
183
|
+
"read-path"
|
|
184
|
+
]
|
|
185
|
+
},
|
|
186
|
+
"serverName": "filesystem"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"toolName": "list_allowed_directories",
|
|
190
|
+
"comment": "Returns the static list of directories this server is permitted to access, with no path arguments or state changes.",
|
|
191
|
+
"sideEffects": false,
|
|
192
|
+
"args": {},
|
|
193
|
+
"serverName": "filesystem"
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
},
|
|
197
|
+
"git": {
|
|
198
|
+
"inputHash": "355fd0e6429639fb284d0119a13ecba6c4af6d0a5467958fe4bb9a4c44753788",
|
|
199
|
+
"tools": [
|
|
200
|
+
{
|
|
201
|
+
"toolName": "git_add",
|
|
202
|
+
"comment": "Stages specified files (or all changes) in the repository index in preparation for a commit.",
|
|
203
|
+
"sideEffects": true,
|
|
204
|
+
"args": {
|
|
205
|
+
"path": [
|
|
206
|
+
"read-path"
|
|
207
|
+
],
|
|
208
|
+
"files": [
|
|
209
|
+
"read-path"
|
|
210
|
+
],
|
|
211
|
+
"update": [
|
|
212
|
+
"none"
|
|
213
|
+
],
|
|
214
|
+
"all": [
|
|
215
|
+
"none"
|
|
216
|
+
],
|
|
217
|
+
"force": [
|
|
218
|
+
"none"
|
|
219
|
+
]
|
|
220
|
+
},
|
|
221
|
+
"serverName": "git"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"toolName": "git_blame",
|
|
225
|
+
"comment": "Shows line-by-line authorship information for a file, revealing who last modified each line and when.",
|
|
226
|
+
"sideEffects": true,
|
|
227
|
+
"args": {
|
|
228
|
+
"path": [
|
|
229
|
+
"read-path"
|
|
230
|
+
],
|
|
231
|
+
"file": [
|
|
232
|
+
"read-path"
|
|
233
|
+
],
|
|
234
|
+
"startLine": [
|
|
235
|
+
"none"
|
|
236
|
+
],
|
|
237
|
+
"endLine": [
|
|
238
|
+
"none"
|
|
239
|
+
],
|
|
240
|
+
"ignoreWhitespace": [
|
|
241
|
+
"none"
|
|
242
|
+
]
|
|
243
|
+
},
|
|
244
|
+
"serverName": "git"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"toolName": "git_branch",
|
|
248
|
+
"comment": "Manages git branches by listing, creating, deleting, renaming, or showing the current branch.",
|
|
249
|
+
"sideEffects": true,
|
|
250
|
+
"args": {
|
|
251
|
+
"path": [
|
|
252
|
+
"read-path",
|
|
253
|
+
"delete-history"
|
|
254
|
+
],
|
|
255
|
+
"operation": [
|
|
256
|
+
"none"
|
|
257
|
+
],
|
|
258
|
+
"name": [
|
|
259
|
+
"branch-name"
|
|
260
|
+
],
|
|
261
|
+
"newName": [
|
|
262
|
+
"branch-name"
|
|
263
|
+
],
|
|
264
|
+
"startPoint": [
|
|
265
|
+
"none"
|
|
266
|
+
],
|
|
267
|
+
"force": [
|
|
268
|
+
"none"
|
|
269
|
+
],
|
|
270
|
+
"all": [
|
|
271
|
+
"none"
|
|
272
|
+
],
|
|
273
|
+
"remote": [
|
|
274
|
+
"none"
|
|
275
|
+
],
|
|
276
|
+
"merged": [
|
|
277
|
+
"none"
|
|
278
|
+
],
|
|
279
|
+
"noMerged": [
|
|
280
|
+
"none"
|
|
281
|
+
]
|
|
282
|
+
},
|
|
283
|
+
"serverName": "git"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"toolName": "git_changelog_analyze",
|
|
287
|
+
"comment": "Gathers git history context (commits, tags) and provides structured review instructions to support LLM-driven changelog analysis.",
|
|
288
|
+
"sideEffects": true,
|
|
289
|
+
"args": {
|
|
290
|
+
"path": [
|
|
291
|
+
"read-path"
|
|
292
|
+
],
|
|
293
|
+
"reviewTypes": [
|
|
294
|
+
"none"
|
|
295
|
+
],
|
|
296
|
+
"maxCommits": [
|
|
297
|
+
"none"
|
|
298
|
+
],
|
|
299
|
+
"sinceTag": [
|
|
300
|
+
"none"
|
|
301
|
+
],
|
|
302
|
+
"branch": [
|
|
303
|
+
"branch-name"
|
|
304
|
+
]
|
|
305
|
+
},
|
|
306
|
+
"serverName": "git"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"toolName": "git_checkout",
|
|
310
|
+
"comment": "Switches branches, creates new branches, or restores specific working tree files to a given state.",
|
|
311
|
+
"sideEffects": true,
|
|
312
|
+
"args": {
|
|
313
|
+
"path": [
|
|
314
|
+
"read-path"
|
|
315
|
+
],
|
|
316
|
+
"target": [
|
|
317
|
+
"branch-name"
|
|
318
|
+
],
|
|
319
|
+
"createBranch": [
|
|
320
|
+
"none"
|
|
321
|
+
],
|
|
322
|
+
"force": [
|
|
323
|
+
"none"
|
|
324
|
+
],
|
|
325
|
+
"paths": [
|
|
326
|
+
"read-path"
|
|
327
|
+
],
|
|
328
|
+
"track": [
|
|
329
|
+
"none"
|
|
330
|
+
]
|
|
331
|
+
},
|
|
332
|
+
"serverName": "git"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"toolName": "git_cherry_pick",
|
|
336
|
+
"comment": "Applies one or more specific commits from other branches onto the current branch, rewriting history.",
|
|
337
|
+
"sideEffects": true,
|
|
338
|
+
"args": {
|
|
339
|
+
"path": [
|
|
340
|
+
"read-path",
|
|
341
|
+
"write-history"
|
|
342
|
+
],
|
|
343
|
+
"commits": [
|
|
344
|
+
"none"
|
|
345
|
+
],
|
|
346
|
+
"noCommit": [
|
|
347
|
+
"none"
|
|
348
|
+
],
|
|
349
|
+
"continueOperation": [
|
|
350
|
+
"none"
|
|
351
|
+
],
|
|
352
|
+
"abort": [
|
|
353
|
+
"none"
|
|
354
|
+
],
|
|
355
|
+
"mainline": [
|
|
356
|
+
"none"
|
|
357
|
+
],
|
|
358
|
+
"strategy": [
|
|
359
|
+
"none"
|
|
360
|
+
],
|
|
361
|
+
"signoff": [
|
|
362
|
+
"none"
|
|
363
|
+
]
|
|
364
|
+
},
|
|
365
|
+
"serverName": "git"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"toolName": "git_clean",
|
|
369
|
+
"comment": "Removes untracked files (and optionally directories and ignored files) from the working directory.",
|
|
370
|
+
"sideEffects": true,
|
|
371
|
+
"args": {
|
|
372
|
+
"path": [
|
|
373
|
+
"read-path",
|
|
374
|
+
"delete-path"
|
|
375
|
+
],
|
|
376
|
+
"force": [
|
|
377
|
+
"none"
|
|
378
|
+
],
|
|
379
|
+
"dryRun": [
|
|
380
|
+
"none"
|
|
381
|
+
],
|
|
382
|
+
"directories": [
|
|
383
|
+
"none"
|
|
384
|
+
],
|
|
385
|
+
"ignored": [
|
|
386
|
+
"none"
|
|
387
|
+
]
|
|
388
|
+
},
|
|
389
|
+
"serverName": "git"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"toolName": "git_clear_working_dir",
|
|
393
|
+
"comment": "Clears the session working directory setting so subsequent git operations require an explicit path parameter.",
|
|
394
|
+
"sideEffects": false,
|
|
395
|
+
"args": {
|
|
396
|
+
"confirm": [
|
|
397
|
+
"none"
|
|
398
|
+
]
|
|
399
|
+
},
|
|
400
|
+
"serverName": "git"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"toolName": "git_clone",
|
|
404
|
+
"comment": "Clones a remote git repository to a local path, optionally with shallow cloning or specific branch selection.",
|
|
405
|
+
"sideEffects": true,
|
|
406
|
+
"args": {
|
|
407
|
+
"url": [
|
|
408
|
+
"git-remote-url"
|
|
409
|
+
],
|
|
410
|
+
"localPath": [
|
|
411
|
+
"write-path"
|
|
412
|
+
],
|
|
413
|
+
"branch": [
|
|
414
|
+
"branch-name"
|
|
415
|
+
],
|
|
416
|
+
"depth": [
|
|
417
|
+
"none"
|
|
418
|
+
],
|
|
419
|
+
"bare": [
|
|
420
|
+
"none"
|
|
421
|
+
],
|
|
422
|
+
"mirror": [
|
|
423
|
+
"none"
|
|
424
|
+
]
|
|
425
|
+
},
|
|
426
|
+
"serverName": "git"
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"toolName": "git_commit",
|
|
430
|
+
"comment": "Creates a new commit recording staged changes in the repository with a given commit message.",
|
|
431
|
+
"sideEffects": true,
|
|
432
|
+
"args": {
|
|
433
|
+
"path": [
|
|
434
|
+
"read-path"
|
|
435
|
+
],
|
|
436
|
+
"message": [
|
|
437
|
+
"commit-message"
|
|
438
|
+
],
|
|
439
|
+
"author": [
|
|
440
|
+
"none"
|
|
441
|
+
],
|
|
442
|
+
"amend": [
|
|
443
|
+
"none"
|
|
444
|
+
],
|
|
445
|
+
"allowEmpty": [
|
|
446
|
+
"none"
|
|
447
|
+
],
|
|
448
|
+
"sign": [
|
|
449
|
+
"none"
|
|
450
|
+
],
|
|
451
|
+
"noVerify": [
|
|
452
|
+
"none"
|
|
453
|
+
],
|
|
454
|
+
"filesToStage": [
|
|
455
|
+
"read-path"
|
|
456
|
+
],
|
|
457
|
+
"forceUnsignedOnFailure": [
|
|
458
|
+
"none"
|
|
459
|
+
]
|
|
460
|
+
},
|
|
461
|
+
"serverName": "git"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"toolName": "git_diff",
|
|
465
|
+
"comment": "Shows differences between commits, branches, the staging area, or the working tree in unified diff format.",
|
|
466
|
+
"sideEffects": true,
|
|
467
|
+
"args": {
|
|
468
|
+
"path": [
|
|
469
|
+
"read-path"
|
|
470
|
+
],
|
|
471
|
+
"target": [
|
|
472
|
+
"none"
|
|
473
|
+
],
|
|
474
|
+
"source": [
|
|
475
|
+
"none"
|
|
476
|
+
],
|
|
477
|
+
"paths": [
|
|
478
|
+
"read-path"
|
|
479
|
+
],
|
|
480
|
+
"staged": [
|
|
481
|
+
"none"
|
|
482
|
+
],
|
|
483
|
+
"includeUntracked": [
|
|
484
|
+
"none"
|
|
485
|
+
],
|
|
486
|
+
"nameOnly": [
|
|
487
|
+
"none"
|
|
488
|
+
],
|
|
489
|
+
"stat": [
|
|
490
|
+
"none"
|
|
491
|
+
],
|
|
492
|
+
"contextLines": [
|
|
493
|
+
"none"
|
|
494
|
+
]
|
|
495
|
+
},
|
|
496
|
+
"serverName": "git"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"toolName": "git_fetch",
|
|
500
|
+
"comment": "Downloads objects and refs from a remote repository without merging them into the local branch.",
|
|
501
|
+
"sideEffects": true,
|
|
502
|
+
"args": {
|
|
503
|
+
"path": [
|
|
504
|
+
"read-path"
|
|
505
|
+
],
|
|
506
|
+
"remote": [
|
|
507
|
+
"git-remote-url"
|
|
508
|
+
],
|
|
509
|
+
"prune": [
|
|
510
|
+
"none"
|
|
511
|
+
],
|
|
512
|
+
"tags": [
|
|
513
|
+
"none"
|
|
514
|
+
],
|
|
515
|
+
"depth": [
|
|
516
|
+
"none"
|
|
517
|
+
]
|
|
518
|
+
},
|
|
519
|
+
"serverName": "git"
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"toolName": "git_init",
|
|
523
|
+
"comment": "Initializes a new git repository at the specified path by creating a .git directory and setting up the initial branch.",
|
|
524
|
+
"sideEffects": true,
|
|
525
|
+
"args": {
|
|
526
|
+
"path": [
|
|
527
|
+
"write-path"
|
|
528
|
+
],
|
|
529
|
+
"initialBranch": [
|
|
530
|
+
"branch-name"
|
|
531
|
+
],
|
|
532
|
+
"bare": [
|
|
533
|
+
"none"
|
|
534
|
+
]
|
|
535
|
+
},
|
|
536
|
+
"serverName": "git"
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"toolName": "git_log",
|
|
540
|
+
"comment": "Displays commit history with optional filtering by author, date range, file path, or commit message pattern.",
|
|
541
|
+
"sideEffects": true,
|
|
542
|
+
"args": {
|
|
543
|
+
"path": [
|
|
544
|
+
"read-path"
|
|
545
|
+
],
|
|
546
|
+
"maxCount": [
|
|
547
|
+
"none"
|
|
548
|
+
],
|
|
549
|
+
"skip": [
|
|
550
|
+
"none"
|
|
551
|
+
],
|
|
552
|
+
"since": [
|
|
553
|
+
"none"
|
|
554
|
+
],
|
|
555
|
+
"until": [
|
|
556
|
+
"none"
|
|
557
|
+
],
|
|
558
|
+
"author": [
|
|
559
|
+
"none"
|
|
560
|
+
],
|
|
561
|
+
"grep": [
|
|
562
|
+
"none"
|
|
563
|
+
],
|
|
564
|
+
"branch": [
|
|
565
|
+
"branch-name"
|
|
566
|
+
],
|
|
567
|
+
"filePath": [
|
|
568
|
+
"read-path"
|
|
569
|
+
],
|
|
570
|
+
"oneline": [
|
|
571
|
+
"none"
|
|
572
|
+
],
|
|
573
|
+
"stat": [
|
|
574
|
+
"none"
|
|
575
|
+
],
|
|
576
|
+
"patch": [
|
|
577
|
+
"none"
|
|
578
|
+
],
|
|
579
|
+
"showSignature": [
|
|
580
|
+
"none"
|
|
581
|
+
]
|
|
582
|
+
},
|
|
583
|
+
"serverName": "git"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"toolName": "git_merge",
|
|
587
|
+
"comment": "Merges another branch into the current branch, integrating its history with optional merge strategies.",
|
|
588
|
+
"sideEffects": true,
|
|
589
|
+
"args": {
|
|
590
|
+
"path": [
|
|
591
|
+
"read-path",
|
|
592
|
+
"write-history"
|
|
593
|
+
],
|
|
594
|
+
"branch": [
|
|
595
|
+
"branch-name"
|
|
596
|
+
],
|
|
597
|
+
"strategy": [
|
|
598
|
+
"none"
|
|
599
|
+
],
|
|
600
|
+
"noFastForward": [
|
|
601
|
+
"none"
|
|
602
|
+
],
|
|
603
|
+
"squash": [
|
|
604
|
+
"none"
|
|
605
|
+
],
|
|
606
|
+
"message": [
|
|
607
|
+
"commit-message"
|
|
608
|
+
],
|
|
609
|
+
"abort": [
|
|
610
|
+
"none"
|
|
611
|
+
]
|
|
612
|
+
},
|
|
613
|
+
"serverName": "git"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"toolName": "git_pull",
|
|
617
|
+
"comment": "Fetches changes from a remote repository and integrates them into the current local branch.",
|
|
618
|
+
"sideEffects": true,
|
|
619
|
+
"args": {
|
|
620
|
+
"path": [
|
|
621
|
+
"read-path",
|
|
622
|
+
"write-history"
|
|
623
|
+
],
|
|
624
|
+
"remote": [
|
|
625
|
+
"git-remote-url"
|
|
626
|
+
],
|
|
627
|
+
"branch": [
|
|
628
|
+
"branch-name"
|
|
629
|
+
],
|
|
630
|
+
"rebase": [
|
|
631
|
+
"none"
|
|
632
|
+
],
|
|
633
|
+
"fastForwardOnly": [
|
|
634
|
+
"none"
|
|
635
|
+
]
|
|
636
|
+
},
|
|
637
|
+
"serverName": "git"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"toolName": "git_push",
|
|
641
|
+
"comment": "Uploads local commits to a remote repository branch, with options for force-push and branch deletion.",
|
|
642
|
+
"sideEffects": true,
|
|
643
|
+
"args": {
|
|
644
|
+
"path": [
|
|
645
|
+
"read-path"
|
|
646
|
+
],
|
|
647
|
+
"remote": [
|
|
648
|
+
"git-remote-url"
|
|
649
|
+
],
|
|
650
|
+
"branch": [
|
|
651
|
+
"branch-name"
|
|
652
|
+
],
|
|
653
|
+
"force": [
|
|
654
|
+
"none"
|
|
655
|
+
],
|
|
656
|
+
"forceWithLease": [
|
|
657
|
+
"none"
|
|
658
|
+
],
|
|
659
|
+
"setUpstream": [
|
|
660
|
+
"none"
|
|
661
|
+
],
|
|
662
|
+
"tags": [
|
|
663
|
+
"none"
|
|
664
|
+
],
|
|
665
|
+
"dryRun": [
|
|
666
|
+
"none"
|
|
667
|
+
],
|
|
668
|
+
"delete": [
|
|
669
|
+
"none"
|
|
670
|
+
],
|
|
671
|
+
"remoteBranch": [
|
|
672
|
+
"branch-name"
|
|
673
|
+
],
|
|
674
|
+
"confirmed": [
|
|
675
|
+
"none"
|
|
676
|
+
]
|
|
677
|
+
},
|
|
678
|
+
"serverName": "git"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"toolName": "git_rebase",
|
|
682
|
+
"comment": "Reapplies commits on top of another base tip, rewriting history for a cleaner linear commit graph.",
|
|
683
|
+
"sideEffects": true,
|
|
684
|
+
"args": {
|
|
685
|
+
"path": [
|
|
686
|
+
"read-path",
|
|
687
|
+
"write-history"
|
|
688
|
+
],
|
|
689
|
+
"mode": [
|
|
690
|
+
"none"
|
|
691
|
+
],
|
|
692
|
+
"upstream": [
|
|
693
|
+
"none"
|
|
694
|
+
],
|
|
695
|
+
"branch": [
|
|
696
|
+
"branch-name"
|
|
697
|
+
],
|
|
698
|
+
"interactive": [
|
|
699
|
+
"none"
|
|
700
|
+
],
|
|
701
|
+
"onto": [
|
|
702
|
+
"none"
|
|
703
|
+
],
|
|
704
|
+
"preserve": [
|
|
705
|
+
"none"
|
|
706
|
+
]
|
|
707
|
+
},
|
|
708
|
+
"serverName": "git"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"toolName": "git_reflog",
|
|
712
|
+
"comment": "Displays the reference logs showing when branch tips and other refs were updated, useful for recovering lost commits.",
|
|
713
|
+
"sideEffects": true,
|
|
714
|
+
"args": {
|
|
715
|
+
"path": [
|
|
716
|
+
"read-path"
|
|
717
|
+
],
|
|
718
|
+
"ref": [
|
|
719
|
+
"none"
|
|
720
|
+
],
|
|
721
|
+
"maxCount": [
|
|
722
|
+
"none"
|
|
723
|
+
]
|
|
724
|
+
},
|
|
725
|
+
"serverName": "git"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"toolName": "git_remote",
|
|
729
|
+
"comment": "Manages remote repository configurations by listing, adding, removing, renaming, or updating remote URLs.",
|
|
730
|
+
"sideEffects": true,
|
|
731
|
+
"args": {
|
|
732
|
+
"path": [
|
|
733
|
+
"read-path"
|
|
734
|
+
],
|
|
735
|
+
"mode": [
|
|
736
|
+
"none"
|
|
737
|
+
],
|
|
738
|
+
"name": [
|
|
739
|
+
"none"
|
|
740
|
+
],
|
|
741
|
+
"url": [
|
|
742
|
+
"git-remote-url"
|
|
743
|
+
],
|
|
744
|
+
"newName": [
|
|
745
|
+
"none"
|
|
746
|
+
],
|
|
747
|
+
"push": [
|
|
748
|
+
"none"
|
|
749
|
+
]
|
|
750
|
+
},
|
|
751
|
+
"serverName": "git"
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
"toolName": "git_reset",
|
|
755
|
+
"comment": "Resets the current HEAD to a specified state, optionally discarding staged changes or all working tree changes.",
|
|
756
|
+
"sideEffects": true,
|
|
757
|
+
"args": {
|
|
758
|
+
"path": [
|
|
759
|
+
"read-path",
|
|
760
|
+
"write-history"
|
|
761
|
+
],
|
|
762
|
+
"mode": [
|
|
763
|
+
"none"
|
|
764
|
+
],
|
|
765
|
+
"target": [
|
|
766
|
+
"none"
|
|
767
|
+
],
|
|
768
|
+
"paths": [
|
|
769
|
+
"read-path"
|
|
770
|
+
],
|
|
771
|
+
"confirmed": [
|
|
772
|
+
"none"
|
|
773
|
+
]
|
|
774
|
+
},
|
|
775
|
+
"serverName": "git"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"toolName": "git_set_working_dir",
|
|
779
|
+
"comment": "Sets the session-level default working directory so subsequent git commands can omit the path parameter.",
|
|
780
|
+
"sideEffects": true,
|
|
781
|
+
"args": {
|
|
782
|
+
"path": [
|
|
783
|
+
"read-path"
|
|
784
|
+
],
|
|
785
|
+
"validateGitRepo": [
|
|
786
|
+
"none"
|
|
787
|
+
],
|
|
788
|
+
"initializeIfNotPresent": [
|
|
789
|
+
"none"
|
|
790
|
+
],
|
|
791
|
+
"includeMetadata": [
|
|
792
|
+
"none"
|
|
793
|
+
]
|
|
794
|
+
},
|
|
795
|
+
"serverName": "git"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"toolName": "git_show",
|
|
799
|
+
"comment": "Displays details and diff of a git object such as a commit, tree, blob, or tag.",
|
|
800
|
+
"sideEffects": true,
|
|
801
|
+
"args": {
|
|
802
|
+
"path": [
|
|
803
|
+
"read-path"
|
|
804
|
+
],
|
|
805
|
+
"object": [
|
|
806
|
+
"none"
|
|
807
|
+
],
|
|
808
|
+
"format": [
|
|
809
|
+
"none"
|
|
810
|
+
],
|
|
811
|
+
"stat": [
|
|
812
|
+
"none"
|
|
813
|
+
],
|
|
814
|
+
"filePath": [
|
|
815
|
+
"read-path"
|
|
816
|
+
]
|
|
817
|
+
},
|
|
818
|
+
"serverName": "git"
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"toolName": "git_stash",
|
|
822
|
+
"comment": "Manages stashes by listing, saving, restoring, or removing stashed working tree changes.",
|
|
823
|
+
"sideEffects": true,
|
|
824
|
+
"args": {
|
|
825
|
+
"path": [
|
|
826
|
+
"read-path"
|
|
827
|
+
],
|
|
828
|
+
"mode": [
|
|
829
|
+
"none"
|
|
830
|
+
],
|
|
831
|
+
"message": [
|
|
832
|
+
"none"
|
|
833
|
+
],
|
|
834
|
+
"stashRef": [
|
|
835
|
+
"none"
|
|
836
|
+
],
|
|
837
|
+
"includeUntracked": [
|
|
838
|
+
"none"
|
|
839
|
+
],
|
|
840
|
+
"keepIndex": [
|
|
841
|
+
"none"
|
|
842
|
+
]
|
|
843
|
+
},
|
|
844
|
+
"serverName": "git"
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"toolName": "git_status",
|
|
848
|
+
"comment": "Shows the current working tree status including staged, unstaged, and untracked file changes.",
|
|
849
|
+
"sideEffects": true,
|
|
850
|
+
"args": {
|
|
851
|
+
"path": [
|
|
852
|
+
"read-path"
|
|
853
|
+
],
|
|
854
|
+
"includeUntracked": [
|
|
855
|
+
"none"
|
|
856
|
+
]
|
|
857
|
+
},
|
|
858
|
+
"serverName": "git"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"toolName": "git_tag",
|
|
862
|
+
"comment": "Manages git tags by listing, creating (lightweight or annotated), or deleting tags that mark specific history points.",
|
|
863
|
+
"sideEffects": true,
|
|
864
|
+
"args": {
|
|
865
|
+
"path": [
|
|
866
|
+
"read-path",
|
|
867
|
+
"delete-history"
|
|
868
|
+
],
|
|
869
|
+
"mode": [
|
|
870
|
+
"none"
|
|
871
|
+
],
|
|
872
|
+
"tagName": [
|
|
873
|
+
"none"
|
|
874
|
+
],
|
|
875
|
+
"commit": [
|
|
876
|
+
"none"
|
|
877
|
+
],
|
|
878
|
+
"message": [
|
|
879
|
+
"none"
|
|
880
|
+
],
|
|
881
|
+
"annotated": [
|
|
882
|
+
"none"
|
|
883
|
+
],
|
|
884
|
+
"sign": [
|
|
885
|
+
"none"
|
|
886
|
+
],
|
|
887
|
+
"forceUnsignedOnFailure": [
|
|
888
|
+
"none"
|
|
889
|
+
],
|
|
890
|
+
"force": [
|
|
891
|
+
"none"
|
|
892
|
+
]
|
|
893
|
+
},
|
|
894
|
+
"serverName": "git"
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
"toolName": "git_worktree",
|
|
898
|
+
"comment": "Manages multiple linked working trees, allowing parallel work on different branches in separate directories.",
|
|
899
|
+
"sideEffects": true,
|
|
900
|
+
"args": {
|
|
901
|
+
"path": [
|
|
902
|
+
"read-path"
|
|
903
|
+
],
|
|
904
|
+
"mode": [
|
|
905
|
+
"none"
|
|
906
|
+
],
|
|
907
|
+
"worktreePath": [
|
|
908
|
+
"write-path",
|
|
909
|
+
"delete-path"
|
|
910
|
+
],
|
|
911
|
+
"branch": [
|
|
912
|
+
"branch-name"
|
|
913
|
+
],
|
|
914
|
+
"commitish": [
|
|
915
|
+
"none"
|
|
916
|
+
],
|
|
917
|
+
"force": [
|
|
918
|
+
"none"
|
|
919
|
+
],
|
|
920
|
+
"newPath": [
|
|
921
|
+
"write-path"
|
|
922
|
+
],
|
|
923
|
+
"detach": [
|
|
924
|
+
"none"
|
|
925
|
+
],
|
|
926
|
+
"verbose": [
|
|
927
|
+
"none"
|
|
928
|
+
],
|
|
929
|
+
"dryRun": [
|
|
930
|
+
"none"
|
|
931
|
+
]
|
|
932
|
+
},
|
|
933
|
+
"serverName": "git"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"toolName": "git_wrapup_instructions",
|
|
937
|
+
"comment": "Returns the user's configured git wrap-up workflow or default best-practice instructions for reviewing, documenting, and committing changes.",
|
|
938
|
+
"sideEffects": false,
|
|
939
|
+
"args": {
|
|
940
|
+
"acknowledgement": [
|
|
941
|
+
"none"
|
|
942
|
+
],
|
|
943
|
+
"updateAgentMetaFiles": [
|
|
944
|
+
"none"
|
|
945
|
+
],
|
|
946
|
+
"createTag": [
|
|
947
|
+
"none"
|
|
948
|
+
]
|
|
949
|
+
},
|
|
950
|
+
"serverName": "git"
|
|
951
|
+
}
|
|
952
|
+
]
|
|
953
|
+
}
|
|
954
|
+
}
|
|
955
|
+
}
|