@cubis/foundry 0.3.69 → 0.3.71
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/dist/cli/core.js +95 -2
- package/dist/cli/core.js.map +1 -1
- package/dist/cli/init/execute.js +6 -4
- package/dist/cli/init/execute.js.map +1 -1
- package/dist/cli/init/prompts.js +5 -0
- package/dist/cli/init/prompts.js.map +1 -1
- package/mcp/src/cbxConfig/index.ts +6 -1
- package/mcp/src/cbxConfig/serviceConfig.ts +38 -3
- package/mcp/src/cbxConfig/types.ts +6 -0
- package/mcp/src/gateway/config.ts +69 -8
- package/mcp/src/gateway/manager.ts +17 -6
- package/mcp/src/gateway/types.ts +1 -1
- package/mcp/src/server.ts +7 -3
- package/mcp/src/tools/playwrightGetStatus.ts +60 -0
- package/mcp/src/tools/registry.test.ts +26 -8
- package/mcp/src/tools/registry.ts +27 -1
- package/mcp/src/upstream/passthrough.ts +29 -5
- package/package.json +1 -1
- package/src/cli/core.ts +100 -5
- package/src/cli/init/execute.ts +14 -5
- package/src/cli/init/prompts.ts +5 -0
- package/src/cli/init/types.ts +1 -1
- package/workflows/powers/ask-questions-if-underspecified/SKILL.md +51 -3
- package/workflows/powers/behavioral-modes/SKILL.md +100 -9
- package/workflows/skills/agent-design/SKILL.md +198 -0
- package/workflows/skills/agent-design/references/clarification-patterns.md +153 -0
- package/workflows/skills/agent-design/references/skill-testing.md +164 -0
- package/workflows/skills/agent-design/references/workflow-patterns.md +226 -0
- package/workflows/skills/deep-research/SKILL.md +25 -20
- package/workflows/skills/deep-research/references/multi-round-research-loop.md +73 -8
- package/workflows/skills/frontend-design/SKILL.md +37 -32
- package/workflows/skills/frontend-design/commands/brand.md +167 -0
- package/workflows/skills/frontend-design/references/brand-presets.md +228 -0
- package/workflows/skills/generated/skill-audit.json +11 -2
- package/workflows/skills/generated/skill-catalog.json +842 -107
- package/workflows/skills/playwright-e2e/SKILL.md +21 -5
- package/workflows/skills/playwright-e2e/references/locator-trace-flake-checklist.md +28 -0
- package/workflows/skills/skills_index.json +803 -100
- package/workflows/workflows/agent-environment-setup/manifest.json +65 -9
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/backend-specialist.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/code-archaeologist.md +7 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/database-architect.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/debugger.md +7 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/devops-engineer.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/documentation-writer.md +4 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/frontend-specialist.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/game-developer.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/mobile-developer.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/orchestrator.md +8 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/penetration-tester.md +4 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/performance-optimizer.md +4 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/product-manager.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/project-planner.md +8 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/qa-automation-engineer.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/researcher.md +5 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/security-auditor.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/seo-specialist.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/sre-engineer.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/test-engineer.md +5 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/validator.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/vercel-expert.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/rules/GEMINI.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/backend-specialist.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/code-archaeologist.md +7 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/database-architect.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/debugger.md +7 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/devops-engineer.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/documentation-writer.md +4 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/frontend-specialist.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/game-developer.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/mobile-developer.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/orchestrator.md +8 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/penetration-tester.md +4 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/performance-optimizer.md +4 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/product-manager.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/project-planner.md +8 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/qa-automation-engineer.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/researcher.md +5 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/security-auditor.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/seo-specialist.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/sre-engineer.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/test-engineer.md +5 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/validator.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/vercel-expert.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/rules/CLAUDE.md +77 -63
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/agent-design/SKILL.md +198 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/agent-design/references/clarification-patterns.md +153 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/agent-design/references/skill-testing.md +164 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/agent-design/references/workflow-patterns.md +226 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/SKILL.md +25 -20
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/references/multi-round-research-loop.md +73 -8
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/frontend-design/SKILL.md +37 -32
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/frontend-design/commands/brand.md +167 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/frontend-design/references/brand-presets.md +228 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/playwright-e2e/SKILL.md +21 -5
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/playwright-e2e/references/locator-trace-flake-checklist.md +28 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/skills_index.json +803 -100
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/backend-specialist.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/code-archaeologist.md +7 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/database-architect.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/debugger.md +7 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/devops-engineer.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/documentation-writer.md +4 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/frontend-specialist.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/game-developer.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/mobile-developer.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/orchestrator.md +8 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/penetration-tester.md +4 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/performance-optimizer.md +4 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/product-manager.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/project-planner.md +8 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/qa-automation-engineer.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/researcher.md +5 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/security-auditor.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/seo-specialist.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/sre-engineer.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/test-engineer.md +5 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/validator.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/vercel-expert.md +1 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/rules/AGENTS.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/backend-specialist.md +5 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/code-archaeologist.md +5 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/database-architect.md +5 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/debugger.md +5 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/devops-engineer.md +5 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/documentation-writer.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/frontend-specialist.md +5 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/mobile-developer.md +5 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/orchestrator.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/penetration-tester.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/performance-optimizer.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/project-planner.md +6 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/researcher.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/security-auditor.md +5 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/sre-engineer.md +5 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/test-engineer.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/rules/copilot-instructions.md +87 -82
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/agent-design/SKILL.md +197 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/agent-design/references/clarification-patterns.md +153 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/agent-design/references/skill-testing.md +164 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/agent-design/references/workflow-patterns.md +226 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/SKILL.md +25 -20
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/references/multi-round-research-loop.md +73 -8
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/frontend-design/SKILL.md +37 -32
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/frontend-design/commands/brand.md +167 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/frontend-design/references/brand-presets.md +228 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/playwright-e2e/SKILL.md +21 -5
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/playwright-e2e/references/locator-trace-flake-checklist.md +28 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/skills_index.json +803 -100
- package/workflows/workflows/agent-environment-setup/shared/agents/backend-specialist.md +6 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/code-archaeologist.md +7 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/database-architect.md +6 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/debugger.md +7 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/devops-engineer.md +6 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/documentation-writer.md +4 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/frontend-specialist.md +6 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/game-developer.md +1 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/mobile-developer.md +6 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/orchestrator.md +8 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/penetration-tester.md +4 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/performance-optimizer.md +4 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/product-manager.md +1 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/project-planner.md +8 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/qa-automation-engineer.md +1 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/researcher.md +5 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/security-auditor.md +6 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/seo-specialist.md +1 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/sre-engineer.md +6 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/test-engineer.md +5 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/validator.md +1 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/vercel-expert.md +1 -0
- package/workflows/workflows/agent-environment-setup/shared/rules/STEERING.md +27 -4
- package/workflows/workflows/agent-environment-setup/shared/rules/overrides/antigravity.md +18 -3
- package/workflows/workflows/agent-environment-setup/shared/rules/overrides/claude.md +12 -4
- package/workflows/workflows/agent-environment-setup/shared/rules/overrides/codex.md +12 -2
- package/workflows/workflows/agent-environment-setup/shared/rules/overrides/copilot.md +13 -3
- package/workflows/skills/react-best-practices/docs/AGENTS.md +0 -2934
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/react-best-practices/docs/AGENTS.md +0 -2934
- package/workflows/workflows/agent-environment-setup/platforms/copilot/rules/AGENTS.md +0 -25
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/react-best-practices/docs/AGENTS.md +0 -2934
package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/skills_index.json
CHANGED
|
@@ -20,7 +20,10 @@
|
|
|
20
20
|
],
|
|
21
21
|
"path": ".github/skills/accessibility/SKILL.md",
|
|
22
22
|
"description": "Use when auditing, implementing, or reviewing web accessibility (WCAG, ARIA, keyboard navigation, screen reader support, and inclusive interaction patterns).",
|
|
23
|
-
"triggers": [
|
|
23
|
+
"triggers": [
|
|
24
|
+
"accessibility",
|
|
25
|
+
"workflow-specialists"
|
|
26
|
+
]
|
|
24
27
|
},
|
|
25
28
|
{
|
|
26
29
|
"id": "agentic-eval",
|
|
@@ -38,12 +41,21 @@
|
|
|
38
41
|
"maturity": "stable",
|
|
39
42
|
"tier": "system",
|
|
40
43
|
"tags": [
|
|
44
|
+
"agentic",
|
|
45
|
+
"agentic eval",
|
|
41
46
|
"agentic-eval",
|
|
42
|
-
"core-operating"
|
|
47
|
+
"core-operating",
|
|
48
|
+
"eval"
|
|
43
49
|
],
|
|
44
50
|
"path": ".github/skills/agentic-eval/SKILL.md",
|
|
45
51
|
"description": "Use when evaluating an agent, skill, workflow, or MCP server: rubric design, evaluator-optimizer loops, LLM-as-judge patterns, regression suites, or prototype-vs-production quality gaps.",
|
|
46
|
-
"triggers": [
|
|
52
|
+
"triggers": [
|
|
53
|
+
"agentic-eval",
|
|
54
|
+
"agentic eval",
|
|
55
|
+
"agentic",
|
|
56
|
+
"eval",
|
|
57
|
+
"core-operating"
|
|
58
|
+
]
|
|
47
59
|
},
|
|
48
60
|
{
|
|
49
61
|
"id": "api-designer",
|
|
@@ -61,12 +73,21 @@
|
|
|
61
73
|
"maturity": "stable",
|
|
62
74
|
"tier": "system",
|
|
63
75
|
"tags": [
|
|
76
|
+
"api",
|
|
77
|
+
"api designer",
|
|
64
78
|
"api-designer",
|
|
65
|
-
"core-operating"
|
|
79
|
+
"core-operating",
|
|
80
|
+
"designer"
|
|
66
81
|
],
|
|
67
82
|
"path": ".github/skills/api-designer/SKILL.md",
|
|
68
83
|
"description": "Use when defining or reviewing external API contracts, OpenAPI specifications, resource models, pagination, versioning, and error response standards. Do not use for pure database design or framework-only handler wiring.",
|
|
69
|
-
"triggers": [
|
|
84
|
+
"triggers": [
|
|
85
|
+
"api-designer",
|
|
86
|
+
"api designer",
|
|
87
|
+
"api",
|
|
88
|
+
"designer",
|
|
89
|
+
"core-operating"
|
|
90
|
+
]
|
|
70
91
|
},
|
|
71
92
|
{
|
|
72
93
|
"id": "api-patterns",
|
|
@@ -84,12 +105,21 @@
|
|
|
84
105
|
"maturity": "stable",
|
|
85
106
|
"tier": "system",
|
|
86
107
|
"tags": [
|
|
108
|
+
"api",
|
|
109
|
+
"api patterns",
|
|
87
110
|
"api-patterns",
|
|
88
|
-
"core-operating"
|
|
111
|
+
"core-operating",
|
|
112
|
+
"patterns"
|
|
89
113
|
],
|
|
90
114
|
"path": ".github/skills/api-patterns/SKILL.md",
|
|
91
115
|
"description": "Use when choosing between REST, GraphQL, and type-safe RPC patterns, or when standardizing response envelopes, versioning, pagination, auth shape, and API protection strategy.",
|
|
92
|
-
"triggers": [
|
|
116
|
+
"triggers": [
|
|
117
|
+
"api-patterns",
|
|
118
|
+
"api patterns",
|
|
119
|
+
"api",
|
|
120
|
+
"patterns",
|
|
121
|
+
"core-operating"
|
|
122
|
+
]
|
|
93
123
|
},
|
|
94
124
|
{
|
|
95
125
|
"id": "architecture-designer",
|
|
@@ -107,12 +137,21 @@
|
|
|
107
137
|
"maturity": "stable",
|
|
108
138
|
"tier": "system",
|
|
109
139
|
"tags": [
|
|
140
|
+
"architecture",
|
|
141
|
+
"architecture designer",
|
|
110
142
|
"architecture-designer",
|
|
111
|
-
"core-operating"
|
|
143
|
+
"core-operating",
|
|
144
|
+
"designer"
|
|
112
145
|
],
|
|
113
146
|
"path": ".github/skills/architecture-designer/SKILL.md",
|
|
114
147
|
"description": "Use when designing or reviewing system architecture, interface boundaries, tradeoffs, ADRs, scalability posture, and the smallest durable target shape for a product or platform.",
|
|
115
|
-
"triggers": [
|
|
148
|
+
"triggers": [
|
|
149
|
+
"architecture-designer",
|
|
150
|
+
"architecture designer",
|
|
151
|
+
"architecture",
|
|
152
|
+
"designer",
|
|
153
|
+
"core-operating"
|
|
154
|
+
]
|
|
116
155
|
},
|
|
117
156
|
{
|
|
118
157
|
"id": "auth-architect",
|
|
@@ -130,12 +169,21 @@
|
|
|
130
169
|
"maturity": "stable",
|
|
131
170
|
"tier": "curated",
|
|
132
171
|
"tags": [
|
|
172
|
+
"architect",
|
|
173
|
+
"auth",
|
|
174
|
+
"auth architect",
|
|
133
175
|
"auth-architect",
|
|
134
176
|
"workflow-specialists"
|
|
135
177
|
],
|
|
136
178
|
"path": ".github/skills/auth-architect/SKILL.md",
|
|
137
179
|
"description": "Use when designing or reviewing authentication and authorization for backend systems, including sessions, tokens, OAuth or OIDC, RBAC or ABAC, passkeys, service-to-service auth, and policy enforcement boundaries.",
|
|
138
|
-
"triggers": [
|
|
180
|
+
"triggers": [
|
|
181
|
+
"auth-architect",
|
|
182
|
+
"auth architect",
|
|
183
|
+
"auth",
|
|
184
|
+
"architect",
|
|
185
|
+
"workflow-specialists"
|
|
186
|
+
]
|
|
139
187
|
},
|
|
140
188
|
{
|
|
141
189
|
"id": "c-pro",
|
|
@@ -153,12 +201,17 @@
|
|
|
153
201
|
"maturity": "stable",
|
|
154
202
|
"tier": "system",
|
|
155
203
|
"tags": [
|
|
204
|
+
"c pro",
|
|
156
205
|
"c-pro",
|
|
157
206
|
"languages"
|
|
158
207
|
],
|
|
159
208
|
"path": ".github/skills/c-pro/SKILL.md",
|
|
160
209
|
"description": "Use for modern C23-era systems and embedded engineering with memory safety discipline, build reproducibility, and low-level debugging awareness.",
|
|
161
|
-
"triggers": [
|
|
210
|
+
"triggers": [
|
|
211
|
+
"c-pro",
|
|
212
|
+
"c pro",
|
|
213
|
+
"languages"
|
|
214
|
+
]
|
|
162
215
|
},
|
|
163
216
|
{
|
|
164
217
|
"id": "changelog-generator",
|
|
@@ -176,12 +229,21 @@
|
|
|
176
229
|
"maturity": "incubating",
|
|
177
230
|
"tier": "experimental",
|
|
178
231
|
"tags": [
|
|
232
|
+
"changelog",
|
|
233
|
+
"changelog generator",
|
|
179
234
|
"changelog-generator",
|
|
235
|
+
"generator",
|
|
180
236
|
"workflow-specialists"
|
|
181
237
|
],
|
|
182
238
|
"path": ".github/skills/changelog-generator/SKILL.md",
|
|
183
239
|
"description": "Generate changelogs from conventional commits, semantic versioning, release notes, and automated version management workflows.",
|
|
184
|
-
"triggers": [
|
|
240
|
+
"triggers": [
|
|
241
|
+
"changelog-generator",
|
|
242
|
+
"changelog generator",
|
|
243
|
+
"changelog",
|
|
244
|
+
"generator",
|
|
245
|
+
"workflow-specialists"
|
|
246
|
+
]
|
|
185
247
|
},
|
|
186
248
|
{
|
|
187
249
|
"id": "ci-cd-pipelines",
|
|
@@ -199,12 +261,23 @@
|
|
|
199
261
|
"maturity": "incubating",
|
|
200
262
|
"tier": "experimental",
|
|
201
263
|
"tags": [
|
|
264
|
+
"cd",
|
|
265
|
+
"ci",
|
|
266
|
+
"ci cd pipelines",
|
|
202
267
|
"ci-cd-pipelines",
|
|
268
|
+
"pipelines",
|
|
203
269
|
"workflow-specialists"
|
|
204
270
|
],
|
|
205
271
|
"path": ".github/skills/ci-cd-pipelines/SKILL.md",
|
|
206
272
|
"description": "Use when designing, reviewing, or debugging CI/CD pipelines across GitHub Actions, GitLab CI, and similar platforms. Covers pipeline architecture, job sequencing, caching, artifact management, environment promotion, security hardening, and flaky-pipeline triage.",
|
|
207
|
-
"triggers": [
|
|
273
|
+
"triggers": [
|
|
274
|
+
"ci-cd-pipelines",
|
|
275
|
+
"ci cd pipelines",
|
|
276
|
+
"ci",
|
|
277
|
+
"cd",
|
|
278
|
+
"pipelines",
|
|
279
|
+
"workflow-specialists"
|
|
280
|
+
]
|
|
208
281
|
},
|
|
209
282
|
{
|
|
210
283
|
"id": "cli-developer",
|
|
@@ -222,12 +295,21 @@
|
|
|
222
295
|
"maturity": "incubating",
|
|
223
296
|
"tier": "experimental",
|
|
224
297
|
"tags": [
|
|
298
|
+
"cli",
|
|
299
|
+
"cli developer",
|
|
225
300
|
"cli-developer",
|
|
301
|
+
"developer",
|
|
226
302
|
"workflow-specialists"
|
|
227
303
|
],
|
|
228
304
|
"path": ".github/skills/cli-developer/SKILL.md",
|
|
229
305
|
"description": "Build command-line interfaces with argument parsing, subcommands, interactive prompts, terminal UX, output formatting, and cross-platform compatibility.",
|
|
230
|
-
"triggers": [
|
|
306
|
+
"triggers": [
|
|
307
|
+
"cli-developer",
|
|
308
|
+
"cli developer",
|
|
309
|
+
"cli",
|
|
310
|
+
"developer",
|
|
311
|
+
"workflow-specialists"
|
|
312
|
+
]
|
|
231
313
|
},
|
|
232
314
|
{
|
|
233
315
|
"id": "cpp-pro",
|
|
@@ -245,12 +327,19 @@
|
|
|
245
327
|
"maturity": "stable",
|
|
246
328
|
"tier": "system",
|
|
247
329
|
"tags": [
|
|
330
|
+
"cpp",
|
|
331
|
+
"cpp pro",
|
|
248
332
|
"cpp-pro",
|
|
249
333
|
"languages"
|
|
250
334
|
],
|
|
251
335
|
"path": ".github/skills/cpp-pro/SKILL.md",
|
|
252
336
|
"description": "Use for modern C++23-era systems and application engineering with RAII, value semantics, toolchain awareness, and performance-safe design.",
|
|
253
|
-
"triggers": [
|
|
337
|
+
"triggers": [
|
|
338
|
+
"cpp-pro",
|
|
339
|
+
"cpp pro",
|
|
340
|
+
"cpp",
|
|
341
|
+
"languages"
|
|
342
|
+
]
|
|
254
343
|
},
|
|
255
344
|
{
|
|
256
345
|
"id": "csharp-pro",
|
|
@@ -268,12 +357,19 @@
|
|
|
268
357
|
"maturity": "stable",
|
|
269
358
|
"tier": "system",
|
|
270
359
|
"tags": [
|
|
360
|
+
"csharp",
|
|
361
|
+
"csharp pro",
|
|
271
362
|
"csharp-pro",
|
|
272
363
|
"languages"
|
|
273
364
|
],
|
|
274
365
|
"path": ".github/skills/csharp-pro/SKILL.md",
|
|
275
366
|
"description": "Use for modern C# backend/application engineering with C# 15 and .NET 11-era production practices.",
|
|
276
|
-
"triggers": [
|
|
367
|
+
"triggers": [
|
|
368
|
+
"csharp-pro",
|
|
369
|
+
"csharp pro",
|
|
370
|
+
"csharp",
|
|
371
|
+
"languages"
|
|
372
|
+
]
|
|
277
373
|
},
|
|
278
374
|
{
|
|
279
375
|
"id": "dart-pro",
|
|
@@ -291,12 +387,19 @@
|
|
|
291
387
|
"maturity": "stable",
|
|
292
388
|
"tier": "system",
|
|
293
389
|
"tags": [
|
|
390
|
+
"dart",
|
|
391
|
+
"dart pro",
|
|
294
392
|
"dart-pro",
|
|
295
393
|
"languages"
|
|
296
394
|
],
|
|
297
395
|
"path": ".github/skills/dart-pro/SKILL.md",
|
|
298
396
|
"description": "Use for modern Dart engineering across Flutter, server, and CLI code with Dart 3.11-era language features, package hygiene, isolates, and testing discipline.",
|
|
299
|
-
"triggers": [
|
|
397
|
+
"triggers": [
|
|
398
|
+
"dart-pro",
|
|
399
|
+
"dart pro",
|
|
400
|
+
"dart",
|
|
401
|
+
"languages"
|
|
402
|
+
]
|
|
300
403
|
},
|
|
301
404
|
{
|
|
302
405
|
"id": "database-design",
|
|
@@ -314,12 +417,21 @@
|
|
|
314
417
|
"maturity": "stable",
|
|
315
418
|
"tier": "curated",
|
|
316
419
|
"tags": [
|
|
420
|
+
"database",
|
|
421
|
+
"database design",
|
|
317
422
|
"database-design",
|
|
318
|
-
"databases"
|
|
423
|
+
"databases",
|
|
424
|
+
"design"
|
|
319
425
|
],
|
|
320
426
|
"path": ".github/skills/database-design/SKILL.md",
|
|
321
427
|
"description": "Use when designing schemas, relationships, indexes, ORM boundaries, and safe migration plans for relational or document-oriented workloads.",
|
|
322
|
-
"triggers": [
|
|
428
|
+
"triggers": [
|
|
429
|
+
"database-design",
|
|
430
|
+
"database design",
|
|
431
|
+
"database",
|
|
432
|
+
"design",
|
|
433
|
+
"databases"
|
|
434
|
+
]
|
|
323
435
|
},
|
|
324
436
|
{
|
|
325
437
|
"id": "database-optimizer",
|
|
@@ -337,12 +449,21 @@
|
|
|
337
449
|
"maturity": "stable",
|
|
338
450
|
"tier": "curated",
|
|
339
451
|
"tags": [
|
|
452
|
+
"database",
|
|
453
|
+
"database optimizer",
|
|
340
454
|
"database-optimizer",
|
|
341
|
-
"databases"
|
|
455
|
+
"databases",
|
|
456
|
+
"optimizer"
|
|
342
457
|
],
|
|
343
458
|
"path": ".github/skills/database-optimizer/SKILL.md",
|
|
344
459
|
"description": "Use for database performance triage across engines: query-plan analysis, indexing changes, wait and contention diagnosis, config tuning, and safe before/after validation.",
|
|
345
|
-
"triggers": [
|
|
460
|
+
"triggers": [
|
|
461
|
+
"database-optimizer",
|
|
462
|
+
"database optimizer",
|
|
463
|
+
"database",
|
|
464
|
+
"optimizer",
|
|
465
|
+
"databases"
|
|
466
|
+
]
|
|
346
467
|
},
|
|
347
468
|
{
|
|
348
469
|
"id": "database-skills",
|
|
@@ -360,12 +481,21 @@
|
|
|
360
481
|
"maturity": "stable",
|
|
361
482
|
"tier": "system",
|
|
362
483
|
"tags": [
|
|
484
|
+
"database",
|
|
485
|
+
"database skills",
|
|
363
486
|
"database-skills",
|
|
364
|
-
"databases"
|
|
487
|
+
"databases",
|
|
488
|
+
"skills"
|
|
365
489
|
],
|
|
366
490
|
"path": ".github/skills/database-skills/SKILL.md",
|
|
367
491
|
"description": "Use as the primary database hub for engine or platform choice, schema-vs-tuning routing, access-layer triage, migration safety framing, and database task triage before deeper engine, platform, or ORM specialists.",
|
|
368
|
-
"triggers": [
|
|
492
|
+
"triggers": [
|
|
493
|
+
"database-skills",
|
|
494
|
+
"database skills",
|
|
495
|
+
"database",
|
|
496
|
+
"skills",
|
|
497
|
+
"databases"
|
|
498
|
+
]
|
|
369
499
|
},
|
|
370
500
|
{
|
|
371
501
|
"id": "debugging-strategies",
|
|
@@ -383,12 +513,21 @@
|
|
|
383
513
|
"maturity": "stable",
|
|
384
514
|
"tier": "system",
|
|
385
515
|
"tags": [
|
|
516
|
+
"debugging",
|
|
517
|
+
"debugging strategies",
|
|
386
518
|
"debugging-strategies",
|
|
519
|
+
"strategies",
|
|
387
520
|
"workflow-specialists"
|
|
388
521
|
],
|
|
389
522
|
"path": ".github/skills/debugging-strategies/SKILL.md",
|
|
390
523
|
"description": "Use when isolating bugs, regressions, flaky tests, or cross-layer failures with an evidence-first reproduce, narrow, verify workflow.",
|
|
391
|
-
"triggers": [
|
|
524
|
+
"triggers": [
|
|
525
|
+
"debugging-strategies",
|
|
526
|
+
"debugging strategies",
|
|
527
|
+
"debugging",
|
|
528
|
+
"strategies",
|
|
529
|
+
"workflow-specialists"
|
|
530
|
+
]
|
|
392
531
|
},
|
|
393
532
|
{
|
|
394
533
|
"id": "deep-research",
|
|
@@ -407,11 +546,20 @@
|
|
|
407
546
|
"tier": "system",
|
|
408
547
|
"tags": [
|
|
409
548
|
"core-operating",
|
|
410
|
-
"deep
|
|
549
|
+
"deep",
|
|
550
|
+
"deep research",
|
|
551
|
+
"deep-research",
|
|
552
|
+
"research"
|
|
411
553
|
],
|
|
412
554
|
"path": ".github/skills/deep-research/SKILL.md",
|
|
413
|
-
"description": "Use when a task needs multi-round research rather than a quick lookup: iterative search, gap finding, corroboration across sources, contradiction handling,
|
|
414
|
-
"triggers": [
|
|
555
|
+
"description": "Use when a task needs multi-round research rather than a quick lookup: iterative search, gap finding, corroboration across sources, contradiction handling, evidence-led synthesis before planning or implementation. Also use when the user asks for 'deep research', 'latest info', or 'how does X compare to Y publicly'.",
|
|
556
|
+
"triggers": [
|
|
557
|
+
"deep-research",
|
|
558
|
+
"deep research",
|
|
559
|
+
"deep",
|
|
560
|
+
"research",
|
|
561
|
+
"core-operating"
|
|
562
|
+
]
|
|
415
563
|
},
|
|
416
564
|
{
|
|
417
565
|
"id": "design-system-builder",
|
|
@@ -429,12 +577,23 @@
|
|
|
429
577
|
"maturity": "stable",
|
|
430
578
|
"tier": "curated",
|
|
431
579
|
"tags": [
|
|
580
|
+
"builder",
|
|
581
|
+
"design",
|
|
582
|
+
"design system builder",
|
|
432
583
|
"design-system-builder",
|
|
433
|
-
"frameworks-runtimes"
|
|
584
|
+
"frameworks-runtimes",
|
|
585
|
+
"system"
|
|
434
586
|
],
|
|
435
587
|
"path": ".github/skills/design-system-builder/SKILL.md",
|
|
436
588
|
"description": "Build and maintain token-driven design systems with reusable components, semantic APIs, variant patterns, and theming support across frameworks.",
|
|
437
|
-
"triggers": [
|
|
589
|
+
"triggers": [
|
|
590
|
+
"design-system-builder",
|
|
591
|
+
"design system builder",
|
|
592
|
+
"design",
|
|
593
|
+
"system",
|
|
594
|
+
"builder",
|
|
595
|
+
"frameworks-runtimes"
|
|
596
|
+
]
|
|
438
597
|
},
|
|
439
598
|
{
|
|
440
599
|
"id": "devops-engineer",
|
|
@@ -452,12 +611,21 @@
|
|
|
452
611
|
"maturity": "incubating",
|
|
453
612
|
"tier": "experimental",
|
|
454
613
|
"tags": [
|
|
614
|
+
"devops",
|
|
615
|
+
"devops engineer",
|
|
455
616
|
"devops-engineer",
|
|
617
|
+
"engineer",
|
|
456
618
|
"workflow-specialists"
|
|
457
619
|
],
|
|
458
620
|
"path": ".github/skills/devops-engineer/SKILL.md",
|
|
459
621
|
"description": "Design CI/CD pipelines, infrastructure-as-code, monitoring, deployment strategies, and incident response procedures for reliable software delivery.",
|
|
460
|
-
"triggers": [
|
|
622
|
+
"triggers": [
|
|
623
|
+
"devops-engineer",
|
|
624
|
+
"devops engineer",
|
|
625
|
+
"devops",
|
|
626
|
+
"engineer",
|
|
627
|
+
"workflow-specialists"
|
|
628
|
+
]
|
|
461
629
|
},
|
|
462
630
|
{
|
|
463
631
|
"id": "docker-kubernetes",
|
|
@@ -475,12 +643,21 @@
|
|
|
475
643
|
"maturity": "incubating",
|
|
476
644
|
"tier": "experimental",
|
|
477
645
|
"tags": [
|
|
646
|
+
"docker",
|
|
647
|
+
"docker kubernetes",
|
|
478
648
|
"docker-kubernetes",
|
|
649
|
+
"kubernetes",
|
|
479
650
|
"workflow-specialists"
|
|
480
651
|
],
|
|
481
652
|
"path": ".github/skills/docker-kubernetes/SKILL.md",
|
|
482
653
|
"description": "Use for containerization strategy, Dockerfile optimization, Kubernetes deployment patterns, Helm charts, and container orchestration decisions.",
|
|
483
|
-
"triggers": [
|
|
654
|
+
"triggers": [
|
|
655
|
+
"docker-kubernetes",
|
|
656
|
+
"docker kubernetes",
|
|
657
|
+
"docker",
|
|
658
|
+
"kubernetes",
|
|
659
|
+
"workflow-specialists"
|
|
660
|
+
]
|
|
484
661
|
},
|
|
485
662
|
{
|
|
486
663
|
"id": "documentation-templates",
|
|
@@ -498,12 +675,21 @@
|
|
|
498
675
|
"maturity": "incubating",
|
|
499
676
|
"tier": "experimental",
|
|
500
677
|
"tags": [
|
|
678
|
+
"documentation",
|
|
679
|
+
"documentation templates",
|
|
501
680
|
"documentation-templates",
|
|
681
|
+
"templates",
|
|
502
682
|
"workflow-specialists"
|
|
503
683
|
],
|
|
504
684
|
"path": ".github/skills/documentation-templates/SKILL.md",
|
|
505
685
|
"description": "Create API documentation, architecture decision records, runbooks, onboarding guides, and technical writing using proven templates and standards.",
|
|
506
|
-
"triggers": [
|
|
686
|
+
"triggers": [
|
|
687
|
+
"documentation-templates",
|
|
688
|
+
"documentation templates",
|
|
689
|
+
"documentation",
|
|
690
|
+
"templates",
|
|
691
|
+
"workflow-specialists"
|
|
692
|
+
]
|
|
507
693
|
},
|
|
508
694
|
{
|
|
509
695
|
"id": "drizzle-expert",
|
|
@@ -522,11 +708,20 @@
|
|
|
522
708
|
"tier": "curated",
|
|
523
709
|
"tags": [
|
|
524
710
|
"databases",
|
|
525
|
-
"drizzle
|
|
711
|
+
"drizzle",
|
|
712
|
+
"drizzle expert",
|
|
713
|
+
"drizzle-expert",
|
|
714
|
+
"expert"
|
|
526
715
|
],
|
|
527
716
|
"path": ".github/skills/drizzle-expert/SKILL.md",
|
|
528
717
|
"description": "Use when the task is specifically Drizzle ORM or drizzle-kit: schema-as-code, typed SQL, relations, migrations, config, runtime pairing, or TypeScript database access-layer decisions across Postgres, SQLite/libSQL, Neon, or Supabase.",
|
|
529
|
-
"triggers": [
|
|
718
|
+
"triggers": [
|
|
719
|
+
"drizzle-expert",
|
|
720
|
+
"drizzle expert",
|
|
721
|
+
"drizzle",
|
|
722
|
+
"expert",
|
|
723
|
+
"databases"
|
|
724
|
+
]
|
|
530
725
|
},
|
|
531
726
|
{
|
|
532
727
|
"id": "error-ux-observability",
|
|
@@ -544,12 +739,23 @@
|
|
|
544
739
|
"maturity": "incubating",
|
|
545
740
|
"tier": "experimental",
|
|
546
741
|
"tags": [
|
|
742
|
+
"error",
|
|
743
|
+
"error ux observability",
|
|
547
744
|
"error-ux-observability",
|
|
745
|
+
"observability",
|
|
746
|
+
"ux",
|
|
548
747
|
"workflow-specialists"
|
|
549
748
|
],
|
|
550
749
|
"path": ".github/skills/error-ux-observability/SKILL.md",
|
|
551
750
|
"description": "Design error experiences, structured logging, distributed tracing, alerting strategies, and user-facing error handling for production systems.",
|
|
552
|
-
"triggers": [
|
|
751
|
+
"triggers": [
|
|
752
|
+
"error-ux-observability",
|
|
753
|
+
"error ux observability",
|
|
754
|
+
"error",
|
|
755
|
+
"ux",
|
|
756
|
+
"observability",
|
|
757
|
+
"workflow-specialists"
|
|
758
|
+
]
|
|
553
759
|
},
|
|
554
760
|
{
|
|
555
761
|
"id": "fastapi-expert",
|
|
@@ -567,12 +773,21 @@
|
|
|
567
773
|
"maturity": "stable",
|
|
568
774
|
"tier": "curated",
|
|
569
775
|
"tags": [
|
|
776
|
+
"expert",
|
|
777
|
+
"fastapi",
|
|
778
|
+
"fastapi expert",
|
|
570
779
|
"fastapi-expert",
|
|
571
780
|
"frameworks-runtimes"
|
|
572
781
|
],
|
|
573
782
|
"path": ".github/skills/fastapi-expert/SKILL.md",
|
|
574
783
|
"description": "Use when building FastAPI services with async Python, Pydantic v2, lifespan-managed resources, dependency-based auth, background task boundaries, and OpenAPI-safe request handling.",
|
|
575
|
-
"triggers": [
|
|
784
|
+
"triggers": [
|
|
785
|
+
"fastapi-expert",
|
|
786
|
+
"fastapi expert",
|
|
787
|
+
"fastapi",
|
|
788
|
+
"expert",
|
|
789
|
+
"frameworks-runtimes"
|
|
790
|
+
]
|
|
576
791
|
},
|
|
577
792
|
{
|
|
578
793
|
"id": "firebase",
|
|
@@ -595,7 +810,10 @@
|
|
|
595
810
|
],
|
|
596
811
|
"path": ".github/skills/firebase/SKILL.md",
|
|
597
812
|
"description": "Use when the task is specifically Firebase: Firestore or Realtime Database choice, security rules, indexes, auth, storage, cloud functions, hosting, emulator workflows, or platform-coupled rollout decisions.",
|
|
598
|
-
"triggers": [
|
|
813
|
+
"triggers": [
|
|
814
|
+
"firebase",
|
|
815
|
+
"databases"
|
|
816
|
+
]
|
|
599
817
|
},
|
|
600
818
|
{
|
|
601
819
|
"id": "flutter-design-system",
|
|
@@ -613,12 +831,23 @@
|
|
|
613
831
|
"maturity": "incubating",
|
|
614
832
|
"tier": "experimental",
|
|
615
833
|
"tags": [
|
|
834
|
+
"design",
|
|
835
|
+
"flutter",
|
|
836
|
+
"flutter design system",
|
|
616
837
|
"flutter-design-system",
|
|
838
|
+
"system",
|
|
617
839
|
"workflow-specialists"
|
|
618
840
|
],
|
|
619
841
|
"path": ".github/skills/flutter-design-system/SKILL.md",
|
|
620
842
|
"description": "Use when creating, auditing, or extending shared Flutter theme tokens, ThemeData, and reusable cross-feature UI primitives such as loading, error, empty, dead-letter, and sync-status components. Do not use for one-off screen styling that should remain local.",
|
|
621
|
-
"triggers": [
|
|
843
|
+
"triggers": [
|
|
844
|
+
"flutter-design-system",
|
|
845
|
+
"flutter design system",
|
|
846
|
+
"flutter",
|
|
847
|
+
"design",
|
|
848
|
+
"system",
|
|
849
|
+
"workflow-specialists"
|
|
850
|
+
]
|
|
622
851
|
},
|
|
623
852
|
{
|
|
624
853
|
"id": "flutter-drift",
|
|
@@ -636,12 +865,21 @@
|
|
|
636
865
|
"maturity": "incubating",
|
|
637
866
|
"tier": "experimental",
|
|
638
867
|
"tags": [
|
|
868
|
+
"drift",
|
|
869
|
+
"flutter",
|
|
870
|
+
"flutter drift",
|
|
639
871
|
"flutter-drift",
|
|
640
872
|
"workflow-specialists"
|
|
641
873
|
],
|
|
642
874
|
"path": ".github/skills/flutter-drift/SKILL.md",
|
|
643
875
|
"description": "Use when implementing or refactoring Flutter local persistence with Drift: tables, DAOs, typed queries, indexes, transactions, and migrations. Do not use for simple key-value storage or remote-only networking work.",
|
|
644
|
-
"triggers": [
|
|
876
|
+
"triggers": [
|
|
877
|
+
"flutter-drift",
|
|
878
|
+
"flutter drift",
|
|
879
|
+
"flutter",
|
|
880
|
+
"drift",
|
|
881
|
+
"workflow-specialists"
|
|
882
|
+
]
|
|
645
883
|
},
|
|
646
884
|
{
|
|
647
885
|
"id": "flutter-feature",
|
|
@@ -659,12 +897,21 @@
|
|
|
659
897
|
"maturity": "incubating",
|
|
660
898
|
"tier": "experimental",
|
|
661
899
|
"tags": [
|
|
900
|
+
"feature",
|
|
901
|
+
"flutter",
|
|
902
|
+
"flutter feature",
|
|
662
903
|
"flutter-feature",
|
|
663
904
|
"workflow-specialists"
|
|
664
905
|
],
|
|
665
906
|
"path": ".github/skills/flutter-feature/SKILL.md",
|
|
666
907
|
"description": "Use when scaffolding a full Flutter feature across data, domain, presentation, routing, offline sync, and tests. Do not use for isolated single-layer work when a narrower Flutter skill already fits.",
|
|
667
|
-
"triggers": [
|
|
908
|
+
"triggers": [
|
|
909
|
+
"flutter-feature",
|
|
910
|
+
"flutter feature",
|
|
911
|
+
"flutter",
|
|
912
|
+
"feature",
|
|
913
|
+
"workflow-specialists"
|
|
914
|
+
]
|
|
668
915
|
},
|
|
669
916
|
{
|
|
670
917
|
"id": "flutter-go-router",
|
|
@@ -682,12 +929,23 @@
|
|
|
682
929
|
"maturity": "incubating",
|
|
683
930
|
"tier": "experimental",
|
|
684
931
|
"tags": [
|
|
932
|
+
"flutter",
|
|
933
|
+
"flutter go router",
|
|
685
934
|
"flutter-go-router",
|
|
935
|
+
"go",
|
|
936
|
+
"router",
|
|
686
937
|
"workflow-specialists"
|
|
687
938
|
],
|
|
688
939
|
"path": ".github/skills/flutter-go-router/SKILL.md",
|
|
689
940
|
"description": "Use when adding or refactoring typed GoRouter navigation, guards, shell routes, deep links, or notification-driven routing in Flutter. Do not use for state management or feature business logic.",
|
|
690
|
-
"triggers": [
|
|
941
|
+
"triggers": [
|
|
942
|
+
"flutter-go-router",
|
|
943
|
+
"flutter go router",
|
|
944
|
+
"flutter",
|
|
945
|
+
"go",
|
|
946
|
+
"router",
|
|
947
|
+
"workflow-specialists"
|
|
948
|
+
]
|
|
691
949
|
},
|
|
692
950
|
{
|
|
693
951
|
"id": "flutter-offline-sync",
|
|
@@ -705,12 +963,23 @@
|
|
|
705
963
|
"maturity": "incubating",
|
|
706
964
|
"tier": "experimental",
|
|
707
965
|
"tags": [
|
|
966
|
+
"flutter",
|
|
967
|
+
"flutter offline sync",
|
|
708
968
|
"flutter-offline-sync",
|
|
969
|
+
"offline",
|
|
970
|
+
"sync",
|
|
709
971
|
"workflow-specialists"
|
|
710
972
|
],
|
|
711
973
|
"path": ".github/skills/flutter-offline-sync/SKILL.md",
|
|
712
974
|
"description": "Use when implementing or auditing offline-first sync in Flutter with a local database, outbox queue, retry policy, conflict handling, and dead-letter behavior. Do not use for simple online-only CRUD.",
|
|
713
|
-
"triggers": [
|
|
975
|
+
"triggers": [
|
|
976
|
+
"flutter-offline-sync",
|
|
977
|
+
"flutter offline sync",
|
|
978
|
+
"flutter",
|
|
979
|
+
"offline",
|
|
980
|
+
"sync",
|
|
981
|
+
"workflow-specialists"
|
|
982
|
+
]
|
|
714
983
|
},
|
|
715
984
|
{
|
|
716
985
|
"id": "flutter-repository",
|
|
@@ -728,12 +997,21 @@
|
|
|
728
997
|
"maturity": "incubating",
|
|
729
998
|
"tier": "experimental",
|
|
730
999
|
"tags": [
|
|
1000
|
+
"flutter",
|
|
1001
|
+
"flutter repository",
|
|
731
1002
|
"flutter-repository",
|
|
1003
|
+
"repository",
|
|
732
1004
|
"workflow-specialists"
|
|
733
1005
|
],
|
|
734
1006
|
"path": ".github/skills/flutter-repository/SKILL.md",
|
|
735
1007
|
"description": "Use when building or refactoring a Flutter feature data layer: Drift tables and DAOs, DTOs, mappers, Retrofit APIs, and repository orchestration. Do not use when the task needs a full feature scaffold across presentation and routing.",
|
|
736
|
-
"triggers": [
|
|
1008
|
+
"triggers": [
|
|
1009
|
+
"flutter-repository",
|
|
1010
|
+
"flutter repository",
|
|
1011
|
+
"flutter",
|
|
1012
|
+
"repository",
|
|
1013
|
+
"workflow-specialists"
|
|
1014
|
+
]
|
|
737
1015
|
},
|
|
738
1016
|
{
|
|
739
1017
|
"id": "flutter-riverpod",
|
|
@@ -751,12 +1029,21 @@
|
|
|
751
1029
|
"maturity": "incubating",
|
|
752
1030
|
"tier": "experimental",
|
|
753
1031
|
"tags": [
|
|
1032
|
+
"flutter",
|
|
1033
|
+
"flutter riverpod",
|
|
754
1034
|
"flutter-riverpod",
|
|
755
|
-
"frameworks-runtimes"
|
|
1035
|
+
"frameworks-runtimes",
|
|
1036
|
+
"riverpod"
|
|
756
1037
|
],
|
|
757
1038
|
"path": ".github/skills/flutter-riverpod/SKILL.md",
|
|
758
1039
|
"description": "Use when creating, refactoring, or auditing Riverpod 3 providers and notifiers in Flutter with code generation and correct lifecycle boundaries. Do not use for widget-local ephemeral state that should stay inside the UI.",
|
|
759
|
-
"triggers": [
|
|
1040
|
+
"triggers": [
|
|
1041
|
+
"flutter-riverpod",
|
|
1042
|
+
"flutter riverpod",
|
|
1043
|
+
"flutter",
|
|
1044
|
+
"riverpod",
|
|
1045
|
+
"frameworks-runtimes"
|
|
1046
|
+
]
|
|
760
1047
|
},
|
|
761
1048
|
{
|
|
762
1049
|
"id": "flutter-state-machine",
|
|
@@ -774,12 +1061,23 @@
|
|
|
774
1061
|
"maturity": "incubating",
|
|
775
1062
|
"tier": "experimental",
|
|
776
1063
|
"tags": [
|
|
1064
|
+
"flutter",
|
|
1065
|
+
"flutter state machine",
|
|
777
1066
|
"flutter-state-machine",
|
|
1067
|
+
"machine",
|
|
1068
|
+
"state",
|
|
778
1069
|
"workflow-specialists"
|
|
779
1070
|
],
|
|
780
1071
|
"path": ".github/skills/flutter-state-machine/SKILL.md",
|
|
781
1072
|
"description": "Use when implementing or auditing the shared Flutter screen-state contract: loading, data, empty, error, and dead-letter rendering plus consistent error mapping. Do not use for generic Riverpod work when the project does not use this AppState pattern.",
|
|
782
|
-
"triggers": [
|
|
1073
|
+
"triggers": [
|
|
1074
|
+
"flutter-state-machine",
|
|
1075
|
+
"flutter state machine",
|
|
1076
|
+
"flutter",
|
|
1077
|
+
"state",
|
|
1078
|
+
"machine",
|
|
1079
|
+
"workflow-specialists"
|
|
1080
|
+
]
|
|
783
1081
|
},
|
|
784
1082
|
{
|
|
785
1083
|
"id": "flutter-testing",
|
|
@@ -797,12 +1095,21 @@
|
|
|
797
1095
|
"maturity": "incubating",
|
|
798
1096
|
"tier": "experimental",
|
|
799
1097
|
"tags": [
|
|
1098
|
+
"flutter",
|
|
1099
|
+
"flutter testing",
|
|
800
1100
|
"flutter-testing",
|
|
1101
|
+
"testing",
|
|
801
1102
|
"workflow-specialists"
|
|
802
1103
|
],
|
|
803
1104
|
"path": ".github/skills/flutter-testing/SKILL.md",
|
|
804
1105
|
"description": "Use when adding or refactoring Flutter tests for repositories, services, Riverpod notifiers, widgets, and golden coverage around a feature. Do not use for production feature implementation unless the task is explicitly test-focused.",
|
|
805
|
-
"triggers": [
|
|
1106
|
+
"triggers": [
|
|
1107
|
+
"flutter-testing",
|
|
1108
|
+
"flutter testing",
|
|
1109
|
+
"flutter",
|
|
1110
|
+
"testing",
|
|
1111
|
+
"workflow-specialists"
|
|
1112
|
+
]
|
|
806
1113
|
},
|
|
807
1114
|
{
|
|
808
1115
|
"id": "frontend-code-review",
|
|
@@ -820,12 +1127,23 @@
|
|
|
820
1127
|
"maturity": "stable",
|
|
821
1128
|
"tier": "curated",
|
|
822
1129
|
"tags": [
|
|
1130
|
+
"code",
|
|
1131
|
+
"frontend",
|
|
1132
|
+
"frontend code review",
|
|
823
1133
|
"frontend-code-review",
|
|
1134
|
+
"review",
|
|
824
1135
|
"workflow-specialists"
|
|
825
1136
|
],
|
|
826
1137
|
"path": ".github/skills/frontend-code-review/SKILL.md",
|
|
827
1138
|
"description": "Review frontend code for accessibility, performance, state management, rendering efficiency, and design system compliance.",
|
|
828
|
-
"triggers": [
|
|
1139
|
+
"triggers": [
|
|
1140
|
+
"frontend-code-review",
|
|
1141
|
+
"frontend code review",
|
|
1142
|
+
"frontend",
|
|
1143
|
+
"code",
|
|
1144
|
+
"review",
|
|
1145
|
+
"workflow-specialists"
|
|
1146
|
+
]
|
|
829
1147
|
},
|
|
830
1148
|
{
|
|
831
1149
|
"id": "frontend-design",
|
|
@@ -843,12 +1161,21 @@
|
|
|
843
1161
|
"maturity": "stable",
|
|
844
1162
|
"tier": "curated",
|
|
845
1163
|
"tags": [
|
|
1164
|
+
"design",
|
|
846
1165
|
"frameworks-runtimes",
|
|
1166
|
+
"frontend",
|
|
1167
|
+
"frontend design",
|
|
847
1168
|
"frontend-design"
|
|
848
1169
|
],
|
|
849
1170
|
"path": ".github/skills/frontend-design/SKILL.md",
|
|
850
1171
|
"description": "Create distinctive, production-grade frontend interfaces with high design quality. Use when building pages, dashboards, or applications. Generates polished code that avoids generic AI aesthetics.",
|
|
851
|
-
"triggers": [
|
|
1172
|
+
"triggers": [
|
|
1173
|
+
"frontend-design",
|
|
1174
|
+
"frontend design",
|
|
1175
|
+
"frontend",
|
|
1176
|
+
"design",
|
|
1177
|
+
"frameworks-runtimes"
|
|
1178
|
+
]
|
|
852
1179
|
},
|
|
853
1180
|
{
|
|
854
1181
|
"id": "game-development",
|
|
@@ -866,12 +1193,21 @@
|
|
|
866
1193
|
"maturity": "incubating",
|
|
867
1194
|
"tier": "experimental",
|
|
868
1195
|
"tags": [
|
|
1196
|
+
"development",
|
|
1197
|
+
"game",
|
|
1198
|
+
"game development",
|
|
869
1199
|
"game-development",
|
|
870
1200
|
"vertical-composed"
|
|
871
1201
|
],
|
|
872
1202
|
"path": ".github/skills/game-development/SKILL.md",
|
|
873
1203
|
"description": "Use when implementing game mechanics, game loops, physics, AI, collision detection, or performance optimization for web, mobile, PC, or VR/AR games.",
|
|
874
|
-
"triggers": [
|
|
1204
|
+
"triggers": [
|
|
1205
|
+
"game-development",
|
|
1206
|
+
"game development",
|
|
1207
|
+
"game",
|
|
1208
|
+
"development",
|
|
1209
|
+
"vertical-composed"
|
|
1210
|
+
]
|
|
875
1211
|
},
|
|
876
1212
|
{
|
|
877
1213
|
"id": "geo-fundamentals",
|
|
@@ -889,12 +1225,21 @@
|
|
|
889
1225
|
"maturity": "incubating",
|
|
890
1226
|
"tier": "experimental",
|
|
891
1227
|
"tags": [
|
|
1228
|
+
"fundamentals",
|
|
1229
|
+
"geo",
|
|
1230
|
+
"geo fundamentals",
|
|
892
1231
|
"geo-fundamentals",
|
|
893
1232
|
"vertical-composed"
|
|
894
1233
|
],
|
|
895
1234
|
"path": ".github/skills/geo-fundamentals/SKILL.md",
|
|
896
1235
|
"description": "Use when optimizing content for AI search engines (ChatGPT, Claude, Perplexity) using Generative Engine Optimization techniques and citation-worthy content patterns.",
|
|
897
|
-
"triggers": [
|
|
1236
|
+
"triggers": [
|
|
1237
|
+
"geo-fundamentals",
|
|
1238
|
+
"geo fundamentals",
|
|
1239
|
+
"geo",
|
|
1240
|
+
"fundamentals",
|
|
1241
|
+
"vertical-composed"
|
|
1242
|
+
]
|
|
898
1243
|
},
|
|
899
1244
|
{
|
|
900
1245
|
"id": "git-workflow",
|
|
@@ -912,12 +1257,21 @@
|
|
|
912
1257
|
"maturity": "incubating",
|
|
913
1258
|
"tier": "experimental",
|
|
914
1259
|
"tags": [
|
|
1260
|
+
"git",
|
|
1261
|
+
"git workflow",
|
|
915
1262
|
"git-workflow",
|
|
1263
|
+
"workflow",
|
|
916
1264
|
"workflow-specialists"
|
|
917
1265
|
],
|
|
918
1266
|
"path": ".github/skills/git-workflow/SKILL.md",
|
|
919
1267
|
"description": "Use when establishing or reviewing git branching strategies, PR conventions, commit hygiene, merge policies, monorepo workflows, and release tagging. Covers trunk-based development, GitFlow alternatives, conventional commits, and code review standards.",
|
|
920
|
-
"triggers": [
|
|
1268
|
+
"triggers": [
|
|
1269
|
+
"git-workflow",
|
|
1270
|
+
"git workflow",
|
|
1271
|
+
"git",
|
|
1272
|
+
"workflow",
|
|
1273
|
+
"workflow-specialists"
|
|
1274
|
+
]
|
|
921
1275
|
},
|
|
922
1276
|
{
|
|
923
1277
|
"id": "golang-pro",
|
|
@@ -935,12 +1289,19 @@
|
|
|
935
1289
|
"maturity": "stable",
|
|
936
1290
|
"tier": "system",
|
|
937
1291
|
"tags": [
|
|
1292
|
+
"golang",
|
|
1293
|
+
"golang pro",
|
|
938
1294
|
"golang-pro",
|
|
939
1295
|
"languages"
|
|
940
1296
|
],
|
|
941
1297
|
"path": ".github/skills/golang-pro/SKILL.md",
|
|
942
1298
|
"description": "Use for modern Go services and tooling with Go 1.26-era language/runtime patterns, concurrency safety, and production operations.",
|
|
943
|
-
"triggers": [
|
|
1299
|
+
"triggers": [
|
|
1300
|
+
"golang-pro",
|
|
1301
|
+
"golang pro",
|
|
1302
|
+
"golang",
|
|
1303
|
+
"languages"
|
|
1304
|
+
]
|
|
944
1305
|
},
|
|
945
1306
|
{
|
|
946
1307
|
"id": "graphql-architect",
|
|
@@ -958,12 +1319,21 @@
|
|
|
958
1319
|
"maturity": "stable",
|
|
959
1320
|
"tier": "curated",
|
|
960
1321
|
"tags": [
|
|
1322
|
+
"architect",
|
|
961
1323
|
"frameworks-runtimes",
|
|
1324
|
+
"graphql",
|
|
1325
|
+
"graphql architect",
|
|
962
1326
|
"graphql-architect"
|
|
963
1327
|
],
|
|
964
1328
|
"path": ".github/skills/graphql-architect/SKILL.md",
|
|
965
1329
|
"description": "Use when designing GraphQL schemas, resolver boundaries, batching strategy, auth and policy enforcement, federation shape, query safety, and real-time graph behavior.",
|
|
966
|
-
"triggers": [
|
|
1330
|
+
"triggers": [
|
|
1331
|
+
"graphql-architect",
|
|
1332
|
+
"graphql architect",
|
|
1333
|
+
"graphql",
|
|
1334
|
+
"architect",
|
|
1335
|
+
"frameworks-runtimes"
|
|
1336
|
+
]
|
|
967
1337
|
},
|
|
968
1338
|
{
|
|
969
1339
|
"id": "i18n-localization",
|
|
@@ -981,12 +1351,21 @@
|
|
|
981
1351
|
"maturity": "incubating",
|
|
982
1352
|
"tier": "experimental",
|
|
983
1353
|
"tags": [
|
|
1354
|
+
"i18n",
|
|
1355
|
+
"i18n localization",
|
|
984
1356
|
"i18n-localization",
|
|
1357
|
+
"localization",
|
|
985
1358
|
"workflow-specialists"
|
|
986
1359
|
],
|
|
987
1360
|
"path": ".github/skills/i18n-localization/SKILL.md",
|
|
988
1361
|
"description": "Implement internationalization and localization including RTL support, pluralization, date/number formatting, translation workflows, and locale-aware UI.",
|
|
989
|
-
"triggers": [
|
|
1362
|
+
"triggers": [
|
|
1363
|
+
"i18n-localization",
|
|
1364
|
+
"i18n localization",
|
|
1365
|
+
"i18n",
|
|
1366
|
+
"localization",
|
|
1367
|
+
"workflow-specialists"
|
|
1368
|
+
]
|
|
990
1369
|
},
|
|
991
1370
|
{
|
|
992
1371
|
"id": "java-pro",
|
|
@@ -1004,12 +1383,19 @@
|
|
|
1004
1383
|
"maturity": "stable",
|
|
1005
1384
|
"tier": "system",
|
|
1006
1385
|
"tags": [
|
|
1386
|
+
"java",
|
|
1387
|
+
"java pro",
|
|
1007
1388
|
"java-pro",
|
|
1008
1389
|
"languages"
|
|
1009
1390
|
],
|
|
1010
1391
|
"path": ".github/skills/java-pro/SKILL.md",
|
|
1011
1392
|
"description": "Use for modern Java backend and platform engineering with Java 25-era language/runtime practices.",
|
|
1012
|
-
"triggers": [
|
|
1393
|
+
"triggers": [
|
|
1394
|
+
"java-pro",
|
|
1395
|
+
"java pro",
|
|
1396
|
+
"java",
|
|
1397
|
+
"languages"
|
|
1398
|
+
]
|
|
1013
1399
|
},
|
|
1014
1400
|
{
|
|
1015
1401
|
"id": "javascript-pro",
|
|
@@ -1027,12 +1413,19 @@
|
|
|
1027
1413
|
"maturity": "stable",
|
|
1028
1414
|
"tier": "system",
|
|
1029
1415
|
"tags": [
|
|
1416
|
+
"javascript",
|
|
1417
|
+
"javascript pro",
|
|
1030
1418
|
"javascript-pro",
|
|
1031
1419
|
"languages"
|
|
1032
1420
|
],
|
|
1033
1421
|
"path": ".github/skills/javascript-pro/SKILL.md",
|
|
1034
1422
|
"description": "Use for modern JavaScript architecture and implementation across browser, Node, and edge runtimes with runtime-aware production practices.",
|
|
1035
|
-
"triggers": [
|
|
1423
|
+
"triggers": [
|
|
1424
|
+
"javascript-pro",
|
|
1425
|
+
"javascript pro",
|
|
1426
|
+
"javascript",
|
|
1427
|
+
"languages"
|
|
1428
|
+
]
|
|
1036
1429
|
},
|
|
1037
1430
|
{
|
|
1038
1431
|
"id": "kotlin-pro",
|
|
@@ -1050,12 +1443,19 @@
|
|
|
1050
1443
|
"maturity": "stable",
|
|
1051
1444
|
"tier": "system",
|
|
1052
1445
|
"tags": [
|
|
1446
|
+
"kotlin",
|
|
1447
|
+
"kotlin pro",
|
|
1053
1448
|
"kotlin-pro",
|
|
1054
1449
|
"languages"
|
|
1055
1450
|
],
|
|
1056
1451
|
"path": ".github/skills/kotlin-pro/SKILL.md",
|
|
1057
1452
|
"description": "Use for modern Kotlin backend/mobile/shared code with Kotlin 2.3-era language tooling and production patterns.",
|
|
1058
|
-
"triggers": [
|
|
1453
|
+
"triggers": [
|
|
1454
|
+
"kotlin-pro",
|
|
1455
|
+
"kotlin pro",
|
|
1456
|
+
"kotlin",
|
|
1457
|
+
"languages"
|
|
1458
|
+
]
|
|
1059
1459
|
},
|
|
1060
1460
|
{
|
|
1061
1461
|
"id": "legacy-modernizer",
|
|
@@ -1073,12 +1473,21 @@
|
|
|
1073
1473
|
"maturity": "incubating",
|
|
1074
1474
|
"tier": "experimental",
|
|
1075
1475
|
"tags": [
|
|
1476
|
+
"legacy",
|
|
1477
|
+
"legacy modernizer",
|
|
1076
1478
|
"legacy-modernizer",
|
|
1479
|
+
"modernizer",
|
|
1077
1480
|
"workflow-specialists"
|
|
1078
1481
|
],
|
|
1079
1482
|
"path": ".github/skills/legacy-modernizer/SKILL.md",
|
|
1080
1483
|
"description": "Use when planning and executing incremental migration of legacy systems using strangler fig, branch by abstraction, and feature-flag-controlled rollouts.",
|
|
1081
|
-
"triggers": [
|
|
1484
|
+
"triggers": [
|
|
1485
|
+
"legacy-modernizer",
|
|
1486
|
+
"legacy modernizer",
|
|
1487
|
+
"legacy",
|
|
1488
|
+
"modernizer",
|
|
1489
|
+
"workflow-specialists"
|
|
1490
|
+
]
|
|
1082
1491
|
},
|
|
1083
1492
|
{
|
|
1084
1493
|
"id": "mcp-builder",
|
|
@@ -1096,12 +1505,21 @@
|
|
|
1096
1505
|
"maturity": "stable",
|
|
1097
1506
|
"tier": "system",
|
|
1098
1507
|
"tags": [
|
|
1508
|
+
"builder",
|
|
1099
1509
|
"core-operating",
|
|
1510
|
+
"mcp",
|
|
1511
|
+
"mcp builder",
|
|
1100
1512
|
"mcp-builder"
|
|
1101
1513
|
],
|
|
1102
1514
|
"path": ".github/skills/mcp-builder/SKILL.md",
|
|
1103
1515
|
"description": "Use when building, extending, or evaluating an MCP server: tool design, resource patterns, transports, auth, schemas, testing, Python or TypeScript implementation, or MCP-specific server architecture decisions.",
|
|
1104
|
-
"triggers": [
|
|
1516
|
+
"triggers": [
|
|
1517
|
+
"mcp-builder",
|
|
1518
|
+
"mcp builder",
|
|
1519
|
+
"mcp",
|
|
1520
|
+
"builder",
|
|
1521
|
+
"core-operating"
|
|
1522
|
+
]
|
|
1105
1523
|
},
|
|
1106
1524
|
{
|
|
1107
1525
|
"id": "microservices-architect",
|
|
@@ -1119,12 +1537,21 @@
|
|
|
1119
1537
|
"maturity": "stable",
|
|
1120
1538
|
"tier": "curated",
|
|
1121
1539
|
"tags": [
|
|
1540
|
+
"architect",
|
|
1541
|
+
"microservices",
|
|
1542
|
+
"microservices architect",
|
|
1122
1543
|
"microservices-architect",
|
|
1123
1544
|
"workflow-specialists"
|
|
1124
1545
|
],
|
|
1125
1546
|
"path": ".github/skills/microservices-architect/SKILL.md",
|
|
1126
1547
|
"description": "Use when decomposing systems into services, designing service boundaries, choosing sync and async integration patterns, and managing distributed-system reliability tradeoffs.",
|
|
1127
|
-
"triggers": [
|
|
1548
|
+
"triggers": [
|
|
1549
|
+
"microservices-architect",
|
|
1550
|
+
"microservices architect",
|
|
1551
|
+
"microservices",
|
|
1552
|
+
"architect",
|
|
1553
|
+
"workflow-specialists"
|
|
1554
|
+
]
|
|
1128
1555
|
},
|
|
1129
1556
|
{
|
|
1130
1557
|
"id": "mobile-design",
|
|
@@ -1142,12 +1569,21 @@
|
|
|
1142
1569
|
"maturity": "incubating",
|
|
1143
1570
|
"tier": "experimental",
|
|
1144
1571
|
"tags": [
|
|
1572
|
+
"design",
|
|
1573
|
+
"mobile",
|
|
1574
|
+
"mobile design",
|
|
1145
1575
|
"mobile-design",
|
|
1146
1576
|
"vertical-composed"
|
|
1147
1577
|
],
|
|
1148
1578
|
"path": ".github/skills/mobile-design/SKILL.md",
|
|
1149
1579
|
"description": "Design mobile interfaces with touch psychology, platform-native patterns, iOS and Android guidelines, gesture handling, and responsive mobile layouts.",
|
|
1150
|
-
"triggers": [
|
|
1580
|
+
"triggers": [
|
|
1581
|
+
"mobile-design",
|
|
1582
|
+
"mobile design",
|
|
1583
|
+
"mobile",
|
|
1584
|
+
"design",
|
|
1585
|
+
"vertical-composed"
|
|
1586
|
+
]
|
|
1151
1587
|
},
|
|
1152
1588
|
{
|
|
1153
1589
|
"id": "mongodb",
|
|
@@ -1170,7 +1606,10 @@
|
|
|
1170
1606
|
],
|
|
1171
1607
|
"path": ".github/skills/mongodb/SKILL.md",
|
|
1172
1608
|
"description": "Use when the task is specifically MongoDB: document-model design, aggregation pipelines, index strategy, shard-key tradeoffs, and operational guidance for document workloads.",
|
|
1173
|
-
"triggers": [
|
|
1609
|
+
"triggers": [
|
|
1610
|
+
"mongodb",
|
|
1611
|
+
"databases"
|
|
1612
|
+
]
|
|
1174
1613
|
},
|
|
1175
1614
|
{
|
|
1176
1615
|
"id": "mysql",
|
|
@@ -1193,7 +1632,10 @@
|
|
|
1193
1632
|
],
|
|
1194
1633
|
"path": ".github/skills/mysql/SKILL.md",
|
|
1195
1634
|
"description": "Use when the task is specifically MySQL or InnoDB: schema/index design, transaction behavior, replication-aware migrations, query tuning, and managed MySQL operational tradeoffs.",
|
|
1196
|
-
"triggers": [
|
|
1635
|
+
"triggers": [
|
|
1636
|
+
"mysql",
|
|
1637
|
+
"databases"
|
|
1638
|
+
]
|
|
1197
1639
|
},
|
|
1198
1640
|
{
|
|
1199
1641
|
"id": "neki",
|
|
@@ -1216,7 +1658,10 @@
|
|
|
1216
1658
|
],
|
|
1217
1659
|
"path": ".github/skills/neki/SKILL.md",
|
|
1218
1660
|
"description": "Use when the task is specifically Neki, PlanetScale’s sharded Postgres architecture: shard-key design, distributed Postgres tradeoffs, routing constraints, and operational decisions for large-scale Postgres workloads.",
|
|
1219
|
-
"triggers": [
|
|
1661
|
+
"triggers": [
|
|
1662
|
+
"neki",
|
|
1663
|
+
"databases"
|
|
1664
|
+
]
|
|
1220
1665
|
},
|
|
1221
1666
|
{
|
|
1222
1667
|
"id": "nestjs-expert",
|
|
@@ -1234,12 +1679,21 @@
|
|
|
1234
1679
|
"maturity": "stable",
|
|
1235
1680
|
"tier": "curated",
|
|
1236
1681
|
"tags": [
|
|
1682
|
+
"expert",
|
|
1237
1683
|
"frameworks-runtimes",
|
|
1684
|
+
"nestjs",
|
|
1685
|
+
"nestjs expert",
|
|
1238
1686
|
"nestjs-expert"
|
|
1239
1687
|
],
|
|
1240
1688
|
"path": ".github/skills/nestjs-expert/SKILL.md",
|
|
1241
1689
|
"description": "Use when building NestJS services that need strong module boundaries, dependency injection, DTO validation, guards or interceptors, auth boundaries, transport-aware module design, and production-safe TypeScript backend structure.",
|
|
1242
|
-
"triggers": [
|
|
1690
|
+
"triggers": [
|
|
1691
|
+
"nestjs-expert",
|
|
1692
|
+
"nestjs expert",
|
|
1693
|
+
"nestjs",
|
|
1694
|
+
"expert",
|
|
1695
|
+
"frameworks-runtimes"
|
|
1696
|
+
]
|
|
1243
1697
|
},
|
|
1244
1698
|
{
|
|
1245
1699
|
"id": "nextjs-developer",
|
|
@@ -1257,12 +1711,21 @@
|
|
|
1257
1711
|
"maturity": "stable",
|
|
1258
1712
|
"tier": "system",
|
|
1259
1713
|
"tags": [
|
|
1714
|
+
"developer",
|
|
1260
1715
|
"frameworks-runtimes",
|
|
1716
|
+
"nextjs",
|
|
1717
|
+
"nextjs developer",
|
|
1261
1718
|
"nextjs-developer"
|
|
1262
1719
|
],
|
|
1263
1720
|
"path": ".github/skills/nextjs-developer/SKILL.md",
|
|
1264
1721
|
"description": "Use for implementing and reviewing Next.js App Router features, React Server Components and Actions, caching strategy, SEO, and production runtime behavior.",
|
|
1265
|
-
"triggers": [
|
|
1722
|
+
"triggers": [
|
|
1723
|
+
"nextjs-developer",
|
|
1724
|
+
"nextjs developer",
|
|
1725
|
+
"nextjs",
|
|
1726
|
+
"developer",
|
|
1727
|
+
"frameworks-runtimes"
|
|
1728
|
+
]
|
|
1266
1729
|
},
|
|
1267
1730
|
{
|
|
1268
1731
|
"id": "nodejs-best-practices",
|
|
@@ -1281,11 +1744,20 @@
|
|
|
1281
1744
|
"tier": "system",
|
|
1282
1745
|
"tags": [
|
|
1283
1746
|
"frameworks-runtimes",
|
|
1284
|
-
"nodejs
|
|
1747
|
+
"nodejs",
|
|
1748
|
+
"nodejs best practices",
|
|
1749
|
+
"nodejs-best-practices",
|
|
1750
|
+
"practices"
|
|
1285
1751
|
],
|
|
1286
1752
|
"path": ".github/skills/nodejs-best-practices/SKILL.md",
|
|
1287
1753
|
"description": "Use for modern Node.js backend architecture, runtime choices, worker or queue boundaries, edge-vs-server tradeoffs, reliability controls, and production-safe service implementation in the current LTS era.",
|
|
1288
|
-
"triggers": [
|
|
1754
|
+
"triggers": [
|
|
1755
|
+
"nodejs-best-practices",
|
|
1756
|
+
"nodejs best practices",
|
|
1757
|
+
"nodejs",
|
|
1758
|
+
"practices",
|
|
1759
|
+
"frameworks-runtimes"
|
|
1760
|
+
]
|
|
1289
1761
|
},
|
|
1290
1762
|
{
|
|
1291
1763
|
"id": "observability",
|
|
@@ -1308,7 +1780,10 @@
|
|
|
1308
1780
|
],
|
|
1309
1781
|
"path": ".github/skills/observability/SKILL.md",
|
|
1310
1782
|
"description": "Use when designing or reviewing logging, monitoring, tracing, and alerting for production services. Covers structured logging, distributed tracing, metric collection, dashboard design, alert hygiene, SLO definition, and incident readiness across application and infrastructure layers.",
|
|
1311
|
-
"triggers": [
|
|
1783
|
+
"triggers": [
|
|
1784
|
+
"observability",
|
|
1785
|
+
"workflow-specialists"
|
|
1786
|
+
]
|
|
1312
1787
|
},
|
|
1313
1788
|
{
|
|
1314
1789
|
"id": "openai-docs",
|
|
@@ -1327,11 +1802,20 @@
|
|
|
1327
1802
|
"tier": "system",
|
|
1328
1803
|
"tags": [
|
|
1329
1804
|
"core-operating",
|
|
1805
|
+
"docs",
|
|
1806
|
+
"openai",
|
|
1807
|
+
"openai docs",
|
|
1330
1808
|
"openai-docs"
|
|
1331
1809
|
],
|
|
1332
1810
|
"path": ".github/skills/openai-docs/SKILL.md",
|
|
1333
1811
|
"description": "Use when the task depends on current OpenAI platform or product documentation: API usage, model behavior, tool features, SDK guidance, or version-sensitive OpenAI docs that should be verified from official sources.",
|
|
1334
|
-
"triggers": [
|
|
1812
|
+
"triggers": [
|
|
1813
|
+
"openai-docs",
|
|
1814
|
+
"openai docs",
|
|
1815
|
+
"openai",
|
|
1816
|
+
"docs",
|
|
1817
|
+
"core-operating"
|
|
1818
|
+
]
|
|
1335
1819
|
},
|
|
1336
1820
|
{
|
|
1337
1821
|
"id": "performance-profiling",
|
|
@@ -1349,12 +1833,21 @@
|
|
|
1349
1833
|
"maturity": "incubating",
|
|
1350
1834
|
"tier": "experimental",
|
|
1351
1835
|
"tags": [
|
|
1836
|
+
"performance",
|
|
1837
|
+
"performance profiling",
|
|
1352
1838
|
"performance-profiling",
|
|
1839
|
+
"profiling",
|
|
1353
1840
|
"workflow-specialists"
|
|
1354
1841
|
],
|
|
1355
1842
|
"path": ".github/skills/performance-profiling/SKILL.md",
|
|
1356
1843
|
"description": "Use when measuring, analyzing, and optimizing application performance with Core Web Vitals, bundle analysis, runtime profiling, and lighthouse audits.",
|
|
1357
|
-
"triggers": [
|
|
1844
|
+
"triggers": [
|
|
1845
|
+
"performance-profiling",
|
|
1846
|
+
"performance profiling",
|
|
1847
|
+
"performance",
|
|
1848
|
+
"profiling",
|
|
1849
|
+
"workflow-specialists"
|
|
1850
|
+
]
|
|
1358
1851
|
},
|
|
1359
1852
|
{
|
|
1360
1853
|
"id": "php-pro",
|
|
@@ -1373,11 +1866,18 @@
|
|
|
1373
1866
|
"tier": "system",
|
|
1374
1867
|
"tags": [
|
|
1375
1868
|
"languages",
|
|
1869
|
+
"php",
|
|
1870
|
+
"php pro",
|
|
1376
1871
|
"php-pro"
|
|
1377
1872
|
],
|
|
1378
1873
|
"path": ".github/skills/php-pro/SKILL.md",
|
|
1379
1874
|
"description": "Use for modern PHP 8.4-era backend and application engineering with strict typing, framework-aware architecture, testing, and operational safety.",
|
|
1380
|
-
"triggers": [
|
|
1875
|
+
"triggers": [
|
|
1876
|
+
"php-pro",
|
|
1877
|
+
"php pro",
|
|
1878
|
+
"php",
|
|
1879
|
+
"languages"
|
|
1880
|
+
]
|
|
1381
1881
|
},
|
|
1382
1882
|
{
|
|
1383
1883
|
"id": "playwright-e2e",
|
|
@@ -1395,12 +1895,21 @@
|
|
|
1395
1895
|
"maturity": "stable",
|
|
1396
1896
|
"tier": "curated",
|
|
1397
1897
|
"tags": [
|
|
1898
|
+
"e2e",
|
|
1899
|
+
"playwright",
|
|
1900
|
+
"playwright e2e",
|
|
1398
1901
|
"playwright-e2e",
|
|
1399
1902
|
"workflow-specialists"
|
|
1400
1903
|
],
|
|
1401
1904
|
"path": ".github/skills/playwright-e2e/SKILL.md",
|
|
1402
1905
|
"description": "Use when writing or reviewing browser end-to-end tests with Playwright, debugging flaky UI automation, validating auth or checkout flows, or tightening CI evidence with traces and web-first assertions.",
|
|
1403
|
-
"triggers": [
|
|
1906
|
+
"triggers": [
|
|
1907
|
+
"playwright-e2e",
|
|
1908
|
+
"playwright e2e",
|
|
1909
|
+
"playwright",
|
|
1910
|
+
"e2e",
|
|
1911
|
+
"workflow-specialists"
|
|
1912
|
+
]
|
|
1404
1913
|
},
|
|
1405
1914
|
{
|
|
1406
1915
|
"id": "postgres",
|
|
@@ -1423,7 +1932,10 @@
|
|
|
1423
1932
|
],
|
|
1424
1933
|
"path": ".github/skills/postgres/SKILL.md",
|
|
1425
1934
|
"description": "Use when the task is specifically PostgreSQL: schema design with Postgres features, query plans, indexes, JSONB, extensions, partitioning, logical replication, or managed Postgres operational tradeoffs.",
|
|
1426
|
-
"triggers": [
|
|
1935
|
+
"triggers": [
|
|
1936
|
+
"postgres",
|
|
1937
|
+
"databases"
|
|
1938
|
+
]
|
|
1427
1939
|
},
|
|
1428
1940
|
{
|
|
1429
1941
|
"id": "prompt-engineer",
|
|
@@ -1442,11 +1954,20 @@
|
|
|
1442
1954
|
"tier": "system",
|
|
1443
1955
|
"tags": [
|
|
1444
1956
|
"core-operating",
|
|
1957
|
+
"engineer",
|
|
1958
|
+
"prompt",
|
|
1959
|
+
"prompt engineer",
|
|
1445
1960
|
"prompt-engineer"
|
|
1446
1961
|
],
|
|
1447
1962
|
"path": ".github/skills/prompt-engineer/SKILL.md",
|
|
1448
1963
|
"description": "Use when a prompt, instruction set, or agent/system message needs quality review: ambiguity, missing format constraints, unsafe assumptions, injection exposure, weak trigger wording, or brittle task framing.",
|
|
1449
|
-
"triggers": [
|
|
1964
|
+
"triggers": [
|
|
1965
|
+
"prompt-engineer",
|
|
1966
|
+
"prompt engineer",
|
|
1967
|
+
"prompt",
|
|
1968
|
+
"engineer",
|
|
1969
|
+
"core-operating"
|
|
1970
|
+
]
|
|
1450
1971
|
},
|
|
1451
1972
|
{
|
|
1452
1973
|
"id": "python-pro",
|
|
@@ -1465,11 +1986,18 @@
|
|
|
1465
1986
|
"tier": "system",
|
|
1466
1987
|
"tags": [
|
|
1467
1988
|
"languages",
|
|
1989
|
+
"python",
|
|
1990
|
+
"python pro",
|
|
1468
1991
|
"python-pro"
|
|
1469
1992
|
],
|
|
1470
1993
|
"path": ".github/skills/python-pro/SKILL.md",
|
|
1471
1994
|
"description": "Use for production Python with 3.14-era typing, async, packaging, and testing standards. Use when building Python backend services, migrating legacy Python to typed architecture, implementing async I/O, or setting up pytest and packaging workflows.",
|
|
1472
|
-
"triggers": [
|
|
1995
|
+
"triggers": [
|
|
1996
|
+
"python-pro",
|
|
1997
|
+
"python pro",
|
|
1998
|
+
"python",
|
|
1999
|
+
"languages"
|
|
2000
|
+
]
|
|
1473
2001
|
},
|
|
1474
2002
|
{
|
|
1475
2003
|
"id": "react-best-practices",
|
|
@@ -1488,11 +2016,20 @@
|
|
|
1488
2016
|
"tier": "experimental",
|
|
1489
2017
|
"tags": [
|
|
1490
2018
|
"frameworks-runtimes",
|
|
2019
|
+
"practices",
|
|
2020
|
+
"react",
|
|
2021
|
+
"react best practices",
|
|
1491
2022
|
"react-best-practices"
|
|
1492
2023
|
],
|
|
1493
2024
|
"path": ".github/skills/react-best-practices/SKILL.md",
|
|
1494
2025
|
"description": "Use for performance-focused React and Next.js optimization audits, rerender analysis, bundle reduction, and server-rendering efficiency reviews.",
|
|
1495
|
-
"triggers": [
|
|
2026
|
+
"triggers": [
|
|
2027
|
+
"react-best-practices",
|
|
2028
|
+
"react best practices",
|
|
2029
|
+
"react",
|
|
2030
|
+
"practices",
|
|
2031
|
+
"frameworks-runtimes"
|
|
2032
|
+
]
|
|
1496
2033
|
},
|
|
1497
2034
|
{
|
|
1498
2035
|
"id": "react-expert",
|
|
@@ -1510,12 +2047,21 @@
|
|
|
1510
2047
|
"maturity": "stable",
|
|
1511
2048
|
"tier": "system",
|
|
1512
2049
|
"tags": [
|
|
2050
|
+
"expert",
|
|
1513
2051
|
"frameworks-runtimes",
|
|
2052
|
+
"react",
|
|
2053
|
+
"react expert",
|
|
1514
2054
|
"react-expert"
|
|
1515
2055
|
],
|
|
1516
2056
|
"path": ".github/skills/react-expert/SKILL.md",
|
|
1517
2057
|
"description": "Use for framework-agnostic React architecture with React 19 patterns, state design, component boundaries, and rendering-performance decisions.",
|
|
1518
|
-
"triggers": [
|
|
2058
|
+
"triggers": [
|
|
2059
|
+
"react-expert",
|
|
2060
|
+
"react expert",
|
|
2061
|
+
"react",
|
|
2062
|
+
"expert",
|
|
2063
|
+
"frameworks-runtimes"
|
|
2064
|
+
]
|
|
1519
2065
|
},
|
|
1520
2066
|
{
|
|
1521
2067
|
"id": "redis",
|
|
@@ -1538,7 +2084,10 @@
|
|
|
1538
2084
|
],
|
|
1539
2085
|
"path": ".github/skills/redis/SKILL.md",
|
|
1540
2086
|
"description": "Use when the task is specifically Redis: cache design, key strategy, TTLs, queues, rate limiting, pub/sub, memory tradeoffs, and safe persistence or eviction decisions.",
|
|
1541
|
-
"triggers": [
|
|
2087
|
+
"triggers": [
|
|
2088
|
+
"redis",
|
|
2089
|
+
"databases"
|
|
2090
|
+
]
|
|
1542
2091
|
},
|
|
1543
2092
|
{
|
|
1544
2093
|
"id": "ruby-pro",
|
|
@@ -1557,11 +2106,18 @@
|
|
|
1557
2106
|
"tier": "system",
|
|
1558
2107
|
"tags": [
|
|
1559
2108
|
"languages",
|
|
2109
|
+
"ruby",
|
|
2110
|
+
"ruby pro",
|
|
1560
2111
|
"ruby-pro"
|
|
1561
2112
|
],
|
|
1562
2113
|
"path": ".github/skills/ruby-pro/SKILL.md",
|
|
1563
2114
|
"description": "Use for modern Ruby 3.4-era backend, scripting, and application engineering with clear object boundaries, concurrency awareness, and test discipline.",
|
|
1564
|
-
"triggers": [
|
|
2115
|
+
"triggers": [
|
|
2116
|
+
"ruby-pro",
|
|
2117
|
+
"ruby pro",
|
|
2118
|
+
"ruby",
|
|
2119
|
+
"languages"
|
|
2120
|
+
]
|
|
1565
2121
|
},
|
|
1566
2122
|
{
|
|
1567
2123
|
"id": "rust-pro",
|
|
@@ -1580,11 +2136,18 @@
|
|
|
1580
2136
|
"tier": "system",
|
|
1581
2137
|
"tags": [
|
|
1582
2138
|
"languages",
|
|
2139
|
+
"rust",
|
|
2140
|
+
"rust pro",
|
|
1583
2141
|
"rust-pro"
|
|
1584
2142
|
],
|
|
1585
2143
|
"path": ".github/skills/rust-pro/SKILL.md",
|
|
1586
2144
|
"description": "Use for modern Rust systems/services with stable 1.94-era patterns, async correctness, and performance-focused design.",
|
|
1587
|
-
"triggers": [
|
|
2145
|
+
"triggers": [
|
|
2146
|
+
"rust-pro",
|
|
2147
|
+
"rust pro",
|
|
2148
|
+
"rust",
|
|
2149
|
+
"languages"
|
|
2150
|
+
]
|
|
1588
2151
|
},
|
|
1589
2152
|
{
|
|
1590
2153
|
"id": "security-engineer",
|
|
@@ -1602,12 +2165,21 @@
|
|
|
1602
2165
|
"maturity": "incubating",
|
|
1603
2166
|
"tier": "experimental",
|
|
1604
2167
|
"tags": [
|
|
2168
|
+
"engineer",
|
|
2169
|
+
"security",
|
|
2170
|
+
"security engineer",
|
|
1605
2171
|
"security-engineer",
|
|
1606
2172
|
"workflow-specialists"
|
|
1607
2173
|
],
|
|
1608
2174
|
"path": ".github/skills/security-engineer/SKILL.md",
|
|
1609
2175
|
"description": "Apply secure coding practices, OWASP Top 10 mitigations, threat modeling, input validation, and vulnerability prevention across web, API, and backend systems.",
|
|
1610
|
-
"triggers": [
|
|
2176
|
+
"triggers": [
|
|
2177
|
+
"security-engineer",
|
|
2178
|
+
"security engineer",
|
|
2179
|
+
"security",
|
|
2180
|
+
"engineer",
|
|
2181
|
+
"workflow-specialists"
|
|
2182
|
+
]
|
|
1611
2183
|
},
|
|
1612
2184
|
{
|
|
1613
2185
|
"id": "seo-fundamentals",
|
|
@@ -1625,12 +2197,21 @@
|
|
|
1625
2197
|
"maturity": "incubating",
|
|
1626
2198
|
"tier": "experimental",
|
|
1627
2199
|
"tags": [
|
|
2200
|
+
"fundamentals",
|
|
2201
|
+
"seo",
|
|
2202
|
+
"seo fundamentals",
|
|
1628
2203
|
"seo-fundamentals",
|
|
1629
2204
|
"vertical-composed"
|
|
1630
2205
|
],
|
|
1631
2206
|
"path": ".github/skills/seo-fundamentals/SKILL.md",
|
|
1632
2207
|
"description": "Use when implementing technical SEO, content optimization, schema markup, or Core Web Vitals improvements for search engine visibility.",
|
|
1633
|
-
"triggers": [
|
|
2208
|
+
"triggers": [
|
|
2209
|
+
"seo-fundamentals",
|
|
2210
|
+
"seo fundamentals",
|
|
2211
|
+
"seo",
|
|
2212
|
+
"fundamentals",
|
|
2213
|
+
"vertical-composed"
|
|
2214
|
+
]
|
|
1634
2215
|
},
|
|
1635
2216
|
{
|
|
1636
2217
|
"id": "serverless-patterns",
|
|
@@ -1648,12 +2229,21 @@
|
|
|
1648
2229
|
"maturity": "incubating",
|
|
1649
2230
|
"tier": "experimental",
|
|
1650
2231
|
"tags": [
|
|
2232
|
+
"patterns",
|
|
2233
|
+
"serverless",
|
|
2234
|
+
"serverless patterns",
|
|
1651
2235
|
"serverless-patterns",
|
|
1652
2236
|
"workflow-specialists"
|
|
1653
2237
|
],
|
|
1654
2238
|
"path": ".github/skills/serverless-patterns/SKILL.md",
|
|
1655
2239
|
"description": "Design serverless architectures with Lambda, Edge Functions, event-driven patterns, cold start optimization, and cost management strategies.",
|
|
1656
|
-
"triggers": [
|
|
2240
|
+
"triggers": [
|
|
2241
|
+
"serverless-patterns",
|
|
2242
|
+
"serverless patterns",
|
|
2243
|
+
"serverless",
|
|
2244
|
+
"patterns",
|
|
2245
|
+
"workflow-specialists"
|
|
2246
|
+
]
|
|
1657
2247
|
},
|
|
1658
2248
|
{
|
|
1659
2249
|
"id": "skill-creator",
|
|
@@ -1672,11 +2262,20 @@
|
|
|
1672
2262
|
"tier": "system",
|
|
1673
2263
|
"tags": [
|
|
1674
2264
|
"core-operating",
|
|
2265
|
+
"creator",
|
|
2266
|
+
"skill",
|
|
2267
|
+
"skill creator",
|
|
1675
2268
|
"skill-creator"
|
|
1676
2269
|
],
|
|
1677
2270
|
"path": ".github/skills/skill-creator/SKILL.md",
|
|
1678
2271
|
"description": "Create, test, improve, and package portable AI skills using the Agent Skills SKILL.md format across Claude Code, Codex, and GitHub Copilot, with Gemini conversion when needed. Use this when the user wants to build, repair, benchmark, or iterate on a reusable skill package.",
|
|
1679
|
-
"triggers": [
|
|
2272
|
+
"triggers": [
|
|
2273
|
+
"skill-creator",
|
|
2274
|
+
"skill creator",
|
|
2275
|
+
"skill",
|
|
2276
|
+
"creator",
|
|
2277
|
+
"core-operating"
|
|
2278
|
+
]
|
|
1680
2279
|
},
|
|
1681
2280
|
{
|
|
1682
2281
|
"id": "spec-miner",
|
|
@@ -1694,12 +2293,21 @@
|
|
|
1694
2293
|
"maturity": "incubating",
|
|
1695
2294
|
"tier": "experimental",
|
|
1696
2295
|
"tags": [
|
|
2296
|
+
"miner",
|
|
2297
|
+
"spec",
|
|
2298
|
+
"spec miner",
|
|
1697
2299
|
"spec-miner",
|
|
1698
2300
|
"workflow-specialists"
|
|
1699
2301
|
],
|
|
1700
2302
|
"path": ".github/skills/spec-miner/SKILL.md",
|
|
1701
2303
|
"description": "Use when reverse-engineering legacy or undocumented systems into structured specifications with code-grounded evidence and EARS-format requirements.",
|
|
1702
|
-
"triggers": [
|
|
2304
|
+
"triggers": [
|
|
2305
|
+
"spec-miner",
|
|
2306
|
+
"spec miner",
|
|
2307
|
+
"spec",
|
|
2308
|
+
"miner",
|
|
2309
|
+
"workflow-specialists"
|
|
2310
|
+
]
|
|
1703
2311
|
},
|
|
1704
2312
|
{
|
|
1705
2313
|
"id": "sqlite",
|
|
@@ -1722,7 +2330,10 @@
|
|
|
1722
2330
|
],
|
|
1723
2331
|
"path": ".github/skills/sqlite/SKILL.md",
|
|
1724
2332
|
"description": "Use when the task is specifically SQLite or libSQL/Turso-style SQLite: local-first schema design, WAL/concurrency tradeoffs, embedded deployments, and lightweight migration strategy.",
|
|
1725
|
-
"triggers": [
|
|
2333
|
+
"triggers": [
|
|
2334
|
+
"sqlite",
|
|
2335
|
+
"databases"
|
|
2336
|
+
]
|
|
1726
2337
|
},
|
|
1727
2338
|
{
|
|
1728
2339
|
"id": "sre-engineer",
|
|
@@ -1740,12 +2351,21 @@
|
|
|
1740
2351
|
"maturity": "incubating",
|
|
1741
2352
|
"tier": "experimental",
|
|
1742
2353
|
"tags": [
|
|
2354
|
+
"engineer",
|
|
2355
|
+
"sre",
|
|
2356
|
+
"sre engineer",
|
|
1743
2357
|
"sre-engineer",
|
|
1744
2358
|
"workflow-specialists"
|
|
1745
2359
|
],
|
|
1746
2360
|
"path": ".github/skills/sre-engineer/SKILL.md",
|
|
1747
2361
|
"description": "Apply site reliability engineering practices including SLOs, error budgets, capacity planning, chaos engineering, and incident management for production systems.",
|
|
1748
|
-
"triggers": [
|
|
2362
|
+
"triggers": [
|
|
2363
|
+
"sre-engineer",
|
|
2364
|
+
"sre engineer",
|
|
2365
|
+
"sre",
|
|
2366
|
+
"engineer",
|
|
2367
|
+
"workflow-specialists"
|
|
2368
|
+
]
|
|
1749
2369
|
},
|
|
1750
2370
|
{
|
|
1751
2371
|
"id": "static-analysis",
|
|
@@ -1763,12 +2383,21 @@
|
|
|
1763
2383
|
"maturity": "incubating",
|
|
1764
2384
|
"tier": "experimental",
|
|
1765
2385
|
"tags": [
|
|
2386
|
+
"analysis",
|
|
2387
|
+
"static",
|
|
2388
|
+
"static analysis",
|
|
1766
2389
|
"static-analysis",
|
|
1767
2390
|
"workflow-specialists"
|
|
1768
2391
|
],
|
|
1769
2392
|
"path": ".github/skills/static-analysis/SKILL.md",
|
|
1770
2393
|
"description": "Configure and use static analysis tools including linters, formatters, type checkers, and custom rules to enforce code quality and consistency.",
|
|
1771
|
-
"triggers": [
|
|
2394
|
+
"triggers": [
|
|
2395
|
+
"static-analysis",
|
|
2396
|
+
"static analysis",
|
|
2397
|
+
"static",
|
|
2398
|
+
"analysis",
|
|
2399
|
+
"workflow-specialists"
|
|
2400
|
+
]
|
|
1772
2401
|
},
|
|
1773
2402
|
{
|
|
1774
2403
|
"id": "stripe-best-practices",
|
|
@@ -1786,12 +2415,21 @@
|
|
|
1786
2415
|
"maturity": "incubating",
|
|
1787
2416
|
"tier": "experimental",
|
|
1788
2417
|
"tags": [
|
|
2418
|
+
"practices",
|
|
2419
|
+
"stripe",
|
|
2420
|
+
"stripe best practices",
|
|
1789
2421
|
"stripe-best-practices",
|
|
1790
2422
|
"workflow-specialists"
|
|
1791
2423
|
],
|
|
1792
2424
|
"path": ".github/skills/stripe-best-practices/SKILL.md",
|
|
1793
2425
|
"description": "Implement Stripe payments, subscriptions, webhooks, checkout flows, and billing management with security and compliance best practices.",
|
|
1794
|
-
"triggers": [
|
|
2426
|
+
"triggers": [
|
|
2427
|
+
"stripe-best-practices",
|
|
2428
|
+
"stripe best practices",
|
|
2429
|
+
"stripe",
|
|
2430
|
+
"practices",
|
|
2431
|
+
"workflow-specialists"
|
|
2432
|
+
]
|
|
1795
2433
|
},
|
|
1796
2434
|
{
|
|
1797
2435
|
"id": "supabase",
|
|
@@ -1814,7 +2452,10 @@
|
|
|
1814
2452
|
],
|
|
1815
2453
|
"path": ".github/skills/supabase/SKILL.md",
|
|
1816
2454
|
"description": "Use when the task is specifically Supabase: managed Postgres with RLS, auth, storage, edge functions, branching, and product decisions that depend on Supabase platform behavior.",
|
|
1817
|
-
"triggers": [
|
|
2455
|
+
"triggers": [
|
|
2456
|
+
"supabase",
|
|
2457
|
+
"databases"
|
|
2458
|
+
]
|
|
1818
2459
|
},
|
|
1819
2460
|
{
|
|
1820
2461
|
"id": "swift-pro",
|
|
@@ -1833,11 +2474,18 @@
|
|
|
1833
2474
|
"tier": "system",
|
|
1834
2475
|
"tags": [
|
|
1835
2476
|
"languages",
|
|
2477
|
+
"swift",
|
|
2478
|
+
"swift pro",
|
|
1836
2479
|
"swift-pro"
|
|
1837
2480
|
],
|
|
1838
2481
|
"path": ".github/skills/swift-pro/SKILL.md",
|
|
1839
2482
|
"description": "Use for modern Swift 6.1-era application and systems engineering with strong concurrency, protocol boundaries, package structure, and Apple-platform correctness.",
|
|
1840
|
-
"triggers": [
|
|
2483
|
+
"triggers": [
|
|
2484
|
+
"swift-pro",
|
|
2485
|
+
"swift pro",
|
|
2486
|
+
"swift",
|
|
2487
|
+
"languages"
|
|
2488
|
+
]
|
|
1841
2489
|
},
|
|
1842
2490
|
{
|
|
1843
2491
|
"id": "tailwind-patterns",
|
|
@@ -1856,11 +2504,20 @@
|
|
|
1856
2504
|
"tier": "curated",
|
|
1857
2505
|
"tags": [
|
|
1858
2506
|
"frameworks-runtimes",
|
|
2507
|
+
"patterns",
|
|
2508
|
+
"tailwind",
|
|
2509
|
+
"tailwind patterns",
|
|
1859
2510
|
"tailwind-patterns"
|
|
1860
2511
|
],
|
|
1861
2512
|
"path": ".github/skills/tailwind-patterns/SKILL.md",
|
|
1862
2513
|
"description": "Use for Tailwind CSS v4 architecture, CSS-first theme setup, utility composition, container-query usage, design-token hygiene, and dark-mode strategy.",
|
|
1863
|
-
"triggers": [
|
|
2514
|
+
"triggers": [
|
|
2515
|
+
"tailwind-patterns",
|
|
2516
|
+
"tailwind patterns",
|
|
2517
|
+
"tailwind",
|
|
2518
|
+
"patterns",
|
|
2519
|
+
"frameworks-runtimes"
|
|
2520
|
+
]
|
|
1864
2521
|
},
|
|
1865
2522
|
{
|
|
1866
2523
|
"id": "testing-patterns",
|
|
@@ -1878,12 +2535,21 @@
|
|
|
1878
2535
|
"maturity": "incubating",
|
|
1879
2536
|
"tier": "experimental",
|
|
1880
2537
|
"tags": [
|
|
2538
|
+
"patterns",
|
|
2539
|
+
"testing",
|
|
2540
|
+
"testing patterns",
|
|
1881
2541
|
"testing-patterns",
|
|
1882
2542
|
"workflow-specialists"
|
|
1883
2543
|
],
|
|
1884
2544
|
"path": ".github/skills/testing-patterns/SKILL.md",
|
|
1885
2545
|
"description": "Design test strategies with unit, integration, and e2e testing. Apply TDD, mocking, fixtures, coverage analysis, and test architecture best practices.",
|
|
1886
|
-
"triggers": [
|
|
2546
|
+
"triggers": [
|
|
2547
|
+
"testing-patterns",
|
|
2548
|
+
"testing patterns",
|
|
2549
|
+
"testing",
|
|
2550
|
+
"patterns",
|
|
2551
|
+
"workflow-specialists"
|
|
2552
|
+
]
|
|
1887
2553
|
},
|
|
1888
2554
|
{
|
|
1889
2555
|
"id": "typescript-pro",
|
|
@@ -1902,11 +2568,18 @@
|
|
|
1902
2568
|
"tier": "system",
|
|
1903
2569
|
"tags": [
|
|
1904
2570
|
"languages",
|
|
2571
|
+
"typescript",
|
|
2572
|
+
"typescript pro",
|
|
1905
2573
|
"typescript-pro"
|
|
1906
2574
|
],
|
|
1907
2575
|
"path": ".github/skills/typescript-pro/SKILL.md",
|
|
1908
2576
|
"description": "Use for TypeScript architecture and implementation with TS 5.9+ production baselines and TS 6/7 transition readiness. Use when designing type-safe APIs, refactoring to strict TypeScript, reducing type regressions in monorepos, or preparing for TS 6/7 behavior shifts.",
|
|
1909
|
-
"triggers": [
|
|
2577
|
+
"triggers": [
|
|
2578
|
+
"typescript-pro",
|
|
2579
|
+
"typescript pro",
|
|
2580
|
+
"typescript",
|
|
2581
|
+
"languages"
|
|
2582
|
+
]
|
|
1910
2583
|
},
|
|
1911
2584
|
{
|
|
1912
2585
|
"id": "vitess",
|
|
@@ -1929,7 +2602,10 @@
|
|
|
1929
2602
|
],
|
|
1930
2603
|
"path": ".github/skills/vitess/SKILL.md",
|
|
1931
2604
|
"description": "Use when the task is specifically Vitess or Vitess-backed MySQL platforms: shard-key design, vindexes, resharding, query-routing constraints, Online DDL, and operational tradeoffs for horizontally scaled MySQL.",
|
|
1932
|
-
"triggers": [
|
|
2605
|
+
"triggers": [
|
|
2606
|
+
"vitess",
|
|
2607
|
+
"databases"
|
|
2608
|
+
]
|
|
1933
2609
|
},
|
|
1934
2610
|
{
|
|
1935
2611
|
"id": "vulnerability-scanner",
|
|
@@ -1947,12 +2623,21 @@
|
|
|
1947
2623
|
"maturity": "incubating",
|
|
1948
2624
|
"tier": "experimental",
|
|
1949
2625
|
"tags": [
|
|
2626
|
+
"scanner",
|
|
2627
|
+
"vulnerability",
|
|
2628
|
+
"vulnerability scanner",
|
|
1950
2629
|
"vulnerability-scanner",
|
|
1951
2630
|
"workflow-specialists"
|
|
1952
2631
|
],
|
|
1953
2632
|
"path": ".github/skills/vulnerability-scanner/SKILL.md",
|
|
1954
2633
|
"description": "Scan dependencies for CVEs, perform SAST/DAST analysis, manage security advisories, and implement automated vulnerability management workflows.",
|
|
1955
|
-
"triggers": [
|
|
2634
|
+
"triggers": [
|
|
2635
|
+
"vulnerability-scanner",
|
|
2636
|
+
"vulnerability scanner",
|
|
2637
|
+
"vulnerability",
|
|
2638
|
+
"scanner",
|
|
2639
|
+
"workflow-specialists"
|
|
2640
|
+
]
|
|
1956
2641
|
},
|
|
1957
2642
|
{
|
|
1958
2643
|
"id": "web-perf",
|
|
@@ -1971,11 +2656,20 @@
|
|
|
1971
2656
|
"tier": "curated",
|
|
1972
2657
|
"tags": [
|
|
1973
2658
|
"frameworks-runtimes",
|
|
2659
|
+
"perf",
|
|
2660
|
+
"web",
|
|
2661
|
+
"web perf",
|
|
1974
2662
|
"web-perf"
|
|
1975
2663
|
],
|
|
1976
2664
|
"path": ".github/skills/web-perf/SKILL.md",
|
|
1977
2665
|
"description": "Use for measuring and improving web performance with Core Web Vitals, rendering-path analysis, bundle and network prioritization, and framework-aware delivery tradeoffs.",
|
|
1978
|
-
"triggers": [
|
|
2666
|
+
"triggers": [
|
|
2667
|
+
"web-perf",
|
|
2668
|
+
"web perf",
|
|
2669
|
+
"web",
|
|
2670
|
+
"perf",
|
|
2671
|
+
"frameworks-runtimes"
|
|
2672
|
+
]
|
|
1979
2673
|
},
|
|
1980
2674
|
{
|
|
1981
2675
|
"id": "webapp-testing",
|
|
@@ -1994,10 +2688,19 @@
|
|
|
1994
2688
|
"tier": "curated",
|
|
1995
2689
|
"tags": [
|
|
1996
2690
|
"frameworks-runtimes",
|
|
2691
|
+
"testing",
|
|
2692
|
+
"webapp",
|
|
2693
|
+
"webapp testing",
|
|
1997
2694
|
"webapp-testing"
|
|
1998
2695
|
],
|
|
1999
2696
|
"path": ".github/skills/webapp-testing/SKILL.md",
|
|
2000
2697
|
"description": "Use when choosing test depth for a web product, balancing unit, integration, browser, accessibility, and contract checks, or reviewing whether a change has the right verification shape before release.",
|
|
2001
|
-
"triggers": [
|
|
2698
|
+
"triggers": [
|
|
2699
|
+
"webapp-testing",
|
|
2700
|
+
"webapp testing",
|
|
2701
|
+
"webapp",
|
|
2702
|
+
"testing",
|
|
2703
|
+
"frameworks-runtimes"
|
|
2704
|
+
]
|
|
2002
2705
|
}
|
|
2003
2706
|
]
|