-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalog.json
More file actions
374 lines (374 loc) · 15.5 KB
/
Copy pathcatalog.json
File metadata and controls
374 lines (374 loc) · 15.5 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
{
"version": 1,
"updatedAt": "2026-03-16",
"categories": [
{ "id": "code-review", "displayName": "Code Review" },
{ "id": "issue-automation", "displayName": "Issue Automation" },
{ "id": "security", "displayName": "Security" },
{ "id": "release", "displayName": "Release Management" },
{ "id": "ci-automation", "displayName": "CI Automation" }
],
"workflows": [
{
"id": "claude-code-assistant",
"displayName": "Claude Code Assistant",
"description": "Invoke Claude via @claude mentions in issues and PR comments.",
"source": "anthropics/claude-code",
"workflow": "claude",
"provider": "claude",
"category": "code-review",
"tags": ["pr-review", "issue-help", "claude-code-action"],
"sourceUrl": "https://github.com/anthropics/claude-code/blob/main/.github/workflows/claude.yml",
"triggers": ["issue_comment", "pull_request_review_comment", "issues", "pull_request_review"],
"secrets": ["ANTHROPIC_API_KEY"],
"highlights": [
"Responds to @claude mentions in issues and PR comments",
"Uses anthropics/claude-code-action with Claude Sonnet",
"Read-only permissions by default"
],
"addedAt": "2026-03-13"
},
{
"id": "claude-code-issue-triage",
"displayName": "Claude Issue Triage",
"description": "Automatically triage and label new issues using Claude.",
"source": "anthropics/claude-code",
"workflow": "claude-issue-triage",
"provider": "claude",
"category": "issue-automation",
"tags": ["triage", "labeling", "issue-management"],
"sourceUrl": "https://github.com/anthropics/claude-code/blob/main/.github/workflows/claude-issue-triage.yml",
"triggers": ["issues", "issue_comment"],
"secrets": ["ANTHROPIC_API_KEY"],
"highlights": [
"Triages newly opened issues with Claude Opus",
"Uses anthropics/claude-code-action",
"Concurrency-safe with issue-level grouping"
],
"addedAt": "2026-03-13"
},
{
"id": "claude-code-dedupe-issues",
"displayName": "Claude Duplicate Issue Detector",
"description": "Detect and close duplicate issues using Claude.",
"source": "anthropics/claude-code",
"workflow": "claude-dedupe-issues",
"provider": "claude",
"category": "issue-automation",
"tags": ["deduplication", "issue-management", "cleanup"],
"sourceUrl": "https://github.com/anthropics/claude-code/blob/main/.github/workflows/claude-dedupe-issues.yml",
"triggers": ["issues"],
"secrets": ["ANTHROPIC_API_KEY"],
"highlights": [
"Identifies duplicate issues against existing open issues",
"Powered by Claude via claude-code-action",
"Helps keep the issue tracker clean"
],
"addedAt": "2026-03-13"
},
{
"id": "claude-code-issue-sweep",
"displayName": "Issue Lifecycle Sweep",
"description": "Scheduled sweep to enforce issue lifecycle timeouts.",
"source": "anthropics/claude-code",
"workflow": "sweep",
"provider": "none",
"category": "issue-automation",
"tags": ["stale", "cleanup", "scheduled"],
"sourceUrl": "https://github.com/anthropics/claude-code/blob/main/.github/workflows/sweep.yml",
"triggers": ["schedule", "workflow_dispatch"],
"secrets": [],
"highlights": [
"Runs on a cron schedule (twice daily)",
"Enforces lifecycle timeouts on stale issues",
"Uses Bun to run custom sweep script"
],
"addedAt": "2026-03-13"
},
{
"id": "claude-code-auto-close-duplicates",
"displayName": "Auto-Close Duplicate Issues",
"description": "Scheduled job to find and close duplicate issues.",
"source": "anthropics/claude-code",
"workflow": "auto-close-duplicates",
"provider": "none",
"category": "issue-automation",
"tags": ["deduplication", "scheduled", "cleanup"],
"sourceUrl": "https://github.com/anthropics/claude-code/blob/main/.github/workflows/auto-close-duplicates.yml",
"triggers": ["schedule", "workflow_dispatch"],
"secrets": [],
"highlights": [
"Runs daily to find and close duplicate issues",
"Uses Bun with a custom deduplication script",
"Fully automated with no AI provider required"
],
"addedAt": "2026-03-13"
},
{
"id": "codex-issue-labeler",
"displayName": "Codex Issue Labeler",
"description": "Automatically label new issues using OpenAI Codex.",
"source": "openai/codex",
"workflow": "issue-labeler",
"provider": "codex",
"category": "issue-automation",
"tags": ["labeling", "triage", "openai"],
"sourceUrl": "https://github.com/openai/codex/blob/main/.github/workflows/issue-labeler.yml",
"triggers": ["issues"],
"secrets": ["CODEX_OPENAI_API_KEY"],
"highlights": [
"Labels issues by type (bug, enhancement, documentation)",
"Sub-product classification (CLI, extension, web, iOS)",
"Uses openai/codex-action with structured label taxonomy"
],
"addedAt": "2026-03-13"
},
{
"id": "codex-issue-deduplicator",
"displayName": "Codex Issue Deduplicator",
"description": "Find and flag duplicate issues using OpenAI Codex.",
"source": "openai/codex",
"workflow": "issue-deduplicator",
"provider": "codex",
"category": "issue-automation",
"tags": ["deduplication", "openai", "issue-management"],
"sourceUrl": "https://github.com/openai/codex/blob/main/.github/workflows/issue-deduplicator.yml",
"triggers": ["issues"],
"secrets": ["CODEX_OPENAI_API_KEY"],
"highlights": [
"Compares new issues against all existing issues",
"Uses openai/codex-action for semantic matching",
"Multi-step pipeline: gather, normalize, deduplicate"
],
"addedAt": "2026-03-13"
},
{
"id": "codex-close-stale-prs",
"displayName": "Close Stale Contributor PRs",
"description": "Automatically close inactive contributor pull requests.",
"source": "openai/codex",
"workflow": "close-stale-contributor-prs",
"provider": "none",
"category": "ci-automation",
"tags": ["stale", "pull-requests", "cleanup"],
"sourceUrl": "https://github.com/openai/codex/blob/main/.github/workflows/close-stale-contributor-prs.yml",
"triggers": ["schedule", "workflow_dispatch"],
"secrets": [],
"highlights": [
"Closes PRs inactive for 14+ days from external contributors",
"Runs daily on a cron schedule",
"Uses actions/github-script for GitHub API calls"
],
"addedAt": "2026-03-13"
},
{
"id": "gemini-dispatch",
"displayName": "Gemini CLI Dispatch",
"description": "Route @gemini-cli mentions to review, triage, or code fix workflows.",
"source": "google-github-actions/run-gemini-cli",
"workflow": "gemini-dispatch",
"provider": "gemini",
"category": "ci-automation",
"tags": ["dispatch", "gemini-cli", "routing"],
"sourceUrl": "https://github.com/google-github-actions/run-gemini-cli/blob/main/.github/workflows/gemini-dispatch.yml",
"triggers": ["pull_request_review_comment", "pull_request_review", "pull_request", "issues", "issue_comment"],
"secrets": ["APP_PRIVATE_KEY"],
"highlights": [
"Central dispatcher for all Gemini CLI workflows",
"Routes @gemini-cli mentions to specialized sub-workflows",
"Permission-gated to OWNER/MEMBER/COLLABORATOR"
],
"addedAt": "2026-03-13"
},
{
"id": "gemini-pr-review",
"displayName": "Gemini PR Review",
"description": "AI-powered pull request review using Gemini CLI.",
"source": "google-github-actions/run-gemini-cli",
"workflow": "gemini-review",
"provider": "gemini",
"category": "code-review",
"tags": ["pr-review", "gemini-cli", "google"],
"sourceUrl": "https://github.com/google-github-actions/run-gemini-cli/blob/main/.github/workflows/gemini-review.yml",
"triggers": ["workflow_call"],
"secrets": ["APP_PRIVATE_KEY"],
"highlights": [
"Reviews pull requests using google-github-actions/run-gemini-cli",
"Supports optional GitHub App identity token",
"Callable as a reusable workflow"
],
"addedAt": "2026-03-13"
},
{
"id": "gemini-issue-triage",
"displayName": "Gemini Issue Triage",
"description": "Triage and label issues using Gemini CLI.",
"source": "google-github-actions/run-gemini-cli",
"workflow": "gemini-triage",
"provider": "gemini",
"category": "issue-automation",
"tags": ["triage", "labeling", "gemini-cli"],
"sourceUrl": "https://github.com/google-github-actions/run-gemini-cli/blob/main/.github/workflows/gemini-triage.yml",
"triggers": ["workflow_call"],
"secrets": ["APP_PRIVATE_KEY"],
"highlights": [
"Labels issues using Gemini CLI with repo label taxonomy",
"Callable as a reusable workflow from gemini-dispatch",
"Reads all repo labels dynamically"
],
"addedAt": "2026-03-13"
},
{
"id": "gemini-issue-fixer",
"displayName": "Gemini Issue Fixer",
"description": "Automatically create PRs to fix issues using Gemini CLI.",
"source": "google-github-actions/run-gemini-cli",
"workflow": "gemini-issue-fixer",
"provider": "gemini",
"category": "issue-automation",
"tags": ["auto-fix", "gemini-cli", "pr-creation"],
"sourceUrl": "https://github.com/google-github-actions/run-gemini-cli/blob/main/.github/workflows/gemini-issue-fixer.yml",
"triggers": ["workflow_call"],
"secrets": ["APP_PRIVATE_KEY"],
"highlights": [
"Creates pull requests to fix issues using Gemini CLI",
"Writes code, commits, and opens PRs automatically",
"Callable as a reusable workflow with 30-minute timeout"
],
"addedAt": "2026-03-13"
},
{
"id": "gemini-scheduled-triage",
"displayName": "Gemini Scheduled Issue Triage",
"description": "Hourly scheduled triage for unlabeled issues using Gemini CLI.",
"source": "google-github-actions/run-gemini-cli",
"workflow": "gemini-scheduled-triage",
"provider": "gemini",
"category": "issue-automation",
"tags": ["triage", "scheduled", "gemini-cli"],
"sourceUrl": "https://github.com/google-github-actions/run-gemini-cli/blob/main/.github/workflows/gemini-scheduled-triage.yml",
"triggers": ["schedule", "workflow_dispatch"],
"secrets": ["APP_PRIVATE_KEY"],
"highlights": [
"Runs hourly to triage unlabeled issues",
"Batch-processes issues missed by event-based triage",
"Uses Gemini CLI with Google Cloud identity tokens"
],
"addedAt": "2026-03-13"
},
{
"id": "gemini-invoke",
"displayName": "Gemini Free-Form Invoke",
"description": "Run arbitrary Gemini CLI commands via @gemini-cli mentions.",
"source": "google-github-actions/run-gemini-cli",
"workflow": "gemini-invoke",
"provider": "gemini",
"category": "ci-automation",
"tags": ["gemini-cli", "free-form", "agent"],
"sourceUrl": "https://github.com/google-github-actions/run-gemini-cli/blob/main/.github/workflows/gemini-invoke.yml",
"triggers": ["workflow_call"],
"secrets": ["APP_PRIVATE_KEY", "GEMINI_API_KEY"],
"highlights": [
"Handles free-form @gemini-cli requests",
"Called from gemini-dispatch as a reusable workflow",
"Supports MCP servers and customizable settings"
],
"addedAt": "2026-03-16"
},
{
"id": "gemini-plan-execute",
"displayName": "Gemini Plan & Execute",
"description": "Plan and execute code changes with Gemini CLI.",
"source": "google-github-actions/run-gemini-cli",
"workflow": "gemini-plan-execute",
"provider": "gemini",
"category": "ci-automation",
"tags": ["gemini-cli", "code-generation", "plan-execute"],
"sourceUrl": "https://github.com/google-github-actions/run-gemini-cli/blob/main/.github/workflows/gemini-plan-execute.yml",
"triggers": ["workflow_call"],
"secrets": ["APP_PRIVATE_KEY", "GEMINI_API_KEY"],
"highlights": [
"Plans and executes code changes via @gemini-cli /approve",
"Write permissions to create branches and commits",
"30-minute timeout with concurrency control"
],
"addedAt": "2026-03-16"
},
{
"id": "copilot-vscode",
"displayName": "Copilot Setup (VS Code)",
"description": "GitHub Copilot coding agent environment setup for VS Code.",
"source": "microsoft/vscode",
"workflow": "copilot-setup-steps",
"provider": "copilot",
"category": "ci-automation",
"tags": ["copilot", "setup", "vscode", "microsoft"],
"sourceUrl": "https://github.com/microsoft/vscode/blob/main/.github/workflows/copilot-setup-steps.yml",
"triggers": ["workflow_dispatch"],
"secrets": [],
"highlights": [
"Full VS Code dev environment setup for Copilot agent",
"Node.js, Electron, Playwright, system dependencies",
"From microsoft/vscode (182k stars)"
],
"addedAt": "2026-03-16"
},
{
"id": "copilot-typescript",
"displayName": "Copilot Setup (TypeScript)",
"description": "GitHub Copilot coding agent setup for the TypeScript compiler.",
"source": "microsoft/TypeScript",
"workflow": "copilot-setup-steps",
"provider": "copilot",
"category": "ci-automation",
"tags": ["copilot", "setup", "typescript", "microsoft"],
"sourceUrl": "https://github.com/microsoft/TypeScript/blob/main/.github/workflows/copilot-setup-steps.yml",
"triggers": ["workflow_dispatch"],
"secrets": [],
"highlights": [
"Minimal Copilot setup for TypeScript compiler repo",
"Node.js + npm ci + dprint cache warmup",
"From microsoft/TypeScript (108k stars)"
],
"addedAt": "2026-03-16"
},
{
"id": "copilot-playwright",
"displayName": "Copilot Setup (Playwright)",
"description": "GitHub Copilot coding agent setup for Playwright.",
"source": "microsoft/playwright",
"workflow": "copilot-setup-steps",
"provider": "copilot",
"category": "ci-automation",
"tags": ["copilot", "setup", "playwright", "microsoft"],
"sourceUrl": "https://github.com/microsoft/playwright/blob/main/.github/workflows/copilot-setup-steps.yml",
"triggers": ["workflow_dispatch"],
"secrets": [],
"highlights": [
"Sets up Node.js, builds Playwright, installs browser binaries",
"Prepares full test environment for Copilot agent",
"From microsoft/playwright (84k stars)"
],
"addedAt": "2026-03-16"
},
{
"id": "superset-claude-assistant",
"displayName": "Claude PR Assistant (Superset)",
"description": "Claude assistant for PR comments in Apache Superset.",
"source": "apache/superset",
"workflow": "claude",
"provider": "claude",
"category": "code-review",
"tags": ["pr-review", "claude-code-action", "access-control"],
"sourceUrl": "https://github.com/apache/superset/blob/main/.github/workflows/claude.yml",
"triggers": ["issue_comment", "pull_request_review_comment"],
"secrets": ["ANTHROPIC_API_KEY"],
"highlights": [
"Responds to @claude mentions in PR comments",
"Allowlist-gated to specific maintainers",
"Denies access with a friendly comment for non-authorized users"
],
"addedAt": "2026-03-13"
}
]
}