-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathgithub-cli-ro.yaml
More file actions
911 lines (901 loc) · 31.4 KB
/
Copy pathgithub-cli-ro.yaml
File metadata and controls
911 lines (901 loc) · 31.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
mcp:
description: |
GitHub CLI Toolkit providing a set of read-only commands for interacting with
GitHub repositories, issues, pull requests, and other GitHub resources.
These tools are safe and non-destructive, allowing users to query information
without making changes to repositories.
run:
shell: bash
tools:
- name: "gh_repo_view"
description: "Show detailed information about a GitHub repository"
requirements:
executables:
- gh
params:
repo:
type: string
description: "Repository name in the format owner/repo"
required: true
jq_filter:
type: string
description: "Optional JQ filter to extract specific fields from the JSON response"
constraints:
- "repo.size() > 0 && repo.size() <= 100" # Reasonable repo name length
- "repo.matches('^[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+$')" # Valid repo format (owner/repo)
- "!repo.contains(';')" # Prevent command injection
- "jq_filter == '' || jq_filter.size() <= 200" # Reasonable JQ filter length
- "!jq_filter.contains(';')" # Prevent command injection
- "!jq_filter.matches('.*[&|><`$].*')" # Block shell special characters
run:
timeout: "60s"
env:
- GITHUB_TOKEN
command: |
{{ if .jq_filter }}
gh repo view "{{ .repo }}" --json name,description,homepageUrl,url,defaultBranchRef,isPrivate,forkCount,stargazerCount,owner | jq '{{ .jq_filter }}'
{{ else }}
gh repo view "{{ .repo }}"
{{ end }}
output:
prefix: "Repository information for {{ .repo }}:"
runners:
- name: sandbox-exec
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: firejail
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: exec
requirements: {}
- name: "gh_raw_file"
description: "Fetch and display a raw file from a GitHub repository"
requirements:
executables:
- curl
params:
repo:
type: string
description: "Repository name in the format owner/repo"
required: true
filepath:
type: string
description: "Path to the file in the repository (e.g., README.md, src/main.go)"
required: true
ref:
type: string
description: "Git reference (branch, tag, or commit SHA). Defaults to 'main'"
default: "main"
constraints:
- "repo.size() > 0 && repo.size() <= 100" # Reasonable repo name length
- "repo.matches('^[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+$')" # Valid repo format (owner/repo)
- "!repo.contains(';')" # Prevent command injection
- "filepath.size() > 0 && filepath.size() <= 500" # Reasonable file path length
- "!filepath.contains('../')" # Prevent path traversal
- "!filepath.contains(';')" # Prevent command injection
- "!filepath.contains('|')" # Prevent command injection
- "!filepath.contains('`')" # Prevent command injection
- "!filepath.contains('$(')" # Prevent command substitution
- "filepath.matches('^[a-zA-Z0-9_./-]+$')" # Only safe path characters
- "ref.size() > 0 && ref.size() <= 100" # Reasonable ref length
- "!ref.contains(';')" # Prevent command injection
- "!ref.contains('|')" # Prevent command injection
- "!ref.contains('`')" # Prevent command injection
- "!ref.contains('$(')" # Prevent command substitution
- "ref.matches('^[a-zA-Z0-9_./-]+$')" # Valid git ref characters
run:
timeout: "60s"
env:
- GITHUB_TOKEN
command: |
curl -fsSL {{ if env "GITHUB_TOKEN" }}-H "Authorization: token {{ env "GITHUB_TOKEN" }}"{{ end }} "https://github.com/{{ .repo }}/raw/{{ .ref }}/{{ .filepath }}"
output:
prefix: "File {{ .filepath }} from {{ .repo }} (ref: {{ .ref }}):"
runners:
- name: sandbox-exec
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- name: firejail
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- name: exec
requirements: {}
- name: "gh_issue_list"
description: "List issues in a GitHub repository"
params:
repo:
type: string
description: "Repository name in the format owner/repo"
required: true
state:
type: string
description: "Issue state (open, closed, all)"
limit:
type: number
description: "Maximum number of issues to display"
label:
type: string
description: "Filter issues by label"
author:
type: string
description: "Filter issues by author"
assignee:
type: string
description: "Filter issues by assignee"
constraints:
- "repo.size() > 0 && repo.size() <= 100" # Reasonable repo name length
- "repo.matches('^[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+$')" # Valid repo format (owner/repo)
- "!repo.contains(';')" # Prevent command injection
- "state == '' || ['open', 'closed', 'all'].exists(s, s == state)" # Valid state values
- "int(limit) == 0 || (int(limit) > 0 && int(limit) <= 100)" # Reasonable limit
- "label == '' || label.size() <= 50" # Reasonable label length
- "!label.contains(';')" # Prevent command injection
- "author == '' || author.size() <= 50" # Reasonable author length
- "!author.contains(';')" # Prevent command injection
- "assignee == '' || assignee.size() <= 50" # Reasonable assignee length
- "!assignee.contains(';')" # Prevent command injection
run:
timeout: "60s"
env:
- GITHUB_TOKEN
command: |
ARGS=""
ARGS="$ARGS {{ if .state }}--state {{ .state }}{{ end }}"
ARGS="$ARGS {{ if .limit }}--limit {{ .limit }}{{ end }}"
ARGS="$ARGS {{ if .label }}--label {{ .label }}{{ end }}"
ARGS="$ARGS {{ if .author }}--author {{ .author }}{{ end }}"
ARGS="$ARGS {{ if .assignee }}--assignee {{ .assignee }}{{ end }}"
gh issue list --repo "{{ .repo }}" $ARGS
output:
prefix: "Issues for {{ .repo }}:"
runners:
- name: sandbox-exec
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: firejail
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: exec
requirements: {}
- name: "gh_issue_view"
description: "View a specific issue in a GitHub repository"
requirements:
executables:
- gh
params:
repo:
type: string
description: "Repository name in the format owner/repo"
required: true
issue_number:
type: number
description: "Issue number"
required: true
comments:
type: boolean
description: "Include comments in the output"
constraints:
- "repo.size() > 0 && repo.size() <= 100" # Reasonable repo name length
- "repo.matches('^[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+$')" # Valid repo format (owner/repo)
- "!repo.contains(';')" # Prevent command injection
- "int(issue_number) > 0" # Valid issue number
run:
timeout: "60s"
env:
- GITHUB_TOKEN
command: |
ARGS=""
ARGS="$ARGS {{ if .comments }}--comments{{ end }}"
gh issue view {{ .issue_number }} --repo "{{ .repo }}" $ARGS
output:
prefix: "Issue #{{ .issue_number }} in {{ .repo }}:"
runners:
- name: sandbox-exec
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: firejail
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: exec
requirements: {}
- name: "gh_pr_list"
description: "List pull requests in a GitHub repository"
requirements:
executables:
- gh
params:
repo:
type: string
description: "Repository name in the format owner/repo"
required: true
state:
type: string
description: "PR state (open, closed, merged, all)"
limit:
type: number
description: "Maximum number of PRs to display"
label:
type: string
description: "Filter PRs by label"
author:
type: string
description: "Filter PRs by author"
assignee:
type: string
description: "Filter PRs by assignee"
base:
type: string
description: "Filter PRs by base branch"
constraints:
- "repo.size() > 0 && repo.size() <= 100" # Reasonable repo name length
- "repo.matches('^[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+$')" # Valid repo format (owner/repo)
- "!repo.contains(';')" # Prevent command injection
- "state == '' || ['open', 'closed', 'merged', 'all'].exists(s, s == state)" # Valid state values
- "int(limit) == 0 || (int(limit) > 0 && int(limit) <= 100)" # Reasonable limit
- "label == '' || label.size() <= 50" # Reasonable label length
- "!label.contains(';')" # Prevent command injection
- "author == '' || author.size() <= 50" # Reasonable author length
- "!author.contains(';')" # Prevent command injection
- "assignee == '' || assignee.size() <= 50" # Reasonable assignee length
- "!assignee.contains(';')" # Prevent command injection
- "base == '' || base.size() <= 50" # Reasonable base branch length
- "!base.contains(';')" # Prevent command injection
run:
timeout: "60s"
env:
- GITHUB_TOKEN
command: |
ARGS=""
ARGS="$ARGS {{ if .state }}--state {{ .state }}{{ end }}"
ARGS="$ARGS {{ if .limit }}--limit {{ .limit }}{{ end }}"
ARGS="$ARGS {{ if .label }}--label {{ .label }}{{ end }}"
ARGS="$ARGS {{ if .author }}--author {{ .author }}{{ end }}"
ARGS="$ARGS {{ if .assignee }}--assignee {{ .assignee }}{{ end }}"
ARGS="$ARGS {{ if .base }}--base {{ .base }}{{ end }}"
gh pr list --repo "{{ .repo }}" $ARGS
output:
prefix: "Pull requests for {{ .repo }}:"
runners:
- name: sandbox-exec
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: firejail
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: exec
requirements: {}
- name: "gh_pr_view"
description: "View a specific pull request in a GitHub repository"
requirements:
executables:
- gh
params:
repo:
type: string
description: "Repository name in the format owner/repo"
required: true
pr_number:
type: number
description: "Pull request number"
required: true
comments:
type: boolean
description: "Include comments in the output"
constraints:
- "repo.size() > 0 && repo.size() <= 100" # Reasonable repo name length
- "repo.matches('^[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+$')" # Valid repo format (owner/repo)
- "!repo.contains(';')" # Prevent command injection
- "int(pr_number) > 0" # Valid PR number
run:
timeout: "60s"
env:
- GITHUB_TOKEN
command: |
ARGS=""
ARGS="$ARGS {{ if .comments }}--comments{{ end }}"
gh pr view {{ .pr_number }} --repo "{{ .repo }}" $ARGS
output:
prefix: "PR #{{ .pr_number }} in {{ .repo }}:"
runners:
- name: sandbox-exec
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: firejail
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: exec
requirements: {}
- name: "gh_release_list"
description: "List releases in a GitHub repository"
requirements:
executables:
- gh
params:
repo:
type: string
description: "Repository name in the format owner/repo"
required: true
limit:
type: number
description: "Maximum number of releases to display"
constraints:
- "repo.size() > 0 && repo.size() <= 100" # Reasonable repo name length
- "repo.matches('^[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+$')" # Valid repo format (owner/repo)
- "!repo.contains(';')" # Prevent command injection
- "int(limit) == 0 || (int(limit) > 0 && int(limit) <= 50)" # Reasonable limit
run:
timeout: "60s"
env:
- GITHUB_TOKEN
command: |
ARGS=""
ARGS="$ARGS {{ if .limit }}--limit {{ .limit }}{{ end }}"
gh release list --repo "{{ .repo }}" $ARGS
output:
prefix: "Releases for {{ .repo }}:"
runners:
- name: sandbox-exec
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: firejail
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: exec
requirements: {}
- name: "gh_release_view"
description: "View a specific release in a GitHub repository"
requirements:
executables:
- gh
params:
repo:
type: string
description: "Repository name in the format owner/repo"
required: true
tag:
type: string
description: "Release tag name"
required: true
constraints:
- "repo.size() > 0 && repo.size() <= 100" # Reasonable repo name length
- "repo.matches('^[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+$')" # Valid repo format (owner/repo)
- "!repo.contains(';')" # Prevent command injection
- "tag.size() > 0 && tag.size() <= 50" # Reasonable tag length
- "!tag.contains(';')" # Prevent command injection
- "tag.matches('^[a-zA-Z0-9_.-]+$')" # Valid tag characters
run:
timeout: "60s"
env:
- GITHUB_TOKEN
command: |
gh release view {{ .tag }} --repo "{{ .repo }}"
output:
prefix: "Release {{ .tag }} in {{ .repo }}:"
runners:
- name: sandbox-exec
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: firejail
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: exec
requirements: {}
- name: "gh_repo_list"
description: "List repositories for a user or organization"
requirements:
executables:
- gh
params:
owner:
type: string
description: "GitHub username or organization name"
required: true
limit:
type: number
description: "Maximum number of repositories to display"
visibility:
type: string
description: "Filter by visibility (public, private, internal)"
language:
type: string
description: "Filter by primary language"
constraints:
- "owner.size() > 0 && owner.size() <= 50" # Reasonable owner length
- "owner.matches('^[a-zA-Z0-9_.-]+$')" # Valid GitHub username characters
- "!owner.contains(';')" # Prevent command injection
- "int(limit) == 0 || (int(limit) > 0 && int(limit) <= 50)" # Reasonable limit
- "visibility == '' || ['public', 'private', 'internal'].exists(v, v == visibility)" # Valid visibility
- "language == '' || language.size() <= 30" # Reasonable language length
- "!language.contains(';')" # Prevent command injection
run:
timeout: "60s"
env:
- GITHUB_TOKEN
command: |
ARGS=""
ARGS="$ARGS {{ if .limit }}--limit {{ .limit }}{{ end }}"
ARGS="$ARGS {{ if .visibility }}--visibility {{ .visibility }}{{ end }}"
ARGS="$ARGS {{ if .language }}--language {{ .language }}{{ end }}"
gh repo list {{ .owner }} $ARGS
output:
prefix: "Repositories for {{ .owner }}:"
runners:
- name: sandbox-exec
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: firejail
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: exec
requirements: {}
- name: "gh_search_repos"
description: "Search for GitHub repositories"
requirements:
executables:
- gh
params:
query:
type: string
description: "Search query"
required: true
limit:
type: number
description: "Maximum number of results to display"
sort:
type: string
description: "Sort results by (stars, forks, updated)"
order:
type: string
description: "Sort order (asc, desc)"
constraints:
- "query.size() > 0 && query.size() <= 200" # Reasonable query length
- "!query.contains(';')" # Prevent command injection
- "int(limit) == 0 || (int(limit) > 0 && int(limit) <= 50)" # Reasonable limit
- "sort == '' || ['stars', 'forks', 'updated'].exists(s, s == sort)" # Valid sort options
- "order == '' || ['asc', 'desc'].exists(o, o == order)" # Valid order options
run:
timeout: "60s"
command: |
ARGS=""
ARGS="$ARGS {{ if .limit }}--limit {{ .limit }}{{ end }}"
ARGS="$ARGS {{ if .sort }}--sort {{ .sort }}{{ end }}"
ARGS="$ARGS {{ if .order }}--order {{ .order }}{{ end }}"
gh search repos "{{ .query }}" $ARGS
output:
prefix: "Repository search results for '{{ .query }}':"
runners:
- name: sandbox-exec
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: firejail
requirements:
os: linux
executables:
- firejail
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: exec
requirements: {}
- name: "gh_search_issues"
description: "Search for issues and pull requests"
requirements:
executables:
- gh
params:
query:
type: string
description: "Search query"
required: true
limit:
type: number
description: "Maximum number of results to display"
sort:
type: string
description: "Sort results by (comments, created, updated)"
order:
type: string
description: "Sort order (asc, desc)"
web:
type: boolean
description: "Show search results on the web instead"
constraints:
- "query.size() > 0 && query.size() <= 200" # Reasonable query length
- "!query.contains(';')" # Prevent command injection
- "int(limit) == 0 || (int(limit) > 0 && int(limit) <= 50)" # Reasonable limit
- "sort == '' || ['comments', 'created', 'updated'].exists(s, s == sort)" # Valid sort options
- "order == '' || ['asc', 'desc'].exists(o, o == order)" # Valid order options
run:
timeout: "60s"
env:
- GITHUB_TOKEN
command: |
ARGS=""
ARGS="$ARGS {{ if .limit }}--limit {{ .limit }}{{ end }}"
ARGS="$ARGS {{ if .sort }}--sort {{ .sort }}{{ end }}"
ARGS="$ARGS {{ if .order }}--order {{ .order }}{{ end }}"
ARGS="$ARGS {{ if .web }}--web{{ end }}"
gh search issues "{{ .query }}" $ARGS
output:
prefix: "Issue search results for '{{ .query }}':"
runners:
- name: sandbox-exec
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: firejail
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: exec
requirements: {}
- name: "gh_gist_list"
description: "List gists for a user"
requirements:
executables:
- gh
params:
username:
type: string
description: "GitHub username (leave empty for your own gists)"
limit:
type: number
description: "Maximum number of gists to display"
visibility:
type: string
description: "Filter by visibility (all, public, secret)"
constraints:
- "username.size() <= 50" # Reasonable username length
- "username == '' || username.matches('^[a-zA-Z0-9_.-]+$')" # Valid GitHub username characters
- "!username.contains(';')" # Prevent command injection
- "int(limit) == 0 || (int(limit) > 0 && int(limit) <= 50)" # Reasonable limit
- "visibility == '' || ['all', 'public', 'secret'].exists(v, v == visibility)" # Valid visibility
run:
timeout: "60s"
env:
- GITHUB_TOKEN
command: |
ARGS=""
ARGS="$ARGS {{ if .limit }}--limit {{ .limit }}{{ end }}"
ARGS="$ARGS {{ if .visibility }}--visibility {{ .visibility }}{{ end }}"
gh gist list {{ if .username }}--user {{ .username }}{{ end }} $ARGS
output:
prefix: "{{ if .username }}Gists for user {{ .username }}{{ else }}Your gists{{ end }}:"
runners:
- name: sandbox-exec
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: firejail
requirements:
os: linux
executables:
- firejail
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: exec
requirements: {}
- name: "gh_workflow_list"
description: "List workflows in a GitHub repository"
requirements:
executables:
- gh
params:
repo:
type: string
description: "Repository name in the format owner/repo"
required: true
constraints:
- "repo.size() > 0 && repo.size() <= 100" # Reasonable repo name length
- "repo.matches('^[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+$')" # Valid repo format (owner/repo)
- "!repo.contains(';')" # Prevent command injection
run:
timeout: "60s"
env:
- GITHUB_TOKEN
command: |
gh workflow list --repo "{{ .repo }}"
output:
prefix: "Workflows for {{ .repo }}:"
runners:
- name: sandbox-exec
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: firejail
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: exec
requirements: {}
- name: "gh_workflow_view"
description: "View a specific workflow in a GitHub repository"
requirements:
executables:
- gh
params:
repo:
type: string
description: "Repository name in the format owner/repo"
required: true
workflow:
type: string
description: "Workflow name or ID"
required: true
constraints:
- "repo.size() > 0 && repo.size() <= 100" # Reasonable repo name length
- "repo.matches('^[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+$')" # Valid repo format (owner/repo)
- "!repo.contains(';')" # Prevent command injection
- "workflow.size() > 0 && workflow.size() <= 100" # Reasonable workflow name/ID length
- "!workflow.contains(';')" # Prevent command injection
run:
timeout: "60s"
env:
- GITHUB_TOKEN
command: |
gh workflow view "{{ .workflow }}" --repo "{{ .repo }}"
output:
prefix: "Workflow {{ .workflow }} in {{ .repo }}:"
runners:
- name: sandbox-exec
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: firejail
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: exec
requirements: {}
- name: "gh_run_list"
description: "List workflow runs in a GitHub repository"
requirements:
executables:
- gh
params:
repo:
type: string
description: "Repository name in the format owner/repo"
required: true
workflow:
type: string
description: "Workflow name or ID"
status:
type: string
description: "Filter by status (success, failure, cancelled, skipped, in_progress)"
limit:
type: number
description: "Maximum number of runs to display"
branch:
type: string
description: "Filter by branch"
constraints:
- "repo.size() > 0 && repo.size() <= 100" # Reasonable repo name length
- "repo.matches('^[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+$')" # Valid repo format (owner/repo)
- "!repo.contains(';')" # Prevent command injection
- "workflow == '' || workflow.size() <= 100" # Reasonable workflow name/ID length
- "!workflow.contains(';')" # Prevent command injection
- "status == '' || ['success', 'failure', 'cancelled', 'skipped', 'in_progress'].exists(s, s == status)" # Valid status
- "int(limit) == 0 || (int(limit) > 0 && int(limit) <= 50)" # Reasonable limit
- "branch == '' || branch.size() <= 50" # Reasonable branch length
- "!branch.contains(';')" # Prevent command injection
run:
timeout: "60s"
env:
- GITHUB_TOKEN
command: |
ARGS=""
ARGS="$ARGS {{ if .workflow }}--workflow {{ .workflow }}{{ end }}"
ARGS="$ARGS {{ if .status }}--status {{ .status }}{{ end }}"
ARGS="$ARGS {{ if .limit }}--limit {{ .limit }}{{ end }}"
ARGS="$ARGS {{ if .branch }}--branch {{ .branch }}{{ end }}"
gh run list --repo "{{ .repo }}" $ARGS
output:
prefix: "Workflow runs for {{ .repo }}:"
runners:
- name: sandbox-exec
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: firejail
options:
allow_networking: true
allow_user_folders: false
allow_read_folders:
- /usr/bin
- /usr/local/bin
- /bin
- /etc
- '{{ env "HOME" }}/.config/gh'
- name: exec
requirements: {}