@nail00749/agent-gvozd 0.1.2 → 0.1.4

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.
@@ -10,41 +10,955 @@
10
10
  "skills": [],
11
11
  "mcp": [],
12
12
  "permissions": [
13
- { "action": "*", "resource": "*", "effect": "deny" },
14
- { "action": "read", "resource": "*", "effect": "allow" },
15
- { "action": "glob", "resource": "*", "effect": "allow" },
16
- { "action": "grep", "resource": "*", "effect": "allow" },
17
- { "action": "shell", "resource": "git *", "effect": "ask" },
18
- { "action": "shell", "resource": "GIT_OPTIONAL_LOCKS=0 git *", "effect": "ask" },
19
- { "action": "shell", "resource": "git status", "effect": "allow" },
20
- { "action": "shell", "resource": "git status --short", "effect": "allow" },
21
- { "action": "shell", "resource": "git status --short --branch", "effect": "allow" },
22
- { "action": "shell", "resource": "git status --porcelain=v1 --branch", "effect": "allow" },
23
- { "action": "shell", "resource": "git rev-parse --show-toplevel", "effect": "allow" },
24
- { "action": "shell", "resource": "git rev-parse --git-dir", "effect": "allow" },
25
- { "action": "shell", "resource": "git remote -v", "effect": "allow" },
26
- { "action": "shell", "resource": "git branch --show-current", "effect": "allow" },
27
- { "action": "shell", "resource": "git stash list", "effect": "allow" },
28
- { "action": "shell", "resource": "GIT_OPTIONAL_LOCKS=0 git status", "effect": "allow" },
29
- { "action": "shell", "resource": "GIT_OPTIONAL_LOCKS=0 git status --short", "effect": "allow" },
30
- { "action": "shell", "resource": "GIT_OPTIONAL_LOCKS=0 git status --short --branch", "effect": "allow" },
31
- { "action": "shell", "resource": "GIT_OPTIONAL_LOCKS=0 git status --porcelain=v1 --branch", "effect": "allow" },
32
- { "action": "shell", "resource": "GIT_OPTIONAL_LOCKS=0 git rev-parse --show-toplevel", "effect": "allow" },
33
- { "action": "shell", "resource": "GIT_OPTIONAL_LOCKS=0 git rev-parse --git-dir", "effect": "allow" },
34
- { "action": "shell", "resource": "GIT_OPTIONAL_LOCKS=0 git remote -v", "effect": "allow" },
35
- { "action": "shell", "resource": "GIT_OPTIONAL_LOCKS=0 git branch --show-current", "effect": "allow" },
36
- { "action": "shell", "resource": "GIT_OPTIONAL_LOCKS=0 git stash list", "effect": "allow" },
37
- { "action": "gitlab_*", "resource": "*", "effect": "ask" },
38
- { "action": "gitlab_get_*", "resource": "*", "effect": "allow" },
39
- { "action": "gitlab_list_*", "resource": "*", "effect": "allow" },
40
- { "action": "gitlab_search_*", "resource": "*", "effect": "allow" },
41
- { "action": "gitlab_my_issues", "resource": "*", "effect": "allow" },
42
- { "action": "gitlab_mr_discussions", "resource": "*", "effect": "allow" },
43
- { "action": "gitlab_whoami", "resource": "*", "effect": "allow" },
44
- { "action": "gitlab_health_check", "resource": "*", "effect": "allow" },
45
- { "action": "gitlab_get_project_variable", "resource": "*", "effect": "deny" },
46
- { "action": "gitlab_get_group_variable", "resource": "*", "effect": "deny" },
47
- { "action": "gitlab_list_project_variables", "resource": "*", "effect": "deny" },
48
- { "action": "gitlab_list_group_variables", "resource": "*", "effect": "deny" }
13
+ {
14
+ "action": "*",
15
+ "resource": "*",
16
+ "effect": "deny"
17
+ },
18
+ {
19
+ "action": "read",
20
+ "resource": "*",
21
+ "effect": "allow"
22
+ },
23
+ {
24
+ "action": "glob",
25
+ "resource": "*",
26
+ "effect": "allow"
27
+ },
28
+ {
29
+ "action": "grep",
30
+ "resource": "*",
31
+ "effect": "allow"
32
+ },
33
+ {
34
+ "action": "shell",
35
+ "resource": "git add",
36
+ "effect": "ask"
37
+ },
38
+ {
39
+ "action": "shell",
40
+ "resource": "git add *",
41
+ "effect": "ask"
42
+ },
43
+ {
44
+ "action": "shell",
45
+ "resource": "git rm --cached",
46
+ "effect": "ask"
47
+ },
48
+ {
49
+ "action": "shell",
50
+ "resource": "git rm --cached *",
51
+ "effect": "ask"
52
+ },
53
+ {
54
+ "action": "shell",
55
+ "resource": "git commit",
56
+ "effect": "ask"
57
+ },
58
+ {
59
+ "action": "shell",
60
+ "resource": "git commit *",
61
+ "effect": "ask"
62
+ },
63
+ {
64
+ "action": "shell",
65
+ "resource": "git merge --ff-only",
66
+ "effect": "ask"
67
+ },
68
+ {
69
+ "action": "shell",
70
+ "resource": "git merge --ff-only *",
71
+ "effect": "ask"
72
+ },
73
+ {
74
+ "action": "shell",
75
+ "resource": "git merge --no-ff",
76
+ "effect": "ask"
77
+ },
78
+ {
79
+ "action": "shell",
80
+ "resource": "git merge --no-ff *",
81
+ "effect": "ask"
82
+ },
83
+ {
84
+ "action": "shell",
85
+ "resource": "git push",
86
+ "effect": "ask"
87
+ },
88
+ {
89
+ "action": "shell",
90
+ "resource": "git push *",
91
+ "effect": "ask"
92
+ },
93
+ {
94
+ "action": "shell",
95
+ "resource": "git fetch",
96
+ "effect": "ask"
97
+ },
98
+ {
99
+ "action": "shell",
100
+ "resource": "git fetch *",
101
+ "effect": "ask"
102
+ },
103
+ {
104
+ "action": "shell",
105
+ "resource": "git pull --ff-only",
106
+ "effect": "ask"
107
+ },
108
+ {
109
+ "action": "shell",
110
+ "resource": "git pull --ff-only *",
111
+ "effect": "ask"
112
+ },
113
+ {
114
+ "action": "shell",
115
+ "resource": "git stash",
116
+ "effect": "ask"
117
+ },
118
+ {
119
+ "action": "shell",
120
+ "resource": "git stash *",
121
+ "effect": "ask"
122
+ },
123
+ {
124
+ "action": "shell",
125
+ "resource": "git cherry-pick",
126
+ "effect": "ask"
127
+ },
128
+ {
129
+ "action": "shell",
130
+ "resource": "git cherry-pick *",
131
+ "effect": "ask"
132
+ },
133
+ {
134
+ "action": "shell",
135
+ "resource": "git revert",
136
+ "effect": "ask"
137
+ },
138
+ {
139
+ "action": "shell",
140
+ "resource": "git revert *",
141
+ "effect": "ask"
142
+ },
143
+ {
144
+ "action": "shell",
145
+ "resource": "git switch",
146
+ "effect": "ask"
147
+ },
148
+ {
149
+ "action": "shell",
150
+ "resource": "git switch *",
151
+ "effect": "ask"
152
+ },
153
+ {
154
+ "action": "shell",
155
+ "resource": "git checkout -b",
156
+ "effect": "ask"
157
+ },
158
+ {
159
+ "action": "shell",
160
+ "resource": "git checkout -b *",
161
+ "effect": "ask"
162
+ },
163
+ {
164
+ "action": "shell",
165
+ "resource": "git worktree add",
166
+ "effect": "ask"
167
+ },
168
+ {
169
+ "action": "shell",
170
+ "resource": "git worktree add *",
171
+ "effect": "ask"
172
+ },
173
+ {
174
+ "action": "shell",
175
+ "resource": "git branch *",
176
+ "effect": "ask"
177
+ },
178
+ {
179
+ "action": "shell",
180
+ "resource": "git tag *",
181
+ "effect": "ask"
182
+ },
183
+ {
184
+ "action": "shell",
185
+ "resource": "git remote *",
186
+ "effect": "ask"
187
+ },
188
+ {
189
+ "action": "shell",
190
+ "resource": "git symbolic-ref *",
191
+ "effect": "ask"
192
+ },
193
+ {
194
+ "action": "shell",
195
+ "resource": "git reflog *",
196
+ "effect": "ask"
197
+ },
198
+ {
199
+ "action": "shell",
200
+ "resource": "pwd",
201
+ "effect": "allow"
202
+ },
203
+ {
204
+ "action": "shell",
205
+ "resource": "pwd *",
206
+ "effect": "allow"
207
+ },
208
+ {
209
+ "action": "shell",
210
+ "resource": "true",
211
+ "effect": "allow"
212
+ },
213
+ {
214
+ "action": "shell",
215
+ "resource": "true *",
216
+ "effect": "allow"
217
+ },
218
+ {
219
+ "action": "shell",
220
+ "resource": "ls",
221
+ "effect": "allow"
222
+ },
223
+ {
224
+ "action": "shell",
225
+ "resource": "ls *",
226
+ "effect": "allow"
227
+ },
228
+ {
229
+ "action": "shell",
230
+ "resource": "du",
231
+ "effect": "allow"
232
+ },
233
+ {
234
+ "action": "shell",
235
+ "resource": "du *",
236
+ "effect": "allow"
237
+ },
238
+ {
239
+ "action": "shell",
240
+ "resource": "stat",
241
+ "effect": "allow"
242
+ },
243
+ {
244
+ "action": "shell",
245
+ "resource": "stat *",
246
+ "effect": "allow"
247
+ },
248
+ {
249
+ "action": "shell",
250
+ "resource": "realpath",
251
+ "effect": "allow"
252
+ },
253
+ {
254
+ "action": "shell",
255
+ "resource": "realpath *",
256
+ "effect": "allow"
257
+ },
258
+ {
259
+ "action": "shell",
260
+ "resource": "uname",
261
+ "effect": "allow"
262
+ },
263
+ {
264
+ "action": "shell",
265
+ "resource": "uname *",
266
+ "effect": "allow"
267
+ },
268
+ {
269
+ "action": "shell",
270
+ "resource": "whoami",
271
+ "effect": "allow"
272
+ },
273
+ {
274
+ "action": "shell",
275
+ "resource": "whoami *",
276
+ "effect": "allow"
277
+ },
278
+ {
279
+ "action": "shell",
280
+ "resource": "cat",
281
+ "effect": "allow"
282
+ },
283
+ {
284
+ "action": "shell",
285
+ "resource": "cat *",
286
+ "effect": "allow"
287
+ },
288
+ {
289
+ "action": "shell",
290
+ "resource": "head",
291
+ "effect": "allow"
292
+ },
293
+ {
294
+ "action": "shell",
295
+ "resource": "head *",
296
+ "effect": "allow"
297
+ },
298
+ {
299
+ "action": "shell",
300
+ "resource": "tail",
301
+ "effect": "allow"
302
+ },
303
+ {
304
+ "action": "shell",
305
+ "resource": "tail *",
306
+ "effect": "allow"
307
+ },
308
+ {
309
+ "action": "shell",
310
+ "resource": "wc",
311
+ "effect": "allow"
312
+ },
313
+ {
314
+ "action": "shell",
315
+ "resource": "wc *",
316
+ "effect": "allow"
317
+ },
318
+ {
319
+ "action": "shell",
320
+ "resource": "sort",
321
+ "effect": "allow"
322
+ },
323
+ {
324
+ "action": "shell",
325
+ "resource": "sort *",
326
+ "effect": "allow"
327
+ },
328
+ {
329
+ "action": "shell",
330
+ "resource": "grep",
331
+ "effect": "allow"
332
+ },
333
+ {
334
+ "action": "shell",
335
+ "resource": "grep *",
336
+ "effect": "allow"
337
+ },
338
+ {
339
+ "action": "shell",
340
+ "resource": "rg",
341
+ "effect": "allow"
342
+ },
343
+ {
344
+ "action": "shell",
345
+ "resource": "rg *",
346
+ "effect": "allow"
347
+ },
348
+ {
349
+ "action": "shell",
350
+ "resource": "find",
351
+ "effect": "allow"
352
+ },
353
+ {
354
+ "action": "shell",
355
+ "resource": "find *",
356
+ "effect": "allow"
357
+ },
358
+ {
359
+ "action": "shell",
360
+ "resource": "diff",
361
+ "effect": "allow"
362
+ },
363
+ {
364
+ "action": "shell",
365
+ "resource": "diff *",
366
+ "effect": "allow"
367
+ },
368
+ {
369
+ "action": "shell",
370
+ "resource": "cmp",
371
+ "effect": "allow"
372
+ },
373
+ {
374
+ "action": "shell",
375
+ "resource": "cmp *",
376
+ "effect": "allow"
377
+ },
378
+ {
379
+ "action": "shell",
380
+ "resource": "shasum",
381
+ "effect": "allow"
382
+ },
383
+ {
384
+ "action": "shell",
385
+ "resource": "shasum *",
386
+ "effect": "allow"
387
+ },
388
+ {
389
+ "action": "shell",
390
+ "resource": "md5sum",
391
+ "effect": "allow"
392
+ },
393
+ {
394
+ "action": "shell",
395
+ "resource": "md5sum *",
396
+ "effect": "allow"
397
+ },
398
+ {
399
+ "action": "shell",
400
+ "resource": "git status",
401
+ "effect": "allow"
402
+ },
403
+ {
404
+ "action": "shell",
405
+ "resource": "git status *",
406
+ "effect": "allow"
407
+ },
408
+ {
409
+ "action": "shell",
410
+ "resource": "git status --short",
411
+ "effect": "allow"
412
+ },
413
+ {
414
+ "action": "shell",
415
+ "resource": "git status --short *",
416
+ "effect": "allow"
417
+ },
418
+ {
419
+ "action": "shell",
420
+ "resource": "git status --short --branch",
421
+ "effect": "allow"
422
+ },
423
+ {
424
+ "action": "shell",
425
+ "resource": "git status --short --branch *",
426
+ "effect": "allow"
427
+ },
428
+ {
429
+ "action": "shell",
430
+ "resource": "git status --porcelain",
431
+ "effect": "allow"
432
+ },
433
+ {
434
+ "action": "shell",
435
+ "resource": "git status --porcelain *",
436
+ "effect": "allow"
437
+ },
438
+ {
439
+ "action": "shell",
440
+ "resource": "git status --porcelain=v1 --branch",
441
+ "effect": "allow"
442
+ },
443
+ {
444
+ "action": "shell",
445
+ "resource": "git status --porcelain=v1 --branch *",
446
+ "effect": "allow"
447
+ },
448
+ {
449
+ "action": "shell",
450
+ "resource": "git diff",
451
+ "effect": "allow"
452
+ },
453
+ {
454
+ "action": "shell",
455
+ "resource": "git diff *",
456
+ "effect": "allow"
457
+ },
458
+ {
459
+ "action": "shell",
460
+ "resource": "git diff --stat",
461
+ "effect": "allow"
462
+ },
463
+ {
464
+ "action": "shell",
465
+ "resource": "git diff --stat *",
466
+ "effect": "allow"
467
+ },
468
+ {
469
+ "action": "shell",
470
+ "resource": "git diff --cached",
471
+ "effect": "allow"
472
+ },
473
+ {
474
+ "action": "shell",
475
+ "resource": "git diff --cached *",
476
+ "effect": "allow"
477
+ },
478
+ {
479
+ "action": "shell",
480
+ "resource": "git diff --check",
481
+ "effect": "allow"
482
+ },
483
+ {
484
+ "action": "shell",
485
+ "resource": "git diff --check *",
486
+ "effect": "allow"
487
+ },
488
+ {
489
+ "action": "shell",
490
+ "resource": "git log",
491
+ "effect": "allow"
492
+ },
493
+ {
494
+ "action": "shell",
495
+ "resource": "git log *",
496
+ "effect": "allow"
497
+ },
498
+ {
499
+ "action": "shell",
500
+ "resource": "git show",
501
+ "effect": "allow"
502
+ },
503
+ {
504
+ "action": "shell",
505
+ "resource": "git show *",
506
+ "effect": "allow"
507
+ },
508
+ {
509
+ "action": "shell",
510
+ "resource": "git rev-parse",
511
+ "effect": "allow"
512
+ },
513
+ {
514
+ "action": "shell",
515
+ "resource": "git rev-parse *",
516
+ "effect": "allow"
517
+ },
518
+ {
519
+ "action": "shell",
520
+ "resource": "git rev-list",
521
+ "effect": "allow"
522
+ },
523
+ {
524
+ "action": "shell",
525
+ "resource": "git rev-list *",
526
+ "effect": "allow"
527
+ },
528
+ {
529
+ "action": "shell",
530
+ "resource": "git show-ref",
531
+ "effect": "allow"
532
+ },
533
+ {
534
+ "action": "shell",
535
+ "resource": "git show-ref *",
536
+ "effect": "allow"
537
+ },
538
+ {
539
+ "action": "shell",
540
+ "resource": "git cat-file",
541
+ "effect": "allow"
542
+ },
543
+ {
544
+ "action": "shell",
545
+ "resource": "git cat-file *",
546
+ "effect": "allow"
547
+ },
548
+ {
549
+ "action": "shell",
550
+ "resource": "git symbolic-ref HEAD",
551
+ "effect": "allow"
552
+ },
553
+ {
554
+ "action": "shell",
555
+ "resource": "git symbolic-ref --short HEAD",
556
+ "effect": "allow"
557
+ },
558
+ {
559
+ "action": "shell",
560
+ "resource": "git ls-files",
561
+ "effect": "allow"
562
+ },
563
+ {
564
+ "action": "shell",
565
+ "resource": "git ls-files *",
566
+ "effect": "allow"
567
+ },
568
+ {
569
+ "action": "shell",
570
+ "resource": "git ls-remote",
571
+ "effect": "allow"
572
+ },
573
+ {
574
+ "action": "shell",
575
+ "resource": "git ls-remote *",
576
+ "effect": "allow"
577
+ },
578
+ {
579
+ "action": "shell",
580
+ "resource": "git grep",
581
+ "effect": "allow"
582
+ },
583
+ {
584
+ "action": "shell",
585
+ "resource": "git grep *",
586
+ "effect": "allow"
587
+ },
588
+ {
589
+ "action": "shell",
590
+ "resource": "git branch",
591
+ "effect": "allow"
592
+ },
593
+ {
594
+ "action": "shell",
595
+ "resource": "git tag",
596
+ "effect": "allow"
597
+ },
598
+ {
599
+ "action": "shell",
600
+ "resource": "git remote",
601
+ "effect": "allow"
602
+ },
603
+ {
604
+ "action": "shell",
605
+ "resource": "git reflog",
606
+ "effect": "allow"
607
+ },
608
+ {
609
+ "action": "shell",
610
+ "resource": "git branch --list",
611
+ "effect": "allow"
612
+ },
613
+ {
614
+ "action": "shell",
615
+ "resource": "git branch --list *",
616
+ "effect": "allow"
617
+ },
618
+ {
619
+ "action": "shell",
620
+ "resource": "git branch -l",
621
+ "effect": "allow"
622
+ },
623
+ {
624
+ "action": "shell",
625
+ "resource": "git branch -l *",
626
+ "effect": "allow"
627
+ },
628
+ {
629
+ "action": "shell",
630
+ "resource": "git branch -a",
631
+ "effect": "allow"
632
+ },
633
+ {
634
+ "action": "shell",
635
+ "resource": "git branch -a *",
636
+ "effect": "allow"
637
+ },
638
+ {
639
+ "action": "shell",
640
+ "resource": "git branch -r",
641
+ "effect": "allow"
642
+ },
643
+ {
644
+ "action": "shell",
645
+ "resource": "git branch -r *",
646
+ "effect": "allow"
647
+ },
648
+ {
649
+ "action": "shell",
650
+ "resource": "git branch -v",
651
+ "effect": "allow"
652
+ },
653
+ {
654
+ "action": "shell",
655
+ "resource": "git branch -v *",
656
+ "effect": "allow"
657
+ },
658
+ {
659
+ "action": "shell",
660
+ "resource": "git branch -vv",
661
+ "effect": "allow"
662
+ },
663
+ {
664
+ "action": "shell",
665
+ "resource": "git branch -vv *",
666
+ "effect": "allow"
667
+ },
668
+ {
669
+ "action": "shell",
670
+ "resource": "git branch --all",
671
+ "effect": "allow"
672
+ },
673
+ {
674
+ "action": "shell",
675
+ "resource": "git branch --all *",
676
+ "effect": "allow"
677
+ },
678
+ {
679
+ "action": "shell",
680
+ "resource": "git branch --remotes",
681
+ "effect": "allow"
682
+ },
683
+ {
684
+ "action": "shell",
685
+ "resource": "git branch --remotes *",
686
+ "effect": "allow"
687
+ },
688
+ {
689
+ "action": "shell",
690
+ "resource": "git branch --show-current",
691
+ "effect": "allow"
692
+ },
693
+ {
694
+ "action": "shell",
695
+ "resource": "git branch --show-current *",
696
+ "effect": "allow"
697
+ },
698
+ {
699
+ "action": "shell",
700
+ "resource": "git branch --contains",
701
+ "effect": "allow"
702
+ },
703
+ {
704
+ "action": "shell",
705
+ "resource": "git branch --contains *",
706
+ "effect": "allow"
707
+ },
708
+ {
709
+ "action": "shell",
710
+ "resource": "git tag --list",
711
+ "effect": "allow"
712
+ },
713
+ {
714
+ "action": "shell",
715
+ "resource": "git tag --list *",
716
+ "effect": "allow"
717
+ },
718
+ {
719
+ "action": "shell",
720
+ "resource": "git tag -l",
721
+ "effect": "allow"
722
+ },
723
+ {
724
+ "action": "shell",
725
+ "resource": "git tag -l *",
726
+ "effect": "allow"
727
+ },
728
+ {
729
+ "action": "shell",
730
+ "resource": "git tag -n",
731
+ "effect": "allow"
732
+ },
733
+ {
734
+ "action": "shell",
735
+ "resource": "git tag -n *",
736
+ "effect": "allow"
737
+ },
738
+ {
739
+ "action": "shell",
740
+ "resource": "git remote -v",
741
+ "effect": "allow"
742
+ },
743
+ {
744
+ "action": "shell",
745
+ "resource": "git remote -v *",
746
+ "effect": "allow"
747
+ },
748
+ {
749
+ "action": "shell",
750
+ "resource": "git remote --verbose",
751
+ "effect": "allow"
752
+ },
753
+ {
754
+ "action": "shell",
755
+ "resource": "git remote --verbose *",
756
+ "effect": "allow"
757
+ },
758
+ {
759
+ "action": "shell",
760
+ "resource": "git remote show",
761
+ "effect": "allow"
762
+ },
763
+ {
764
+ "action": "shell",
765
+ "resource": "git remote show *",
766
+ "effect": "allow"
767
+ },
768
+ {
769
+ "action": "shell",
770
+ "resource": "git remote get-url",
771
+ "effect": "allow"
772
+ },
773
+ {
774
+ "action": "shell",
775
+ "resource": "git remote get-url *",
776
+ "effect": "allow"
777
+ },
778
+ {
779
+ "action": "shell",
780
+ "resource": "git reflog show",
781
+ "effect": "allow"
782
+ },
783
+ {
784
+ "action": "shell",
785
+ "resource": "git reflog show *",
786
+ "effect": "allow"
787
+ },
788
+ {
789
+ "action": "shell",
790
+ "resource": "git stash list",
791
+ "effect": "allow"
792
+ },
793
+ {
794
+ "action": "shell",
795
+ "resource": "git stash list *",
796
+ "effect": "allow"
797
+ },
798
+ {
799
+ "action": "shell",
800
+ "resource": "git describe",
801
+ "effect": "allow"
802
+ },
803
+ {
804
+ "action": "shell",
805
+ "resource": "git describe *",
806
+ "effect": "allow"
807
+ },
808
+ {
809
+ "action": "shell",
810
+ "resource": "git worktree list",
811
+ "effect": "allow"
812
+ },
813
+ {
814
+ "action": "shell",
815
+ "resource": "git worktree list *",
816
+ "effect": "allow"
817
+ },
818
+ {
819
+ "action": "shell",
820
+ "resource": "git config --get",
821
+ "effect": "allow"
822
+ },
823
+ {
824
+ "action": "shell",
825
+ "resource": "git config --get *",
826
+ "effect": "allow"
827
+ },
828
+ {
829
+ "action": "shell",
830
+ "resource": "git config --get-regexp",
831
+ "effect": "allow"
832
+ },
833
+ {
834
+ "action": "shell",
835
+ "resource": "git config --get-regexp *",
836
+ "effect": "allow"
837
+ },
838
+ {
839
+ "action": "gitlab_*",
840
+ "resource": "*",
841
+ "effect": "ask"
842
+ },
843
+ {
844
+ "action": "gitlab_get_*",
845
+ "resource": "*",
846
+ "effect": "allow"
847
+ },
848
+ {
849
+ "action": "gitlab_list_*",
850
+ "resource": "*",
851
+ "effect": "allow"
852
+ },
853
+ {
854
+ "action": "gitlab_search_*",
855
+ "resource": "*",
856
+ "effect": "allow"
857
+ },
858
+ {
859
+ "action": "gitlab_my_issues",
860
+ "resource": "*",
861
+ "effect": "allow"
862
+ },
863
+ {
864
+ "action": "gitlab_mr_discussions",
865
+ "resource": "*",
866
+ "effect": "allow"
867
+ },
868
+ {
869
+ "action": "gitlab_whoami",
870
+ "resource": "*",
871
+ "effect": "allow"
872
+ },
873
+ {
874
+ "action": "gitlab_health_check",
875
+ "resource": "*",
876
+ "effect": "allow"
877
+ },
878
+ {
879
+ "action": "gitlab_get_project_variable",
880
+ "resource": "*",
881
+ "effect": "deny"
882
+ },
883
+ {
884
+ "action": "gitlab_get_group_variable",
885
+ "resource": "*",
886
+ "effect": "deny"
887
+ },
888
+ {
889
+ "action": "gitlab_list_project_variables",
890
+ "resource": "*",
891
+ "effect": "deny"
892
+ },
893
+ {
894
+ "action": "gitlab_list_group_variables",
895
+ "resource": "*",
896
+ "effect": "deny"
897
+ },
898
+ {
899
+ "action": "shell",
900
+ "resource": "git push --force*",
901
+ "effect": "deny"
902
+ },
903
+ {
904
+ "action": "shell",
905
+ "resource": "git push -f*",
906
+ "effect": "deny"
907
+ },
908
+ {
909
+ "action": "shell",
910
+ "resource": "git reset --hard*",
911
+ "effect": "deny"
912
+ },
913
+ {
914
+ "action": "shell",
915
+ "resource": "git clean*",
916
+ "effect": "deny"
917
+ },
918
+ {
919
+ "action": "shell",
920
+ "resource": "git filter-branch*",
921
+ "effect": "deny"
922
+ },
923
+ {
924
+ "action": "shell",
925
+ "resource": "git filter-repo*",
926
+ "effect": "deny"
927
+ },
928
+ {
929
+ "action": "shell",
930
+ "resource": "git rebase*",
931
+ "effect": "deny"
932
+ },
933
+ {
934
+ "action": "shell",
935
+ "resource": "git checkout --*",
936
+ "effect": "deny"
937
+ },
938
+ {
939
+ "action": "shell",
940
+ "resource": "git restore*",
941
+ "effect": "deny"
942
+ },
943
+ {
944
+ "action": "shell",
945
+ "resource": "git branch -D*",
946
+ "effect": "deny"
947
+ },
948
+ {
949
+ "action": "shell",
950
+ "resource": "git remote remove*",
951
+ "effect": "deny"
952
+ },
953
+ {
954
+ "action": "shell",
955
+ "resource": "git remote set-url*",
956
+ "effect": "deny"
957
+ },
958
+ {
959
+ "action": "shell",
960
+ "resource": "git remote add*",
961
+ "effect": "deny"
962
+ }
49
963
  ]
50
964
  }