@nail00749/agent-gvozd 0.1.7 → 0.2.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 +68 -11
- package/defaults/agents/back-deep.jsonc +1923 -6
- package/defaults/agents/back-fast.jsonc +1908 -3
- package/defaults/agents/front-deep.jsonc +1978 -17
- package/defaults/agents/front-fast.jsonc +1963 -14
- package/defaults/agents/git.jsonc +20 -0
- package/defaults/agents/master-trusted.jsonc +32 -0
- package/defaults/agents/master.jsonc +0 -1
- package/defaults/agents/review-deep.jsonc +2443 -18
- package/defaults/agents/review-fast.jsonc +2428 -15
- package/defaults/agents/security.jsonc +2213 -29
- package/defaults/prompts/back-deep.md +1 -1
- package/defaults/prompts/back-fast.md +1 -1
- package/defaults/prompts/devops.md +1 -1
- package/defaults/prompts/front-deep.md +1 -1
- package/defaults/prompts/front-fast.md +1 -1
- package/defaults/prompts/master-trusted.md +7 -0
- package/defaults/prompts/master.md +2 -2
- package/defaults/prompts/review-deep.md +3 -1
- package/defaults/prompts/review-fast.md +1 -1
- package/defaults/prompts/security.md +3 -1
- package/dist/cli.js +174 -58
- package/dist/index.js +261 -2
- package/dist/tui.js +956 -0
- package/package.json +13 -3
- package/defaults/agents/verifier.jsonc +0 -1298
|
@@ -1,1298 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"description": "Verifies implemented behavior with typechecks, builds, and focused runtime or manual scenarios.",
|
|
3
|
-
"mode": "subagent",
|
|
4
|
-
"fileLease": "readonly",
|
|
5
|
-
"models": [
|
|
6
|
-
"openai/gpt-5.6-luna",
|
|
7
|
-
"openai/gpt-5.6-sol"
|
|
8
|
-
],
|
|
9
|
-
"prompt": "../prompts/verifier.md",
|
|
10
|
-
"skills": [
|
|
11
|
-
"verification-before-completion"
|
|
12
|
-
],
|
|
13
|
-
"mcp": [
|
|
14
|
-
"context7"
|
|
15
|
-
],
|
|
16
|
-
"permissions": [
|
|
17
|
-
{
|
|
18
|
-
"action": "*",
|
|
19
|
-
"resource": "*",
|
|
20
|
-
"effect": "deny"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"action": "read",
|
|
24
|
-
"resource": "*",
|
|
25
|
-
"effect": "allow"
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"action": "glob",
|
|
29
|
-
"resource": "*",
|
|
30
|
-
"effect": "allow"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"action": "grep",
|
|
34
|
-
"resource": "*",
|
|
35
|
-
"effect": "allow"
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"action": "gitnexus_*",
|
|
39
|
-
"resource": "*",
|
|
40
|
-
"effect": "allow"
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"action": "gitnexus_rename",
|
|
44
|
-
"resource": "*",
|
|
45
|
-
"effect": "deny"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"action": "gitnexus_group_sync",
|
|
49
|
-
"resource": "*",
|
|
50
|
-
"effect": "deny"
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"action": "playwright_*",
|
|
54
|
-
"resource": "*",
|
|
55
|
-
"effect": "ask"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"action": "playwright_browser_get_config",
|
|
59
|
-
"resource": "*",
|
|
60
|
-
"effect": "allow"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"action": "playwright_browser_snapshot",
|
|
64
|
-
"resource": "*",
|
|
65
|
-
"effect": "allow"
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
"action": "playwright_browser_take_screenshot",
|
|
69
|
-
"resource": "*",
|
|
70
|
-
"effect": "allow"
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"action": "playwright_browser_console_messages",
|
|
74
|
-
"resource": "*",
|
|
75
|
-
"effect": "allow"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"action": "playwright_browser_network_requests",
|
|
79
|
-
"resource": "*",
|
|
80
|
-
"effect": "allow"
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"action": "playwright_browser_tabs",
|
|
84
|
-
"resource": "*",
|
|
85
|
-
"effect": "allow"
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"action": "playwright_browser_find",
|
|
89
|
-
"resource": "*",
|
|
90
|
-
"effect": "allow"
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"action": "playwright_browser_generate_locator",
|
|
94
|
-
"resource": "*",
|
|
95
|
-
"effect": "allow"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"action": "playwright_browser_verify_*",
|
|
99
|
-
"resource": "*",
|
|
100
|
-
"effect": "allow"
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
"action": "playwright_browser_run_code_unsafe",
|
|
104
|
-
"resource": "*",
|
|
105
|
-
"effect": "deny"
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"action": "shell",
|
|
109
|
-
"resource": "*",
|
|
110
|
-
"effect": "ask"
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
"action": "shell",
|
|
114
|
-
"resource": "pwd",
|
|
115
|
-
"effect": "allow"
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"action": "shell",
|
|
119
|
-
"resource": "pwd *",
|
|
120
|
-
"effect": "allow"
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
"action": "shell",
|
|
124
|
-
"resource": "true",
|
|
125
|
-
"effect": "allow"
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
"action": "shell",
|
|
129
|
-
"resource": "true *",
|
|
130
|
-
"effect": "allow"
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"action": "shell",
|
|
134
|
-
"resource": "test",
|
|
135
|
-
"effect": "allow"
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
"action": "shell",
|
|
139
|
-
"resource": "test *",
|
|
140
|
-
"effect": "allow"
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
"action": "shell",
|
|
144
|
-
"resource": "cat",
|
|
145
|
-
"effect": "allow"
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
"action": "shell",
|
|
149
|
-
"resource": "cat *",
|
|
150
|
-
"effect": "allow"
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
"action": "shell",
|
|
154
|
-
"resource": "head *",
|
|
155
|
-
"effect": "allow"
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
"action": "shell",
|
|
159
|
-
"resource": "tail *",
|
|
160
|
-
"effect": "allow"
|
|
161
|
-
},
|
|
162
|
-
{
|
|
163
|
-
"action": "shell",
|
|
164
|
-
"resource": "wc *",
|
|
165
|
-
"effect": "allow"
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
"action": "shell",
|
|
169
|
-
"resource": "sort *",
|
|
170
|
-
"effect": "allow"
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"action": "shell",
|
|
174
|
-
"resource": "grep *",
|
|
175
|
-
"effect": "allow"
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
"action": "shell",
|
|
179
|
-
"resource": "rg *",
|
|
180
|
-
"effect": "allow"
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
"action": "shell",
|
|
184
|
-
"resource": "find *",
|
|
185
|
-
"effect": "allow"
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
"action": "shell",
|
|
189
|
-
"resource": "diff *",
|
|
190
|
-
"effect": "allow"
|
|
191
|
-
},
|
|
192
|
-
{
|
|
193
|
-
"action": "shell",
|
|
194
|
-
"resource": "cmp *",
|
|
195
|
-
"effect": "allow"
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
"action": "shell",
|
|
199
|
-
"resource": "ls *",
|
|
200
|
-
"effect": "allow"
|
|
201
|
-
},
|
|
202
|
-
{
|
|
203
|
-
"action": "shell",
|
|
204
|
-
"resource": "du *",
|
|
205
|
-
"effect": "allow"
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
"action": "shell",
|
|
209
|
-
"resource": "stat *",
|
|
210
|
-
"effect": "allow"
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
"action": "shell",
|
|
214
|
-
"resource": "realpath *",
|
|
215
|
-
"effect": "allow"
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
"action": "shell",
|
|
219
|
-
"resource": "basename *",
|
|
220
|
-
"effect": "allow"
|
|
221
|
-
},
|
|
222
|
-
{
|
|
223
|
-
"action": "shell",
|
|
224
|
-
"resource": "dirname *",
|
|
225
|
-
"effect": "allow"
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
"action": "shell",
|
|
229
|
-
"resource": "shasum *",
|
|
230
|
-
"effect": "allow"
|
|
231
|
-
},
|
|
232
|
-
{
|
|
233
|
-
"action": "shell",
|
|
234
|
-
"resource": "sha256sum *",
|
|
235
|
-
"effect": "allow"
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"action": "shell",
|
|
239
|
-
"resource": "md5sum *",
|
|
240
|
-
"effect": "allow"
|
|
241
|
-
},
|
|
242
|
-
{
|
|
243
|
-
"action": "shell",
|
|
244
|
-
"resource": "uname *",
|
|
245
|
-
"effect": "allow"
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
"action": "shell",
|
|
249
|
-
"resource": "whoami",
|
|
250
|
-
"effect": "allow"
|
|
251
|
-
},
|
|
252
|
-
{
|
|
253
|
-
"action": "shell",
|
|
254
|
-
"resource": "whoami *",
|
|
255
|
-
"effect": "allow"
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
"action": "shell",
|
|
259
|
-
"resource": "date",
|
|
260
|
-
"effect": "allow"
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
"action": "shell",
|
|
264
|
-
"resource": "date *",
|
|
265
|
-
"effect": "allow"
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
"action": "shell",
|
|
269
|
-
"resource": "which *",
|
|
270
|
-
"effect": "allow"
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
"action": "shell",
|
|
274
|
-
"resource": "command -v *",
|
|
275
|
-
"effect": "allow"
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
"action": "shell",
|
|
279
|
-
"resource": "mktemp *",
|
|
280
|
-
"effect": "allow"
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
"action": "shell",
|
|
284
|
-
"resource": "tr *",
|
|
285
|
-
"effect": "allow"
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
"action": "shell",
|
|
289
|
-
"resource": "cut *",
|
|
290
|
-
"effect": "allow"
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"action": "shell",
|
|
294
|
-
"resource": "bun --version",
|
|
295
|
-
"effect": "allow"
|
|
296
|
-
},
|
|
297
|
-
{
|
|
298
|
-
"action": "shell",
|
|
299
|
-
"resource": "bun --version *",
|
|
300
|
-
"effect": "allow"
|
|
301
|
-
},
|
|
302
|
-
{
|
|
303
|
-
"action": "shell",
|
|
304
|
-
"resource": "bun test",
|
|
305
|
-
"effect": "allow"
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
"action": "shell",
|
|
309
|
-
"resource": "bun test *",
|
|
310
|
-
"effect": "allow"
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
"action": "shell",
|
|
314
|
-
"resource": "bun run test",
|
|
315
|
-
"effect": "allow"
|
|
316
|
-
},
|
|
317
|
-
{
|
|
318
|
-
"action": "shell",
|
|
319
|
-
"resource": "bun run test *",
|
|
320
|
-
"effect": "allow"
|
|
321
|
-
},
|
|
322
|
-
{
|
|
323
|
-
"action": "shell",
|
|
324
|
-
"resource": "bun run typecheck",
|
|
325
|
-
"effect": "allow"
|
|
326
|
-
},
|
|
327
|
-
{
|
|
328
|
-
"action": "shell",
|
|
329
|
-
"resource": "bun run typecheck *",
|
|
330
|
-
"effect": "allow"
|
|
331
|
-
},
|
|
332
|
-
{
|
|
333
|
-
"action": "shell",
|
|
334
|
-
"resource": "bun run lint",
|
|
335
|
-
"effect": "allow"
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
"action": "shell",
|
|
339
|
-
"resource": "bun run lint *",
|
|
340
|
-
"effect": "allow"
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
"action": "shell",
|
|
344
|
-
"resource": "bun run build",
|
|
345
|
-
"effect": "allow"
|
|
346
|
-
},
|
|
347
|
-
{
|
|
348
|
-
"action": "shell",
|
|
349
|
-
"resource": "bun run build *",
|
|
350
|
-
"effect": "allow"
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
"action": "shell",
|
|
354
|
-
"resource": "bun run check",
|
|
355
|
-
"effect": "allow"
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
"action": "shell",
|
|
359
|
-
"resource": "bun run check *",
|
|
360
|
-
"effect": "allow"
|
|
361
|
-
},
|
|
362
|
-
{
|
|
363
|
-
"action": "shell",
|
|
364
|
-
"resource": "tsc --noEmit",
|
|
365
|
-
"effect": "allow"
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
"action": "shell",
|
|
369
|
-
"resource": "tsc --noEmit *",
|
|
370
|
-
"effect": "allow"
|
|
371
|
-
},
|
|
372
|
-
{
|
|
373
|
-
"action": "shell",
|
|
374
|
-
"resource": "npx tsc --noEmit",
|
|
375
|
-
"effect": "allow"
|
|
376
|
-
},
|
|
377
|
-
{
|
|
378
|
-
"action": "shell",
|
|
379
|
-
"resource": "npx tsc --noEmit *",
|
|
380
|
-
"effect": "allow"
|
|
381
|
-
},
|
|
382
|
-
{
|
|
383
|
-
"action": "shell",
|
|
384
|
-
"resource": "eslint",
|
|
385
|
-
"effect": "allow"
|
|
386
|
-
},
|
|
387
|
-
{
|
|
388
|
-
"action": "shell",
|
|
389
|
-
"resource": "eslint *",
|
|
390
|
-
"effect": "allow"
|
|
391
|
-
},
|
|
392
|
-
{
|
|
393
|
-
"action": "shell",
|
|
394
|
-
"resource": "biome check",
|
|
395
|
-
"effect": "allow"
|
|
396
|
-
},
|
|
397
|
-
{
|
|
398
|
-
"action": "shell",
|
|
399
|
-
"resource": "biome check *",
|
|
400
|
-
"effect": "allow"
|
|
401
|
-
},
|
|
402
|
-
{
|
|
403
|
-
"action": "shell",
|
|
404
|
-
"resource": "prettier --check *",
|
|
405
|
-
"effect": "allow"
|
|
406
|
-
},
|
|
407
|
-
{
|
|
408
|
-
"action": "shell",
|
|
409
|
-
"resource": "npm test",
|
|
410
|
-
"effect": "allow"
|
|
411
|
-
},
|
|
412
|
-
{
|
|
413
|
-
"action": "shell",
|
|
414
|
-
"resource": "npm test *",
|
|
415
|
-
"effect": "allow"
|
|
416
|
-
},
|
|
417
|
-
{
|
|
418
|
-
"action": "shell",
|
|
419
|
-
"resource": "npm run test",
|
|
420
|
-
"effect": "allow"
|
|
421
|
-
},
|
|
422
|
-
{
|
|
423
|
-
"action": "shell",
|
|
424
|
-
"resource": "npm run test *",
|
|
425
|
-
"effect": "allow"
|
|
426
|
-
},
|
|
427
|
-
{
|
|
428
|
-
"action": "shell",
|
|
429
|
-
"resource": "npm run typecheck",
|
|
430
|
-
"effect": "allow"
|
|
431
|
-
},
|
|
432
|
-
{
|
|
433
|
-
"action": "shell",
|
|
434
|
-
"resource": "npm run typecheck *",
|
|
435
|
-
"effect": "allow"
|
|
436
|
-
},
|
|
437
|
-
{
|
|
438
|
-
"action": "shell",
|
|
439
|
-
"resource": "npm run lint",
|
|
440
|
-
"effect": "allow"
|
|
441
|
-
},
|
|
442
|
-
{
|
|
443
|
-
"action": "shell",
|
|
444
|
-
"resource": "npm run lint *",
|
|
445
|
-
"effect": "allow"
|
|
446
|
-
},
|
|
447
|
-
{
|
|
448
|
-
"action": "shell",
|
|
449
|
-
"resource": "npm run build",
|
|
450
|
-
"effect": "allow"
|
|
451
|
-
},
|
|
452
|
-
{
|
|
453
|
-
"action": "shell",
|
|
454
|
-
"resource": "npm run build *",
|
|
455
|
-
"effect": "allow"
|
|
456
|
-
},
|
|
457
|
-
{
|
|
458
|
-
"action": "shell",
|
|
459
|
-
"resource": "pnpm test",
|
|
460
|
-
"effect": "allow"
|
|
461
|
-
},
|
|
462
|
-
{
|
|
463
|
-
"action": "shell",
|
|
464
|
-
"resource": "pnpm test *",
|
|
465
|
-
"effect": "allow"
|
|
466
|
-
},
|
|
467
|
-
{
|
|
468
|
-
"action": "shell",
|
|
469
|
-
"resource": "pnpm run test",
|
|
470
|
-
"effect": "allow"
|
|
471
|
-
},
|
|
472
|
-
{
|
|
473
|
-
"action": "shell",
|
|
474
|
-
"resource": "pnpm run test *",
|
|
475
|
-
"effect": "allow"
|
|
476
|
-
},
|
|
477
|
-
{
|
|
478
|
-
"action": "shell",
|
|
479
|
-
"resource": "pnpm run build",
|
|
480
|
-
"effect": "allow"
|
|
481
|
-
},
|
|
482
|
-
{
|
|
483
|
-
"action": "shell",
|
|
484
|
-
"resource": "pnpm run build *",
|
|
485
|
-
"effect": "allow"
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
"action": "shell",
|
|
489
|
-
"resource": "yarn test",
|
|
490
|
-
"effect": "allow"
|
|
491
|
-
},
|
|
492
|
-
{
|
|
493
|
-
"action": "shell",
|
|
494
|
-
"resource": "yarn test *",
|
|
495
|
-
"effect": "allow"
|
|
496
|
-
},
|
|
497
|
-
{
|
|
498
|
-
"action": "shell",
|
|
499
|
-
"resource": "yarn build",
|
|
500
|
-
"effect": "allow"
|
|
501
|
-
},
|
|
502
|
-
{
|
|
503
|
-
"action": "shell",
|
|
504
|
-
"resource": "yarn build *",
|
|
505
|
-
"effect": "allow"
|
|
506
|
-
},
|
|
507
|
-
{
|
|
508
|
-
"action": "shell",
|
|
509
|
-
"resource": "vitest run",
|
|
510
|
-
"effect": "allow"
|
|
511
|
-
},
|
|
512
|
-
{
|
|
513
|
-
"action": "shell",
|
|
514
|
-
"resource": "vitest run *",
|
|
515
|
-
"effect": "allow"
|
|
516
|
-
},
|
|
517
|
-
{
|
|
518
|
-
"action": "shell",
|
|
519
|
-
"resource": "jest",
|
|
520
|
-
"effect": "allow"
|
|
521
|
-
},
|
|
522
|
-
{
|
|
523
|
-
"action": "shell",
|
|
524
|
-
"resource": "jest *",
|
|
525
|
-
"effect": "allow"
|
|
526
|
-
},
|
|
527
|
-
{
|
|
528
|
-
"action": "shell",
|
|
529
|
-
"resource": "playwright test",
|
|
530
|
-
"effect": "allow"
|
|
531
|
-
},
|
|
532
|
-
{
|
|
533
|
-
"action": "shell",
|
|
534
|
-
"resource": "playwright test *",
|
|
535
|
-
"effect": "allow"
|
|
536
|
-
},
|
|
537
|
-
{
|
|
538
|
-
"action": "shell",
|
|
539
|
-
"resource": "cargo check",
|
|
540
|
-
"effect": "allow"
|
|
541
|
-
},
|
|
542
|
-
{
|
|
543
|
-
"action": "shell",
|
|
544
|
-
"resource": "cargo check *",
|
|
545
|
-
"effect": "allow"
|
|
546
|
-
},
|
|
547
|
-
{
|
|
548
|
-
"action": "shell",
|
|
549
|
-
"resource": "cargo test",
|
|
550
|
-
"effect": "allow"
|
|
551
|
-
},
|
|
552
|
-
{
|
|
553
|
-
"action": "shell",
|
|
554
|
-
"resource": "cargo test *",
|
|
555
|
-
"effect": "allow"
|
|
556
|
-
},
|
|
557
|
-
{
|
|
558
|
-
"action": "shell",
|
|
559
|
-
"resource": "cargo build",
|
|
560
|
-
"effect": "allow"
|
|
561
|
-
},
|
|
562
|
-
{
|
|
563
|
-
"action": "shell",
|
|
564
|
-
"resource": "cargo build *",
|
|
565
|
-
"effect": "allow"
|
|
566
|
-
},
|
|
567
|
-
{
|
|
568
|
-
"action": "shell",
|
|
569
|
-
"resource": "cargo clippy",
|
|
570
|
-
"effect": "allow"
|
|
571
|
-
},
|
|
572
|
-
{
|
|
573
|
-
"action": "shell",
|
|
574
|
-
"resource": "cargo clippy *",
|
|
575
|
-
"effect": "allow"
|
|
576
|
-
},
|
|
577
|
-
{
|
|
578
|
-
"action": "shell",
|
|
579
|
-
"resource": "cargo fmt --check *",
|
|
580
|
-
"effect": "allow"
|
|
581
|
-
},
|
|
582
|
-
{
|
|
583
|
-
"action": "shell",
|
|
584
|
-
"resource": "cargo --version",
|
|
585
|
-
"effect": "allow"
|
|
586
|
-
},
|
|
587
|
-
{
|
|
588
|
-
"action": "shell",
|
|
589
|
-
"resource": "cargo --version *",
|
|
590
|
-
"effect": "allow"
|
|
591
|
-
},
|
|
592
|
-
{
|
|
593
|
-
"action": "shell",
|
|
594
|
-
"resource": "go build ./...",
|
|
595
|
-
"effect": "allow"
|
|
596
|
-
},
|
|
597
|
-
{
|
|
598
|
-
"action": "shell",
|
|
599
|
-
"resource": "go build ./... *",
|
|
600
|
-
"effect": "allow"
|
|
601
|
-
},
|
|
602
|
-
{
|
|
603
|
-
"action": "shell",
|
|
604
|
-
"resource": "go test ./...",
|
|
605
|
-
"effect": "allow"
|
|
606
|
-
},
|
|
607
|
-
{
|
|
608
|
-
"action": "shell",
|
|
609
|
-
"resource": "go test ./... *",
|
|
610
|
-
"effect": "allow"
|
|
611
|
-
},
|
|
612
|
-
{
|
|
613
|
-
"action": "shell",
|
|
614
|
-
"resource": "go vet ./...",
|
|
615
|
-
"effect": "allow"
|
|
616
|
-
},
|
|
617
|
-
{
|
|
618
|
-
"action": "shell",
|
|
619
|
-
"resource": "go vet ./... *",
|
|
620
|
-
"effect": "allow"
|
|
621
|
-
},
|
|
622
|
-
{
|
|
623
|
-
"action": "shell",
|
|
624
|
-
"resource": "go version",
|
|
625
|
-
"effect": "allow"
|
|
626
|
-
},
|
|
627
|
-
{
|
|
628
|
-
"action": "shell",
|
|
629
|
-
"resource": "go version *",
|
|
630
|
-
"effect": "allow"
|
|
631
|
-
},
|
|
632
|
-
{
|
|
633
|
-
"action": "shell",
|
|
634
|
-
"resource": "pytest",
|
|
635
|
-
"effect": "allow"
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
"action": "shell",
|
|
639
|
-
"resource": "pytest *",
|
|
640
|
-
"effect": "allow"
|
|
641
|
-
},
|
|
642
|
-
{
|
|
643
|
-
"action": "shell",
|
|
644
|
-
"resource": "python3 -m pytest *",
|
|
645
|
-
"effect": "allow"
|
|
646
|
-
},
|
|
647
|
-
{
|
|
648
|
-
"action": "shell",
|
|
649
|
-
"resource": "python -m pytest *",
|
|
650
|
-
"effect": "allow"
|
|
651
|
-
},
|
|
652
|
-
{
|
|
653
|
-
"action": "shell",
|
|
654
|
-
"resource": "ruff check",
|
|
655
|
-
"effect": "allow"
|
|
656
|
-
},
|
|
657
|
-
{
|
|
658
|
-
"action": "shell",
|
|
659
|
-
"resource": "ruff check *",
|
|
660
|
-
"effect": "allow"
|
|
661
|
-
},
|
|
662
|
-
{
|
|
663
|
-
"action": "shell",
|
|
664
|
-
"resource": "mypy",
|
|
665
|
-
"effect": "allow"
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
"action": "shell",
|
|
669
|
-
"resource": "mypy *",
|
|
670
|
-
"effect": "allow"
|
|
671
|
-
},
|
|
672
|
-
{
|
|
673
|
-
"action": "shell",
|
|
674
|
-
"resource": "pyright",
|
|
675
|
-
"effect": "allow"
|
|
676
|
-
},
|
|
677
|
-
{
|
|
678
|
-
"action": "shell",
|
|
679
|
-
"resource": "pyright *",
|
|
680
|
-
"effect": "allow"
|
|
681
|
-
},
|
|
682
|
-
{
|
|
683
|
-
"action": "shell",
|
|
684
|
-
"resource": "mvn test",
|
|
685
|
-
"effect": "allow"
|
|
686
|
-
},
|
|
687
|
-
{
|
|
688
|
-
"action": "shell",
|
|
689
|
-
"resource": "mvn test *",
|
|
690
|
-
"effect": "allow"
|
|
691
|
-
},
|
|
692
|
-
{
|
|
693
|
-
"action": "shell",
|
|
694
|
-
"resource": "mvn verify",
|
|
695
|
-
"effect": "allow"
|
|
696
|
-
},
|
|
697
|
-
{
|
|
698
|
-
"action": "shell",
|
|
699
|
-
"resource": "mvn verify *",
|
|
700
|
-
"effect": "allow"
|
|
701
|
-
},
|
|
702
|
-
{
|
|
703
|
-
"action": "shell",
|
|
704
|
-
"resource": "gradle test",
|
|
705
|
-
"effect": "allow"
|
|
706
|
-
},
|
|
707
|
-
{
|
|
708
|
-
"action": "shell",
|
|
709
|
-
"resource": "gradle test *",
|
|
710
|
-
"effect": "allow"
|
|
711
|
-
},
|
|
712
|
-
{
|
|
713
|
-
"action": "shell",
|
|
714
|
-
"resource": "gradle check",
|
|
715
|
-
"effect": "allow"
|
|
716
|
-
},
|
|
717
|
-
{
|
|
718
|
-
"action": "shell",
|
|
719
|
-
"resource": "gradle check *",
|
|
720
|
-
"effect": "allow"
|
|
721
|
-
},
|
|
722
|
-
{
|
|
723
|
-
"action": "shell",
|
|
724
|
-
"resource": "./gradlew test",
|
|
725
|
-
"effect": "allow"
|
|
726
|
-
},
|
|
727
|
-
{
|
|
728
|
-
"action": "shell",
|
|
729
|
-
"resource": "./gradlew test *",
|
|
730
|
-
"effect": "allow"
|
|
731
|
-
},
|
|
732
|
-
{
|
|
733
|
-
"action": "shell",
|
|
734
|
-
"resource": "./gradlew check",
|
|
735
|
-
"effect": "allow"
|
|
736
|
-
},
|
|
737
|
-
{
|
|
738
|
-
"action": "shell",
|
|
739
|
-
"resource": "./gradlew check *",
|
|
740
|
-
"effect": "allow"
|
|
741
|
-
},
|
|
742
|
-
{
|
|
743
|
-
"action": "shell",
|
|
744
|
-
"resource": "make test",
|
|
745
|
-
"effect": "allow"
|
|
746
|
-
},
|
|
747
|
-
{
|
|
748
|
-
"action": "shell",
|
|
749
|
-
"resource": "make test *",
|
|
750
|
-
"effect": "allow"
|
|
751
|
-
},
|
|
752
|
-
{
|
|
753
|
-
"action": "shell",
|
|
754
|
-
"resource": "make check",
|
|
755
|
-
"effect": "allow"
|
|
756
|
-
},
|
|
757
|
-
{
|
|
758
|
-
"action": "shell",
|
|
759
|
-
"resource": "make check *",
|
|
760
|
-
"effect": "allow"
|
|
761
|
-
},
|
|
762
|
-
{
|
|
763
|
-
"action": "shell",
|
|
764
|
-
"resource": "make build",
|
|
765
|
-
"effect": "allow"
|
|
766
|
-
},
|
|
767
|
-
{
|
|
768
|
-
"action": "shell",
|
|
769
|
-
"resource": "make build *",
|
|
770
|
-
"effect": "allow"
|
|
771
|
-
},
|
|
772
|
-
{
|
|
773
|
-
"action": "shell",
|
|
774
|
-
"resource": "make --version",
|
|
775
|
-
"effect": "allow"
|
|
776
|
-
},
|
|
777
|
-
{
|
|
778
|
-
"action": "shell",
|
|
779
|
-
"resource": "make --version *",
|
|
780
|
-
"effect": "allow"
|
|
781
|
-
},
|
|
782
|
-
{
|
|
783
|
-
"action": "shell",
|
|
784
|
-
"resource": "just --list",
|
|
785
|
-
"effect": "allow"
|
|
786
|
-
},
|
|
787
|
-
{
|
|
788
|
-
"action": "shell",
|
|
789
|
-
"resource": "just --list *",
|
|
790
|
-
"effect": "allow"
|
|
791
|
-
},
|
|
792
|
-
{
|
|
793
|
-
"action": "shell",
|
|
794
|
-
"resource": "git status",
|
|
795
|
-
"effect": "allow"
|
|
796
|
-
},
|
|
797
|
-
{
|
|
798
|
-
"action": "shell",
|
|
799
|
-
"resource": "git status *",
|
|
800
|
-
"effect": "allow"
|
|
801
|
-
},
|
|
802
|
-
{
|
|
803
|
-
"action": "shell",
|
|
804
|
-
"resource": "git status --short",
|
|
805
|
-
"effect": "allow"
|
|
806
|
-
},
|
|
807
|
-
{
|
|
808
|
-
"action": "shell",
|
|
809
|
-
"resource": "git status --short *",
|
|
810
|
-
"effect": "allow"
|
|
811
|
-
},
|
|
812
|
-
{
|
|
813
|
-
"action": "shell",
|
|
814
|
-
"resource": "git status --short --branch",
|
|
815
|
-
"effect": "allow"
|
|
816
|
-
},
|
|
817
|
-
{
|
|
818
|
-
"action": "shell",
|
|
819
|
-
"resource": "git status --short --branch *",
|
|
820
|
-
"effect": "allow"
|
|
821
|
-
},
|
|
822
|
-
{
|
|
823
|
-
"action": "shell",
|
|
824
|
-
"resource": "git status --porcelain",
|
|
825
|
-
"effect": "allow"
|
|
826
|
-
},
|
|
827
|
-
{
|
|
828
|
-
"action": "shell",
|
|
829
|
-
"resource": "git status --porcelain *",
|
|
830
|
-
"effect": "allow"
|
|
831
|
-
},
|
|
832
|
-
{
|
|
833
|
-
"action": "shell",
|
|
834
|
-
"resource": "git status --porcelain=v1 --branch",
|
|
835
|
-
"effect": "allow"
|
|
836
|
-
},
|
|
837
|
-
{
|
|
838
|
-
"action": "shell",
|
|
839
|
-
"resource": "git status --porcelain=v1 --branch *",
|
|
840
|
-
"effect": "allow"
|
|
841
|
-
},
|
|
842
|
-
{
|
|
843
|
-
"action": "shell",
|
|
844
|
-
"resource": "git diff",
|
|
845
|
-
"effect": "allow"
|
|
846
|
-
},
|
|
847
|
-
{
|
|
848
|
-
"action": "shell",
|
|
849
|
-
"resource": "git diff *",
|
|
850
|
-
"effect": "allow"
|
|
851
|
-
},
|
|
852
|
-
{
|
|
853
|
-
"action": "shell",
|
|
854
|
-
"resource": "git diff --stat",
|
|
855
|
-
"effect": "allow"
|
|
856
|
-
},
|
|
857
|
-
{
|
|
858
|
-
"action": "shell",
|
|
859
|
-
"resource": "git diff --stat *",
|
|
860
|
-
"effect": "allow"
|
|
861
|
-
},
|
|
862
|
-
{
|
|
863
|
-
"action": "shell",
|
|
864
|
-
"resource": "git diff --cached",
|
|
865
|
-
"effect": "allow"
|
|
866
|
-
},
|
|
867
|
-
{
|
|
868
|
-
"action": "shell",
|
|
869
|
-
"resource": "git diff --cached *",
|
|
870
|
-
"effect": "allow"
|
|
871
|
-
},
|
|
872
|
-
{
|
|
873
|
-
"action": "shell",
|
|
874
|
-
"resource": "git diff --check",
|
|
875
|
-
"effect": "allow"
|
|
876
|
-
},
|
|
877
|
-
{
|
|
878
|
-
"action": "shell",
|
|
879
|
-
"resource": "git diff --check *",
|
|
880
|
-
"effect": "allow"
|
|
881
|
-
},
|
|
882
|
-
{
|
|
883
|
-
"action": "shell",
|
|
884
|
-
"resource": "git log",
|
|
885
|
-
"effect": "allow"
|
|
886
|
-
},
|
|
887
|
-
{
|
|
888
|
-
"action": "shell",
|
|
889
|
-
"resource": "git log *",
|
|
890
|
-
"effect": "allow"
|
|
891
|
-
},
|
|
892
|
-
{
|
|
893
|
-
"action": "shell",
|
|
894
|
-
"resource": "git show",
|
|
895
|
-
"effect": "allow"
|
|
896
|
-
},
|
|
897
|
-
{
|
|
898
|
-
"action": "shell",
|
|
899
|
-
"resource": "git show *",
|
|
900
|
-
"effect": "allow"
|
|
901
|
-
},
|
|
902
|
-
{
|
|
903
|
-
"action": "shell",
|
|
904
|
-
"resource": "git rev-parse",
|
|
905
|
-
"effect": "allow"
|
|
906
|
-
},
|
|
907
|
-
{
|
|
908
|
-
"action": "shell",
|
|
909
|
-
"resource": "git rev-parse *",
|
|
910
|
-
"effect": "allow"
|
|
911
|
-
},
|
|
912
|
-
{
|
|
913
|
-
"action": "shell",
|
|
914
|
-
"resource": "git rev-list",
|
|
915
|
-
"effect": "allow"
|
|
916
|
-
},
|
|
917
|
-
{
|
|
918
|
-
"action": "shell",
|
|
919
|
-
"resource": "git rev-list *",
|
|
920
|
-
"effect": "allow"
|
|
921
|
-
},
|
|
922
|
-
{
|
|
923
|
-
"action": "shell",
|
|
924
|
-
"resource": "git show-ref",
|
|
925
|
-
"effect": "allow"
|
|
926
|
-
},
|
|
927
|
-
{
|
|
928
|
-
"action": "shell",
|
|
929
|
-
"resource": "git show-ref *",
|
|
930
|
-
"effect": "allow"
|
|
931
|
-
},
|
|
932
|
-
{
|
|
933
|
-
"action": "shell",
|
|
934
|
-
"resource": "git cat-file",
|
|
935
|
-
"effect": "allow"
|
|
936
|
-
},
|
|
937
|
-
{
|
|
938
|
-
"action": "shell",
|
|
939
|
-
"resource": "git cat-file *",
|
|
940
|
-
"effect": "allow"
|
|
941
|
-
},
|
|
942
|
-
{
|
|
943
|
-
"action": "shell",
|
|
944
|
-
"resource": "git symbolic-ref HEAD",
|
|
945
|
-
"effect": "allow"
|
|
946
|
-
},
|
|
947
|
-
{
|
|
948
|
-
"action": "shell",
|
|
949
|
-
"resource": "git symbolic-ref --short HEAD",
|
|
950
|
-
"effect": "allow"
|
|
951
|
-
},
|
|
952
|
-
{
|
|
953
|
-
"action": "shell",
|
|
954
|
-
"resource": "git ls-files",
|
|
955
|
-
"effect": "allow"
|
|
956
|
-
},
|
|
957
|
-
{
|
|
958
|
-
"action": "shell",
|
|
959
|
-
"resource": "git ls-files *",
|
|
960
|
-
"effect": "allow"
|
|
961
|
-
},
|
|
962
|
-
{
|
|
963
|
-
"action": "shell",
|
|
964
|
-
"resource": "git ls-remote",
|
|
965
|
-
"effect": "allow"
|
|
966
|
-
},
|
|
967
|
-
{
|
|
968
|
-
"action": "shell",
|
|
969
|
-
"resource": "git ls-remote *",
|
|
970
|
-
"effect": "allow"
|
|
971
|
-
},
|
|
972
|
-
{
|
|
973
|
-
"action": "shell",
|
|
974
|
-
"resource": "git grep",
|
|
975
|
-
"effect": "allow"
|
|
976
|
-
},
|
|
977
|
-
{
|
|
978
|
-
"action": "shell",
|
|
979
|
-
"resource": "git grep *",
|
|
980
|
-
"effect": "allow"
|
|
981
|
-
},
|
|
982
|
-
{
|
|
983
|
-
"action": "shell",
|
|
984
|
-
"resource": "git branch",
|
|
985
|
-
"effect": "allow"
|
|
986
|
-
},
|
|
987
|
-
{
|
|
988
|
-
"action": "shell",
|
|
989
|
-
"resource": "git tag",
|
|
990
|
-
"effect": "allow"
|
|
991
|
-
},
|
|
992
|
-
{
|
|
993
|
-
"action": "shell",
|
|
994
|
-
"resource": "git remote",
|
|
995
|
-
"effect": "allow"
|
|
996
|
-
},
|
|
997
|
-
{
|
|
998
|
-
"action": "shell",
|
|
999
|
-
"resource": "git reflog",
|
|
1000
|
-
"effect": "allow"
|
|
1001
|
-
},
|
|
1002
|
-
{
|
|
1003
|
-
"action": "shell",
|
|
1004
|
-
"resource": "git branch --list",
|
|
1005
|
-
"effect": "allow"
|
|
1006
|
-
},
|
|
1007
|
-
{
|
|
1008
|
-
"action": "shell",
|
|
1009
|
-
"resource": "git branch --list *",
|
|
1010
|
-
"effect": "allow"
|
|
1011
|
-
},
|
|
1012
|
-
{
|
|
1013
|
-
"action": "shell",
|
|
1014
|
-
"resource": "git branch -l",
|
|
1015
|
-
"effect": "allow"
|
|
1016
|
-
},
|
|
1017
|
-
{
|
|
1018
|
-
"action": "shell",
|
|
1019
|
-
"resource": "git branch -l *",
|
|
1020
|
-
"effect": "allow"
|
|
1021
|
-
},
|
|
1022
|
-
{
|
|
1023
|
-
"action": "shell",
|
|
1024
|
-
"resource": "git branch -a",
|
|
1025
|
-
"effect": "allow"
|
|
1026
|
-
},
|
|
1027
|
-
{
|
|
1028
|
-
"action": "shell",
|
|
1029
|
-
"resource": "git branch -a *",
|
|
1030
|
-
"effect": "allow"
|
|
1031
|
-
},
|
|
1032
|
-
{
|
|
1033
|
-
"action": "shell",
|
|
1034
|
-
"resource": "git branch -r",
|
|
1035
|
-
"effect": "allow"
|
|
1036
|
-
},
|
|
1037
|
-
{
|
|
1038
|
-
"action": "shell",
|
|
1039
|
-
"resource": "git branch -r *",
|
|
1040
|
-
"effect": "allow"
|
|
1041
|
-
},
|
|
1042
|
-
{
|
|
1043
|
-
"action": "shell",
|
|
1044
|
-
"resource": "git branch -v",
|
|
1045
|
-
"effect": "allow"
|
|
1046
|
-
},
|
|
1047
|
-
{
|
|
1048
|
-
"action": "shell",
|
|
1049
|
-
"resource": "git branch -v *",
|
|
1050
|
-
"effect": "allow"
|
|
1051
|
-
},
|
|
1052
|
-
{
|
|
1053
|
-
"action": "shell",
|
|
1054
|
-
"resource": "git branch -vv",
|
|
1055
|
-
"effect": "allow"
|
|
1056
|
-
},
|
|
1057
|
-
{
|
|
1058
|
-
"action": "shell",
|
|
1059
|
-
"resource": "git branch -vv *",
|
|
1060
|
-
"effect": "allow"
|
|
1061
|
-
},
|
|
1062
|
-
{
|
|
1063
|
-
"action": "shell",
|
|
1064
|
-
"resource": "git branch --all",
|
|
1065
|
-
"effect": "allow"
|
|
1066
|
-
},
|
|
1067
|
-
{
|
|
1068
|
-
"action": "shell",
|
|
1069
|
-
"resource": "git branch --all *",
|
|
1070
|
-
"effect": "allow"
|
|
1071
|
-
},
|
|
1072
|
-
{
|
|
1073
|
-
"action": "shell",
|
|
1074
|
-
"resource": "git branch --remotes",
|
|
1075
|
-
"effect": "allow"
|
|
1076
|
-
},
|
|
1077
|
-
{
|
|
1078
|
-
"action": "shell",
|
|
1079
|
-
"resource": "git branch --remotes *",
|
|
1080
|
-
"effect": "allow"
|
|
1081
|
-
},
|
|
1082
|
-
{
|
|
1083
|
-
"action": "shell",
|
|
1084
|
-
"resource": "git branch --show-current",
|
|
1085
|
-
"effect": "allow"
|
|
1086
|
-
},
|
|
1087
|
-
{
|
|
1088
|
-
"action": "shell",
|
|
1089
|
-
"resource": "git branch --show-current *",
|
|
1090
|
-
"effect": "allow"
|
|
1091
|
-
},
|
|
1092
|
-
{
|
|
1093
|
-
"action": "shell",
|
|
1094
|
-
"resource": "git branch --contains",
|
|
1095
|
-
"effect": "allow"
|
|
1096
|
-
},
|
|
1097
|
-
{
|
|
1098
|
-
"action": "shell",
|
|
1099
|
-
"resource": "git branch --contains *",
|
|
1100
|
-
"effect": "allow"
|
|
1101
|
-
},
|
|
1102
|
-
{
|
|
1103
|
-
"action": "shell",
|
|
1104
|
-
"resource": "git tag --list",
|
|
1105
|
-
"effect": "allow"
|
|
1106
|
-
},
|
|
1107
|
-
{
|
|
1108
|
-
"action": "shell",
|
|
1109
|
-
"resource": "git tag --list *",
|
|
1110
|
-
"effect": "allow"
|
|
1111
|
-
},
|
|
1112
|
-
{
|
|
1113
|
-
"action": "shell",
|
|
1114
|
-
"resource": "git tag -l",
|
|
1115
|
-
"effect": "allow"
|
|
1116
|
-
},
|
|
1117
|
-
{
|
|
1118
|
-
"action": "shell",
|
|
1119
|
-
"resource": "git tag -l *",
|
|
1120
|
-
"effect": "allow"
|
|
1121
|
-
},
|
|
1122
|
-
{
|
|
1123
|
-
"action": "shell",
|
|
1124
|
-
"resource": "git tag -n",
|
|
1125
|
-
"effect": "allow"
|
|
1126
|
-
},
|
|
1127
|
-
{
|
|
1128
|
-
"action": "shell",
|
|
1129
|
-
"resource": "git tag -n *",
|
|
1130
|
-
"effect": "allow"
|
|
1131
|
-
},
|
|
1132
|
-
{
|
|
1133
|
-
"action": "shell",
|
|
1134
|
-
"resource": "git remote -v",
|
|
1135
|
-
"effect": "allow"
|
|
1136
|
-
},
|
|
1137
|
-
{
|
|
1138
|
-
"action": "shell",
|
|
1139
|
-
"resource": "git remote -v *",
|
|
1140
|
-
"effect": "allow"
|
|
1141
|
-
},
|
|
1142
|
-
{
|
|
1143
|
-
"action": "shell",
|
|
1144
|
-
"resource": "git remote --verbose",
|
|
1145
|
-
"effect": "allow"
|
|
1146
|
-
},
|
|
1147
|
-
{
|
|
1148
|
-
"action": "shell",
|
|
1149
|
-
"resource": "git remote --verbose *",
|
|
1150
|
-
"effect": "allow"
|
|
1151
|
-
},
|
|
1152
|
-
{
|
|
1153
|
-
"action": "shell",
|
|
1154
|
-
"resource": "git remote show",
|
|
1155
|
-
"effect": "allow"
|
|
1156
|
-
},
|
|
1157
|
-
{
|
|
1158
|
-
"action": "shell",
|
|
1159
|
-
"resource": "git remote show *",
|
|
1160
|
-
"effect": "allow"
|
|
1161
|
-
},
|
|
1162
|
-
{
|
|
1163
|
-
"action": "shell",
|
|
1164
|
-
"resource": "git remote get-url",
|
|
1165
|
-
"effect": "allow"
|
|
1166
|
-
},
|
|
1167
|
-
{
|
|
1168
|
-
"action": "shell",
|
|
1169
|
-
"resource": "git remote get-url *",
|
|
1170
|
-
"effect": "allow"
|
|
1171
|
-
},
|
|
1172
|
-
{
|
|
1173
|
-
"action": "shell",
|
|
1174
|
-
"resource": "git reflog show",
|
|
1175
|
-
"effect": "allow"
|
|
1176
|
-
},
|
|
1177
|
-
{
|
|
1178
|
-
"action": "shell",
|
|
1179
|
-
"resource": "git reflog show *",
|
|
1180
|
-
"effect": "allow"
|
|
1181
|
-
},
|
|
1182
|
-
{
|
|
1183
|
-
"action": "shell",
|
|
1184
|
-
"resource": "git stash list",
|
|
1185
|
-
"effect": "allow"
|
|
1186
|
-
},
|
|
1187
|
-
{
|
|
1188
|
-
"action": "shell",
|
|
1189
|
-
"resource": "git stash list *",
|
|
1190
|
-
"effect": "allow"
|
|
1191
|
-
},
|
|
1192
|
-
{
|
|
1193
|
-
"action": "shell",
|
|
1194
|
-
"resource": "git describe",
|
|
1195
|
-
"effect": "allow"
|
|
1196
|
-
},
|
|
1197
|
-
{
|
|
1198
|
-
"action": "shell",
|
|
1199
|
-
"resource": "git describe *",
|
|
1200
|
-
"effect": "allow"
|
|
1201
|
-
},
|
|
1202
|
-
{
|
|
1203
|
-
"action": "shell",
|
|
1204
|
-
"resource": "git worktree list",
|
|
1205
|
-
"effect": "allow"
|
|
1206
|
-
},
|
|
1207
|
-
{
|
|
1208
|
-
"action": "shell",
|
|
1209
|
-
"resource": "git worktree list *",
|
|
1210
|
-
"effect": "allow"
|
|
1211
|
-
},
|
|
1212
|
-
{
|
|
1213
|
-
"action": "shell",
|
|
1214
|
-
"resource": "git config --get",
|
|
1215
|
-
"effect": "allow"
|
|
1216
|
-
},
|
|
1217
|
-
{
|
|
1218
|
-
"action": "shell",
|
|
1219
|
-
"resource": "git config --get *",
|
|
1220
|
-
"effect": "allow"
|
|
1221
|
-
},
|
|
1222
|
-
{
|
|
1223
|
-
"action": "shell",
|
|
1224
|
-
"resource": "git config --get-regexp",
|
|
1225
|
-
"effect": "allow"
|
|
1226
|
-
},
|
|
1227
|
-
{
|
|
1228
|
-
"action": "shell",
|
|
1229
|
-
"resource": "git config --get-regexp *",
|
|
1230
|
-
"effect": "allow"
|
|
1231
|
-
},
|
|
1232
|
-
{
|
|
1233
|
-
"action": "shell",
|
|
1234
|
-
"resource": "git push --force*",
|
|
1235
|
-
"effect": "deny"
|
|
1236
|
-
},
|
|
1237
|
-
{
|
|
1238
|
-
"action": "shell",
|
|
1239
|
-
"resource": "git push -f*",
|
|
1240
|
-
"effect": "deny"
|
|
1241
|
-
},
|
|
1242
|
-
{
|
|
1243
|
-
"action": "shell",
|
|
1244
|
-
"resource": "git reset --hard*",
|
|
1245
|
-
"effect": "deny"
|
|
1246
|
-
},
|
|
1247
|
-
{
|
|
1248
|
-
"action": "shell",
|
|
1249
|
-
"resource": "git clean*",
|
|
1250
|
-
"effect": "deny"
|
|
1251
|
-
},
|
|
1252
|
-
{
|
|
1253
|
-
"action": "shell",
|
|
1254
|
-
"resource": "git filter-branch*",
|
|
1255
|
-
"effect": "deny"
|
|
1256
|
-
},
|
|
1257
|
-
{
|
|
1258
|
-
"action": "shell",
|
|
1259
|
-
"resource": "git filter-repo*",
|
|
1260
|
-
"effect": "deny"
|
|
1261
|
-
},
|
|
1262
|
-
{
|
|
1263
|
-
"action": "shell",
|
|
1264
|
-
"resource": "git rebase*",
|
|
1265
|
-
"effect": "deny"
|
|
1266
|
-
},
|
|
1267
|
-
{
|
|
1268
|
-
"action": "shell",
|
|
1269
|
-
"resource": "git checkout --*",
|
|
1270
|
-
"effect": "deny"
|
|
1271
|
-
},
|
|
1272
|
-
{
|
|
1273
|
-
"action": "shell",
|
|
1274
|
-
"resource": "git restore*",
|
|
1275
|
-
"effect": "deny"
|
|
1276
|
-
},
|
|
1277
|
-
{
|
|
1278
|
-
"action": "shell",
|
|
1279
|
-
"resource": "git branch -D*",
|
|
1280
|
-
"effect": "deny"
|
|
1281
|
-
},
|
|
1282
|
-
{
|
|
1283
|
-
"action": "shell",
|
|
1284
|
-
"resource": "git remote remove*",
|
|
1285
|
-
"effect": "deny"
|
|
1286
|
-
},
|
|
1287
|
-
{
|
|
1288
|
-
"action": "shell",
|
|
1289
|
-
"resource": "git remote set-url*",
|
|
1290
|
-
"effect": "deny"
|
|
1291
|
-
},
|
|
1292
|
-
{
|
|
1293
|
-
"action": "shell",
|
|
1294
|
-
"resource": "git remote add*",
|
|
1295
|
-
"effect": "deny"
|
|
1296
|
-
}
|
|
1297
|
-
]
|
|
1298
|
-
}
|