rhachet-roles-ehmpathy 1.13.13 → 1.14.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.
|
@@ -41,7 +41,59 @@
|
|
|
41
41
|
// test runners - should use npm run test:* scripts instead
|
|
42
42
|
// direct invocation bypasses project test configuration
|
|
43
43
|
"Bash(npx biome:*)",
|
|
44
|
-
"Bash(npx jest:*)"
|
|
44
|
+
"Bash(npx jest:*)",
|
|
45
|
+
|
|
46
|
+
// github cli write operations - require explicit user approval
|
|
47
|
+
// pr mutations
|
|
48
|
+
"Bash(gh pr create:*)",
|
|
49
|
+
"Bash(gh pr merge:*)",
|
|
50
|
+
"Bash(gh pr close:*)",
|
|
51
|
+
"Bash(gh pr edit:*)",
|
|
52
|
+
"Bash(gh pr review:*)",
|
|
53
|
+
"Bash(gh pr comment:*)",
|
|
54
|
+
"Bash(gh pr reopen:*)",
|
|
55
|
+
// issue mutations
|
|
56
|
+
"Bash(gh issue create:*)",
|
|
57
|
+
"Bash(gh issue close:*)",
|
|
58
|
+
"Bash(gh issue edit:*)",
|
|
59
|
+
"Bash(gh issue comment:*)",
|
|
60
|
+
"Bash(gh issue reopen:*)",
|
|
61
|
+
// repo mutations
|
|
62
|
+
"Bash(gh repo create:*)",
|
|
63
|
+
"Bash(gh repo delete:*)",
|
|
64
|
+
"Bash(gh repo fork:*)",
|
|
65
|
+
"Bash(gh repo edit:*)",
|
|
66
|
+
// release mutations
|
|
67
|
+
"Bash(gh release create:*)",
|
|
68
|
+
"Bash(gh release delete:*)",
|
|
69
|
+
"Bash(gh release edit:*)",
|
|
70
|
+
// workflow/run mutations
|
|
71
|
+
"Bash(gh run cancel:*)",
|
|
72
|
+
"Bash(gh run rerun:*)",
|
|
73
|
+
"Bash(gh workflow disable:*)",
|
|
74
|
+
"Bash(gh workflow enable:*)",
|
|
75
|
+
"Bash(gh workflow run:*)",
|
|
76
|
+
// gist mutations
|
|
77
|
+
"Bash(gh gist create:*)",
|
|
78
|
+
"Bash(gh gist delete:*)",
|
|
79
|
+
"Bash(gh gist edit:*)",
|
|
80
|
+
// label mutations
|
|
81
|
+
"Bash(gh label create:*)",
|
|
82
|
+
"Bash(gh label delete:*)",
|
|
83
|
+
"Bash(gh label edit:*)",
|
|
84
|
+
// project mutations
|
|
85
|
+
"Bash(gh project create:*)",
|
|
86
|
+
"Bash(gh project delete:*)",
|
|
87
|
+
"Bash(gh project edit:*)",
|
|
88
|
+
// api write methods - can mutate anything
|
|
89
|
+
"Bash(gh api -X POST:*)",
|
|
90
|
+
"Bash(gh api -X PUT:*)",
|
|
91
|
+
"Bash(gh api -X PATCH:*)",
|
|
92
|
+
"Bash(gh api -X DELETE:*)",
|
|
93
|
+
"Bash(gh api --method POST:*)",
|
|
94
|
+
"Bash(gh api --method PUT:*)",
|
|
95
|
+
"Bash(gh api --method PATCH:*)",
|
|
96
|
+
"Bash(gh api --method DELETE:*)"
|
|
45
97
|
],
|
|
46
98
|
|
|
47
99
|
// commands that require explicit user approval each time
|
|
@@ -126,8 +178,37 @@
|
|
|
126
178
|
"Bash(npm run fix:lint:*)",
|
|
127
179
|
|
|
128
180
|
// github cli read operations
|
|
129
|
-
|
|
181
|
+
// pr reads
|
|
182
|
+
"Bash(gh pr list:*)",
|
|
183
|
+
"Bash(gh pr view:*)",
|
|
130
184
|
"Bash(gh pr status:*)",
|
|
185
|
+
"Bash(gh pr checks:*)",
|
|
186
|
+
"Bash(gh pr diff:*)",
|
|
187
|
+
// issue reads
|
|
188
|
+
"Bash(gh issue list:*)",
|
|
189
|
+
"Bash(gh issue view:*)",
|
|
190
|
+
"Bash(gh issue status:*)",
|
|
191
|
+
// repo reads
|
|
192
|
+
"Bash(gh repo list:*)",
|
|
193
|
+
"Bash(gh repo view:*)",
|
|
194
|
+
// run/workflow reads
|
|
195
|
+
"Bash(gh run list:*)",
|
|
196
|
+
"Bash(gh run view:*)",
|
|
197
|
+
"Bash(gh run watch:*)",
|
|
198
|
+
"Bash(gh workflow list:*)",
|
|
199
|
+
"Bash(gh workflow view:*)",
|
|
200
|
+
// release reads
|
|
201
|
+
"Bash(gh release list:*)",
|
|
202
|
+
"Bash(gh release view:*)",
|
|
203
|
+
// search (all read-only)
|
|
204
|
+
"Bash(gh search code:*)",
|
|
205
|
+
"Bash(gh search repos:*)",
|
|
206
|
+
"Bash(gh search issues:*)",
|
|
207
|
+
"Bash(gh search prs:*)",
|
|
208
|
+
"Bash(gh search commits:*)",
|
|
209
|
+
// api read operations (explicit GET for safe suffix matching)
|
|
210
|
+
"Bash(gh api -X GET:*)",
|
|
211
|
+
"Bash(gh api --method GET:*)",
|
|
131
212
|
|
|
132
213
|
// skill sourcing
|
|
133
214
|
"Bash(source .agent/repo=.this/skills/*)"
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "rhachet-roles-ehmpathy",
|
|
3
3
|
"author": "ehmpathy",
|
|
4
4
|
"description": "empathetic software construction roles and skills, via rhachet",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.14.0",
|
|
6
6
|
"repository": "ehmpathy/rhachet-roles-ehmpathy",
|
|
7
7
|
"homepage": "https://github.com/ehmpathy/rhachet-roles-ehmpathy",
|
|
8
8
|
"keywords": [
|