-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathregistry.json
More file actions
300 lines (300 loc) · 10.6 KB
/
registry.json
File metadata and controls
300 lines (300 loc) · 10.6 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
{
"version": 1,
"skills": [
{
"name": "code-review",
"description": "Conduct thorough, constructive code reviews for quality and security. Use when reviewing pull requests, checking code quality, identifying bugs, or auditing security. Handles best practices, SOLID principles, security vulnerabilities, performance analysis, and testing coverage.",
"tags": [
"code-review",
"code-quality",
"security",
"best-practices",
"PR-review"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/code-review/SKILL.md",
"author": "locusai"
},
{
"name": "find-skills",
"description": "Helps users discover and install agent skills when they ask questions like \"how do I do X\", \"find a skill for X\", \"is there a skill that can...\", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.",
"tags": ["skills", "discovery", "marketplace", "search"],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/find-skills/SKILL.md",
"author": "locusai"
},
{
"name": "frontend-design",
"description": "Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.",
"tags": ["frontend", "design", "ui", "css", "react", "web"],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/frontend-design/SKILL.md",
"author": "locusai"
},
{
"name": "conventional-commits",
"description": "Write well-structured conventional commit messages. Use when committing code changes to ensure consistent, parseable commit history that enables automated changelogs and semantic versioning.",
"tags": [
"git",
"commits",
"conventional-commits",
"changelog",
"versioning",
"release"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/conventional-commits/SKILL.md",
"author": "locusai"
},
{
"name": "git-essentials",
"description": "Expert Git workflow assistance for branching, merging, rebasing, conflict resolution, and history management. Use when working with Git operations beyond simple commits.",
"tags": [
"git",
"branching",
"merging",
"rebasing",
"conflicts",
"version-control",
"workflow"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/git-essentials/SKILL.md",
"author": "locusai"
},
{
"name": "github-cli",
"description": "Automate GitHub workflows using the gh CLI for pull requests, issues, releases, actions, and repository management. Use when interacting with GitHub beyond basic git operations.",
"tags": [
"github",
"gh",
"pull-request",
"issues",
"actions",
"releases",
"ci-cd",
"pr",
"workflow"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/github-cli/SKILL.md",
"author": "locusai"
},
{
"name": "context-builder",
"description": "Gather comprehensive project context before starting implementation. Use at the beginning of complex tasks to understand codebase structure, dependencies, patterns, and conventions before writing code.",
"tags": [
"context",
"codebase",
"analysis",
"exploration",
"architecture",
"onboarding",
"understanding"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/context-builder/SKILL.md",
"author": "locusai"
},
{
"name": "test-generator",
"description": "Generate comprehensive unit, integration, and end-to-end tests. Use when adding test coverage, writing tests for new features, or improving existing test suites.",
"tags": [
"testing",
"unit-tests",
"integration-tests",
"e2e",
"jest",
"vitest",
"pytest",
"coverage"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/test-generator/SKILL.md",
"author": "locusai"
},
{
"name": "docker-essentials",
"description": "Create and optimize Dockerfiles, docker-compose configurations, and container workflows. Use when containerizing applications, setting up development environments, or optimizing Docker builds.",
"tags": [
"docker",
"containers",
"dockerfile",
"docker-compose",
"devops",
"deployment",
"containerization"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/docker-essentials/SKILL.md",
"author": "locusai"
},
{
"name": "api-design",
"description": "Design and implement RESTful APIs with proper routing, validation, error handling, and documentation. Use when building new API endpoints, designing API architecture, or improving existing APIs.",
"tags": [
"api",
"rest",
"graphql",
"endpoints",
"http",
"routing",
"validation",
"openapi"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/api-design/SKILL.md",
"author": "locusai"
},
{
"name": "debugging",
"description": "Systematically diagnose and fix bugs using structured debugging techniques. Use when investigating errors, unexpected behavior, failing tests, or production issues.",
"tags": [
"debugging",
"errors",
"troubleshooting",
"logs",
"stack-trace",
"bugs",
"diagnostics"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/debugging/SKILL.md",
"author": "locusai"
},
{
"name": "refactoring",
"description": "Improve code structure without changing behavior using proven refactoring patterns. Use when cleaning up code, reducing duplication, improving readability, or restructuring modules.",
"tags": [
"refactoring",
"clean-code",
"code-quality",
"design-patterns",
"maintainability",
"technical-debt"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/refactoring/SKILL.md",
"author": "locusai"
},
{
"name": "performance-optimizer",
"description": "Profile, diagnose, and fix performance bottlenecks in applications. Use when optimizing slow queries, reducing load times, improving runtime performance, or reducing memory usage.",
"tags": [
"performance",
"optimization",
"profiling",
"caching",
"database",
"memory",
"latency",
"speed"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/performance-optimizer/SKILL.md",
"author": "locusai"
},
{
"name": "dependency-manager",
"description": "Manage project dependencies — update packages, audit vulnerabilities, resolve conflicts, and keep dependencies healthy. Use when updating packages, fixing vulnerability alerts, or resolving dependency issues.",
"tags": [
"dependencies",
"npm",
"yarn",
"pip",
"packages",
"vulnerabilities",
"security",
"updates",
"audit"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/dependency-manager/SKILL.md",
"author": "locusai"
},
{
"name": "ci-cd-pipeline",
"description": "Create and optimize CI/CD pipelines with GitHub Actions, automated testing, deployment, and release workflows. Use when setting up continuous integration, deployment automation, or improving build pipelines.",
"tags": [
"ci-cd",
"github-actions",
"deployment",
"automation",
"pipeline",
"testing",
"release",
"devops"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/ci-cd-pipeline/SKILL.md",
"author": "locusai"
},
{
"name": "error-handling",
"description": "Implement robust error handling with custom error types, proper propagation, user-friendly messages, and logging. Use when adding error handling to APIs, libraries, or applications.",
"tags": [
"errors",
"error-handling",
"exceptions",
"logging",
"validation",
"resilience",
"fault-tolerance"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/error-handling/SKILL.md",
"author": "locusai"
},
{
"name": "security-audit",
"description": "Audit code and infrastructure for security vulnerabilities. Use when performing security reviews, checking for OWASP Top 10 issues, auditing dependencies, or hardening applications.",
"tags": [
"security",
"audit",
"vulnerabilities",
"owasp",
"xss",
"sql-injection",
"authentication",
"secrets"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/security-audit/SKILL.md",
"author": "locusai"
},
{
"name": "documentation-writer",
"description": "Write clear technical documentation including READMEs, API docs, architecture guides, and inline documentation. Use when creating or improving project documentation.",
"tags": [
"documentation",
"readme",
"api-docs",
"technical-writing",
"jsdoc",
"docstrings",
"guides"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/documentation-writer/SKILL.md",
"author": "locusai"
},
{
"name": "database-sql",
"description": "Design database schemas, write efficient SQL queries, create migrations, and optimize database performance. Use when working with databases, writing queries, or designing data models.",
"tags": [
"database",
"sql",
"postgresql",
"mysql",
"migrations",
"schema",
"queries",
"orm",
"data-modeling"
],
"platforms": ["Claude", "ChatGPT", "Gemini"],
"path": "skills/database-sql/SKILL.md",
"author": "locusai"
}
]
}