@crowdlisten/harness 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +167 -0
- package/LICENSE +21 -0
- package/README.md +153 -0
- package/dist/agent-proxy.d.ts +24 -0
- package/dist/agent-proxy.js +140 -0
- package/dist/agent-tools.d.ts +736 -0
- package/dist/agent-tools.js +409 -0
- package/dist/context/api.d.ts +5 -0
- package/dist/context/api.js +164 -0
- package/dist/context/cli.d.ts +19 -0
- package/dist/context/cli.js +108 -0
- package/dist/context/extractor.d.ts +12 -0
- package/dist/context/extractor.js +43 -0
- package/dist/context/index.d.ts +12 -0
- package/dist/context/index.js +11 -0
- package/dist/context/matcher.d.ts +39 -0
- package/dist/context/matcher.js +246 -0
- package/dist/context/parser.d.ts +28 -0
- package/dist/context/parser.js +157 -0
- package/dist/context/pipeline.d.ts +26 -0
- package/dist/context/pipeline.js +56 -0
- package/dist/context/prompts.d.ts +6 -0
- package/dist/context/prompts.js +60 -0
- package/dist/context/providers.d.ts +6 -0
- package/dist/context/providers.js +106 -0
- package/dist/context/redactor.d.ts +10 -0
- package/dist/context/redactor.js +68 -0
- package/dist/context/server.d.ts +5 -0
- package/dist/context/server.js +134 -0
- package/dist/context/store.d.ts +12 -0
- package/dist/context/store.js +82 -0
- package/dist/context/types.d.ts +79 -0
- package/dist/context/types.js +4 -0
- package/dist/context/user-state.d.ts +40 -0
- package/dist/context/user-state.js +144 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +385 -0
- package/dist/insights/browser/BrowserPool.d.ts +87 -0
- package/dist/insights/browser/BrowserPool.js +266 -0
- package/dist/insights/browser/RequestInterceptor.d.ts +46 -0
- package/dist/insights/browser/RequestInterceptor.js +115 -0
- package/dist/insights/cli.d.ts +8 -0
- package/dist/insights/cli.js +206 -0
- package/dist/insights/core/base/BaseAdapter.d.ts +37 -0
- package/dist/insights/core/base/BaseAdapter.js +123 -0
- package/dist/insights/core/health/HealthMonitor.d.ts +75 -0
- package/dist/insights/core/health/HealthMonitor.js +171 -0
- package/dist/insights/core/interfaces/SocialMediaPlatform.d.ts +125 -0
- package/dist/insights/core/interfaces/SocialMediaPlatform.js +42 -0
- package/dist/insights/core/utils/DataNormalizer.d.ts +53 -0
- package/dist/insights/core/utils/DataNormalizer.js +349 -0
- package/dist/insights/core/utils/InstagramUrlUtils.d.ts +11 -0
- package/dist/insights/core/utils/InstagramUrlUtils.js +60 -0
- package/dist/insights/core/utils/TikTokUrlUtils.d.ts +10 -0
- package/dist/insights/core/utils/TikTokUrlUtils.js +57 -0
- package/dist/insights/handlers.d.ts +157 -0
- package/dist/insights/handlers.js +246 -0
- package/dist/insights/index.d.ts +437 -0
- package/dist/insights/index.js +426 -0
- package/dist/insights/platforms/instagram/InstagramAdapter.d.ts +34 -0
- package/dist/insights/platforms/instagram/InstagramAdapter.js +342 -0
- package/dist/insights/platforms/moltbook/MoltbookAdapter.d.ts +31 -0
- package/dist/insights/platforms/moltbook/MoltbookAdapter.js +227 -0
- package/dist/insights/platforms/reddit/RedditAdapter.d.ts +21 -0
- package/dist/insights/platforms/reddit/RedditAdapter.js +212 -0
- package/dist/insights/platforms/tiktok/TikTokAdapter.d.ts +34 -0
- package/dist/insights/platforms/tiktok/TikTokAdapter.js +269 -0
- package/dist/insights/platforms/twitter/TwitterAdapter.d.ts +23 -0
- package/dist/insights/platforms/twitter/TwitterAdapter.js +211 -0
- package/dist/insights/platforms/xiaohongshu/XiaohongshuAdapter.d.ts +35 -0
- package/dist/insights/platforms/xiaohongshu/XiaohongshuAdapter.js +258 -0
- package/dist/insights/platforms/youtube/YouTubeAdapter.d.ts +22 -0
- package/dist/insights/platforms/youtube/YouTubeAdapter.js +254 -0
- package/dist/insights/service-config.d.ts +7 -0
- package/dist/insights/service-config.js +60 -0
- package/dist/insights/services/UnifiedSocialMediaService.d.ts +94 -0
- package/dist/insights/services/UnifiedSocialMediaService.js +259 -0
- package/dist/insights/vision/VisionExtractor.d.ts +46 -0
- package/dist/insights/vision/VisionExtractor.js +236 -0
- package/dist/learnings.d.ts +50 -0
- package/dist/learnings.js +130 -0
- package/dist/openapi.d.ts +29 -0
- package/dist/openapi.js +169 -0
- package/dist/server-factory.d.ts +20 -0
- package/dist/server-factory.js +41 -0
- package/dist/suggestions.d.ts +16 -0
- package/dist/suggestions.js +72 -0
- package/dist/telemetry.d.ts +44 -0
- package/dist/telemetry.js +93 -0
- package/dist/tools/registry.d.ts +65 -0
- package/dist/tools/registry.js +256 -0
- package/dist/tools.d.ts +2433 -0
- package/dist/tools.js +2294 -0
- package/dist/transport/http.d.ts +15 -0
- package/dist/transport/http.js +154 -0
- package/package.json +76 -0
- package/skills/catalog.json +272 -0
- package/skills/community-catalog.json +4202 -0
- package/skills/competitive-analysis/SKILL.md +174 -0
- package/skills/content-creator/SKILL.md +256 -0
- package/skills/content-strategy/SKILL.md +222 -0
- package/skills/data-storytelling/SKILL.md +248 -0
- package/skills/heuristic-evaluation/SKILL.md +201 -0
- package/skills/market-research-reports/SKILL.md +184 -0
- package/skills/user-stories/SKILL.md +178 -0
- package/skills/ux-researcher/SKILL.md +239 -0
- package/web-dist/assets/index-B1b25lNd.css +1 -0
- package/web-dist/assets/index-CDWHwHbl.js +64 -0
- package/web-dist/index.html +16 -0
|
@@ -0,0 +1,4202 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "comm-code-review",
|
|
4
|
+
"name": "Code Review",
|
|
5
|
+
"description": "Automated code review with best practices, design patterns, and security checks",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"code",
|
|
8
|
+
"review",
|
|
9
|
+
"quality",
|
|
10
|
+
"lint",
|
|
11
|
+
"refactor",
|
|
12
|
+
"patterns",
|
|
13
|
+
"security",
|
|
14
|
+
"best-practices"
|
|
15
|
+
],
|
|
16
|
+
"tier": "community",
|
|
17
|
+
"category": "development",
|
|
18
|
+
"installMethod": "copy",
|
|
19
|
+
"installTarget": "https://raw.githubusercontent.com/mattpocock/skills/main/code-review/SKILL.md",
|
|
20
|
+
"source": "mattpocock/skills",
|
|
21
|
+
"author": "Matt Pocock"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "comm-typescript-expert",
|
|
25
|
+
"name": "TypeScript Expert",
|
|
26
|
+
"description": "Advanced TypeScript type engineering, generics, conditional types, and type-safe patterns",
|
|
27
|
+
"keywords": [
|
|
28
|
+
"typescript",
|
|
29
|
+
"types",
|
|
30
|
+
"generics",
|
|
31
|
+
"conditional",
|
|
32
|
+
"type-safe",
|
|
33
|
+
"inference",
|
|
34
|
+
"utility"
|
|
35
|
+
],
|
|
36
|
+
"tier": "community",
|
|
37
|
+
"category": "development",
|
|
38
|
+
"installMethod": "copy",
|
|
39
|
+
"installTarget": "https://raw.githubusercontent.com/mattpocock/skills/main/typescript/SKILL.md",
|
|
40
|
+
"source": "mattpocock/skills",
|
|
41
|
+
"author": "Matt Pocock"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"id": "comm-testing-expert",
|
|
45
|
+
"name": "Testing Expert",
|
|
46
|
+
"description": "Comprehensive test writing with unit, integration, and e2e testing best practices",
|
|
47
|
+
"keywords": [
|
|
48
|
+
"testing",
|
|
49
|
+
"unit",
|
|
50
|
+
"integration",
|
|
51
|
+
"e2e",
|
|
52
|
+
"vitest",
|
|
53
|
+
"jest",
|
|
54
|
+
"test-driven",
|
|
55
|
+
"coverage"
|
|
56
|
+
],
|
|
57
|
+
"tier": "community",
|
|
58
|
+
"category": "development",
|
|
59
|
+
"installMethod": "copy",
|
|
60
|
+
"installTarget": "https://raw.githubusercontent.com/mattpocock/skills/main/testing/SKILL.md",
|
|
61
|
+
"source": "mattpocock/skills",
|
|
62
|
+
"author": "Matt Pocock"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"id": "comm-react-expert",
|
|
66
|
+
"name": "React Expert",
|
|
67
|
+
"description": "React component design, hooks patterns, performance optimization, and state management",
|
|
68
|
+
"keywords": [
|
|
69
|
+
"react",
|
|
70
|
+
"hooks",
|
|
71
|
+
"components",
|
|
72
|
+
"state",
|
|
73
|
+
"performance",
|
|
74
|
+
"rendering",
|
|
75
|
+
"jsx",
|
|
76
|
+
"frontend"
|
|
77
|
+
],
|
|
78
|
+
"tier": "community",
|
|
79
|
+
"category": "development",
|
|
80
|
+
"installMethod": "copy",
|
|
81
|
+
"installTarget": "https://raw.githubusercontent.com/mattpocock/skills/main/react/SKILL.md",
|
|
82
|
+
"source": "mattpocock/skills",
|
|
83
|
+
"author": "Matt Pocock"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"id": "comm-nextjs-expert",
|
|
87
|
+
"name": "Next.js Expert",
|
|
88
|
+
"description": "Next.js App Router, server components, data fetching, caching, and deployment patterns",
|
|
89
|
+
"keywords": [
|
|
90
|
+
"nextjs",
|
|
91
|
+
"react",
|
|
92
|
+
"server-components",
|
|
93
|
+
"app-router",
|
|
94
|
+
"ssr",
|
|
95
|
+
"ssg",
|
|
96
|
+
"vercel",
|
|
97
|
+
"routing"
|
|
98
|
+
],
|
|
99
|
+
"tier": "community",
|
|
100
|
+
"category": "development",
|
|
101
|
+
"installMethod": "copy",
|
|
102
|
+
"installTarget": "https://raw.githubusercontent.com/mattpocock/skills/main/nextjs/SKILL.md",
|
|
103
|
+
"source": "mattpocock/skills",
|
|
104
|
+
"author": "Matt Pocock"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"id": "comm-css-expert",
|
|
108
|
+
"name": "CSS Expert",
|
|
109
|
+
"description": "Modern CSS, Tailwind, animations, responsive design, and layout patterns",
|
|
110
|
+
"keywords": [
|
|
111
|
+
"css",
|
|
112
|
+
"tailwind",
|
|
113
|
+
"responsive",
|
|
114
|
+
"animations",
|
|
115
|
+
"layout",
|
|
116
|
+
"flexbox",
|
|
117
|
+
"grid",
|
|
118
|
+
"styling"
|
|
119
|
+
],
|
|
120
|
+
"tier": "community",
|
|
121
|
+
"category": "design",
|
|
122
|
+
"installMethod": "copy",
|
|
123
|
+
"installTarget": "https://raw.githubusercontent.com/mattpocock/skills/main/css/SKILL.md",
|
|
124
|
+
"source": "mattpocock/skills",
|
|
125
|
+
"author": "Matt Pocock"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"id": "comm-git-expert",
|
|
129
|
+
"name": "Git Expert",
|
|
130
|
+
"description": "Git workflows, branching strategies, rebasing, conflict resolution, and commit conventions",
|
|
131
|
+
"keywords": [
|
|
132
|
+
"git",
|
|
133
|
+
"version-control",
|
|
134
|
+
"branching",
|
|
135
|
+
"rebase",
|
|
136
|
+
"merge",
|
|
137
|
+
"commit",
|
|
138
|
+
"workflow"
|
|
139
|
+
],
|
|
140
|
+
"tier": "community",
|
|
141
|
+
"category": "development",
|
|
142
|
+
"installMethod": "copy",
|
|
143
|
+
"installTarget": "https://raw.githubusercontent.com/mattpocock/skills/main/git/SKILL.md",
|
|
144
|
+
"source": "mattpocock/skills",
|
|
145
|
+
"author": "Matt Pocock"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"id": "comm-debugging",
|
|
149
|
+
"name": "Debugging Expert",
|
|
150
|
+
"description": "Systematic debugging strategies, error diagnosis, and root cause analysis",
|
|
151
|
+
"keywords": [
|
|
152
|
+
"debugging",
|
|
153
|
+
"errors",
|
|
154
|
+
"diagnosis",
|
|
155
|
+
"root-cause",
|
|
156
|
+
"troubleshooting",
|
|
157
|
+
"logging",
|
|
158
|
+
"stack-trace"
|
|
159
|
+
],
|
|
160
|
+
"tier": "community",
|
|
161
|
+
"category": "development",
|
|
162
|
+
"installMethod": "copy",
|
|
163
|
+
"installTarget": "https://raw.githubusercontent.com/mattpocock/skills/main/debugging/SKILL.md",
|
|
164
|
+
"source": "mattpocock/skills",
|
|
165
|
+
"author": "Matt Pocock"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"id": "comm-refactoring",
|
|
169
|
+
"name": "Refactoring Expert",
|
|
170
|
+
"description": "Code refactoring patterns, clean code principles, and technical debt reduction",
|
|
171
|
+
"keywords": [
|
|
172
|
+
"refactoring",
|
|
173
|
+
"clean-code",
|
|
174
|
+
"technical-debt",
|
|
175
|
+
"patterns",
|
|
176
|
+
"solid",
|
|
177
|
+
"maintainability"
|
|
178
|
+
],
|
|
179
|
+
"tier": "community",
|
|
180
|
+
"category": "development",
|
|
181
|
+
"installMethod": "copy",
|
|
182
|
+
"installTarget": "https://raw.githubusercontent.com/mattpocock/skills/main/refactoring/SKILL.md",
|
|
183
|
+
"source": "mattpocock/skills",
|
|
184
|
+
"author": "Matt Pocock"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"id": "comm-node-expert",
|
|
188
|
+
"name": "Node.js Expert",
|
|
189
|
+
"description": "Node.js backend development, APIs, streams, file system, and server patterns",
|
|
190
|
+
"keywords": [
|
|
191
|
+
"nodejs",
|
|
192
|
+
"backend",
|
|
193
|
+
"apis",
|
|
194
|
+
"express",
|
|
195
|
+
"streams",
|
|
196
|
+
"server",
|
|
197
|
+
"runtime",
|
|
198
|
+
"npm"
|
|
199
|
+
],
|
|
200
|
+
"tier": "community",
|
|
201
|
+
"category": "development",
|
|
202
|
+
"installMethod": "copy",
|
|
203
|
+
"installTarget": "https://raw.githubusercontent.com/mattpocock/skills/main/node/SKILL.md",
|
|
204
|
+
"source": "mattpocock/skills",
|
|
205
|
+
"author": "Matt Pocock"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"id": "comm-api-design",
|
|
209
|
+
"name": "API Design",
|
|
210
|
+
"description": "RESTful API design, OpenAPI specs, versioning, error handling, and documentation",
|
|
211
|
+
"keywords": [
|
|
212
|
+
"api",
|
|
213
|
+
"rest",
|
|
214
|
+
"openapi",
|
|
215
|
+
"endpoints",
|
|
216
|
+
"versioning",
|
|
217
|
+
"documentation",
|
|
218
|
+
"http"
|
|
219
|
+
],
|
|
220
|
+
"tier": "community",
|
|
221
|
+
"category": "development",
|
|
222
|
+
"installMethod": "copy",
|
|
223
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/api-design/SKILL.md",
|
|
224
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
225
|
+
"author": "ComposioHQ"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"id": "comm-docker-dev",
|
|
229
|
+
"name": "Docker Development",
|
|
230
|
+
"description": "Docker containerization, Compose, multi-stage builds, and container orchestration",
|
|
231
|
+
"keywords": [
|
|
232
|
+
"docker",
|
|
233
|
+
"containers",
|
|
234
|
+
"compose",
|
|
235
|
+
"kubernetes",
|
|
236
|
+
"devops",
|
|
237
|
+
"deployment",
|
|
238
|
+
"images"
|
|
239
|
+
],
|
|
240
|
+
"tier": "community",
|
|
241
|
+
"category": "automation",
|
|
242
|
+
"installMethod": "copy",
|
|
243
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/docker-development/SKILL.md",
|
|
244
|
+
"source": "alirezarezvani/claude-skills",
|
|
245
|
+
"author": "Alireza Rezvani"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"id": "comm-ci-cd-pipeline",
|
|
249
|
+
"name": "CI/CD Pipeline Builder",
|
|
250
|
+
"description": "Build CI/CD pipelines with GitHub Actions, GitLab CI, Jenkins, and deployment automation",
|
|
251
|
+
"keywords": [
|
|
252
|
+
"cicd",
|
|
253
|
+
"pipeline",
|
|
254
|
+
"github-actions",
|
|
255
|
+
"deployment",
|
|
256
|
+
"automation",
|
|
257
|
+
"continuous-integration"
|
|
258
|
+
],
|
|
259
|
+
"tier": "community",
|
|
260
|
+
"category": "automation",
|
|
261
|
+
"installMethod": "copy",
|
|
262
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/ci-cd-pipeline-builder/SKILL.md",
|
|
263
|
+
"source": "alirezarezvani/claude-skills",
|
|
264
|
+
"author": "Alireza Rezvani"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"id": "comm-database-designer",
|
|
268
|
+
"name": "Database Designer",
|
|
269
|
+
"description": "Database schema design, normalization, indexing, query optimization, and migrations",
|
|
270
|
+
"keywords": [
|
|
271
|
+
"database",
|
|
272
|
+
"schema",
|
|
273
|
+
"sql",
|
|
274
|
+
"postgres",
|
|
275
|
+
"mysql",
|
|
276
|
+
"indexing",
|
|
277
|
+
"migrations",
|
|
278
|
+
"normalization"
|
|
279
|
+
],
|
|
280
|
+
"tier": "community",
|
|
281
|
+
"category": "data",
|
|
282
|
+
"installMethod": "copy",
|
|
283
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/database-designer/SKILL.md",
|
|
284
|
+
"source": "alirezarezvani/claude-skills",
|
|
285
|
+
"author": "Alireza Rezvani"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"id": "comm-terraform",
|
|
289
|
+
"name": "Terraform Patterns",
|
|
290
|
+
"description": "Infrastructure as code with Terraform \u2014 modules, state management, and cloud provisioning",
|
|
291
|
+
"keywords": [
|
|
292
|
+
"terraform",
|
|
293
|
+
"infrastructure",
|
|
294
|
+
"iac",
|
|
295
|
+
"cloud",
|
|
296
|
+
"provisioning",
|
|
297
|
+
"modules",
|
|
298
|
+
"state"
|
|
299
|
+
],
|
|
300
|
+
"tier": "community",
|
|
301
|
+
"category": "automation",
|
|
302
|
+
"installMethod": "copy",
|
|
303
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/terraform-patterns/SKILL.md",
|
|
304
|
+
"source": "alirezarezvani/claude-skills",
|
|
305
|
+
"author": "Alireza Rezvani"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"id": "comm-aws-architect",
|
|
309
|
+
"name": "AWS Solution Architect",
|
|
310
|
+
"description": "AWS architecture design, service selection, cost optimization, and best practices",
|
|
311
|
+
"keywords": [
|
|
312
|
+
"aws",
|
|
313
|
+
"cloud",
|
|
314
|
+
"architecture",
|
|
315
|
+
"lambda",
|
|
316
|
+
"s3",
|
|
317
|
+
"ec2",
|
|
318
|
+
"serverless",
|
|
319
|
+
"cost"
|
|
320
|
+
],
|
|
321
|
+
"tier": "community",
|
|
322
|
+
"category": "automation",
|
|
323
|
+
"installMethod": "copy",
|
|
324
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/aws-solution-architect/SKILL.md",
|
|
325
|
+
"source": "alirezarezvani/claude-skills",
|
|
326
|
+
"author": "Alireza Rezvani"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"id": "comm-gcp-architect",
|
|
330
|
+
"name": "GCP Cloud Architect",
|
|
331
|
+
"description": "Google Cloud Platform architecture, BigQuery, Cloud Run, and GCP service patterns",
|
|
332
|
+
"keywords": [
|
|
333
|
+
"gcp",
|
|
334
|
+
"google-cloud",
|
|
335
|
+
"bigquery",
|
|
336
|
+
"cloud-run",
|
|
337
|
+
"firebase",
|
|
338
|
+
"cloud",
|
|
339
|
+
"architecture"
|
|
340
|
+
],
|
|
341
|
+
"tier": "community",
|
|
342
|
+
"category": "automation",
|
|
343
|
+
"installMethod": "copy",
|
|
344
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/gcp-cloud-architect/SKILL.md",
|
|
345
|
+
"source": "alirezarezvani/claude-skills",
|
|
346
|
+
"author": "Alireza Rezvani"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"id": "comm-azure-architect",
|
|
350
|
+
"name": "Azure Cloud Architect",
|
|
351
|
+
"description": "Microsoft Azure architecture, Azure Functions, Cosmos DB, and cloud-native patterns",
|
|
352
|
+
"keywords": [
|
|
353
|
+
"azure",
|
|
354
|
+
"microsoft",
|
|
355
|
+
"cloud",
|
|
356
|
+
"functions",
|
|
357
|
+
"cosmos-db",
|
|
358
|
+
"architecture",
|
|
359
|
+
"devops"
|
|
360
|
+
],
|
|
361
|
+
"tier": "community",
|
|
362
|
+
"category": "automation",
|
|
363
|
+
"installMethod": "copy",
|
|
364
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/azure-cloud-architect/SKILL.md",
|
|
365
|
+
"source": "alirezarezvani/claude-skills",
|
|
366
|
+
"author": "Alireza Rezvani"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"id": "comm-security-pentesting",
|
|
370
|
+
"name": "Security Pen Testing",
|
|
371
|
+
"description": "Penetration testing, vulnerability assessment, OWASP guidelines, and security hardening",
|
|
372
|
+
"keywords": [
|
|
373
|
+
"security",
|
|
374
|
+
"pentesting",
|
|
375
|
+
"vulnerability",
|
|
376
|
+
"owasp",
|
|
377
|
+
"hardening",
|
|
378
|
+
"assessment",
|
|
379
|
+
"ethical-hacking"
|
|
380
|
+
],
|
|
381
|
+
"tier": "community",
|
|
382
|
+
"category": "development",
|
|
383
|
+
"installMethod": "copy",
|
|
384
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/security-pen-testing/SKILL.md",
|
|
385
|
+
"source": "alirezarezvani/claude-skills",
|
|
386
|
+
"author": "Alireza Rezvani"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"id": "comm-performance-profiler",
|
|
390
|
+
"name": "Performance Profiler",
|
|
391
|
+
"description": "Application performance profiling, bottleneck identification, and optimization strategies",
|
|
392
|
+
"keywords": [
|
|
393
|
+
"performance",
|
|
394
|
+
"profiling",
|
|
395
|
+
"optimization",
|
|
396
|
+
"bottleneck",
|
|
397
|
+
"latency",
|
|
398
|
+
"throughput",
|
|
399
|
+
"benchmarking"
|
|
400
|
+
],
|
|
401
|
+
"tier": "community",
|
|
402
|
+
"category": "development",
|
|
403
|
+
"installMethod": "copy",
|
|
404
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/performance-profiler/SKILL.md",
|
|
405
|
+
"source": "alirezarezvani/claude-skills",
|
|
406
|
+
"author": "Alireza Rezvani"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"id": "comm-senior-frontend",
|
|
410
|
+
"name": "Senior Frontend Engineer",
|
|
411
|
+
"description": "Frontend architecture, component systems, accessibility, and modern web development",
|
|
412
|
+
"keywords": [
|
|
413
|
+
"frontend",
|
|
414
|
+
"web",
|
|
415
|
+
"accessibility",
|
|
416
|
+
"components",
|
|
417
|
+
"architecture",
|
|
418
|
+
"spa",
|
|
419
|
+
"responsive"
|
|
420
|
+
],
|
|
421
|
+
"tier": "community",
|
|
422
|
+
"category": "development",
|
|
423
|
+
"installMethod": "copy",
|
|
424
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/senior-frontend/SKILL.md",
|
|
425
|
+
"source": "alirezarezvani/claude-skills",
|
|
426
|
+
"author": "Alireza Rezvani"
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"id": "comm-senior-backend",
|
|
430
|
+
"name": "Senior Backend Engineer",
|
|
431
|
+
"description": "Backend architecture, microservices, API design, caching, and scalability patterns",
|
|
432
|
+
"keywords": [
|
|
433
|
+
"backend",
|
|
434
|
+
"microservices",
|
|
435
|
+
"api",
|
|
436
|
+
"caching",
|
|
437
|
+
"scalability",
|
|
438
|
+
"architecture",
|
|
439
|
+
"server"
|
|
440
|
+
],
|
|
441
|
+
"tier": "community",
|
|
442
|
+
"category": "development",
|
|
443
|
+
"installMethod": "copy",
|
|
444
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/senior-backend/SKILL.md",
|
|
445
|
+
"source": "alirezarezvani/claude-skills",
|
|
446
|
+
"author": "Alireza Rezvani"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"id": "comm-senior-fullstack",
|
|
450
|
+
"name": "Senior Fullstack Engineer",
|
|
451
|
+
"description": "Full-stack development with frontend-backend integration, deployment, and system design",
|
|
452
|
+
"keywords": [
|
|
453
|
+
"fullstack",
|
|
454
|
+
"frontend",
|
|
455
|
+
"backend",
|
|
456
|
+
"integration",
|
|
457
|
+
"deployment",
|
|
458
|
+
"system-design"
|
|
459
|
+
],
|
|
460
|
+
"tier": "community",
|
|
461
|
+
"category": "development",
|
|
462
|
+
"installMethod": "copy",
|
|
463
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/senior-fullstack/SKILL.md",
|
|
464
|
+
"source": "alirezarezvani/claude-skills",
|
|
465
|
+
"author": "Alireza Rezvani"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"id": "comm-senior-devops",
|
|
469
|
+
"name": "Senior DevOps Engineer",
|
|
470
|
+
"description": "DevOps practices, infrastructure automation, monitoring, and SRE principles",
|
|
471
|
+
"keywords": [
|
|
472
|
+
"devops",
|
|
473
|
+
"infrastructure",
|
|
474
|
+
"monitoring",
|
|
475
|
+
"sre",
|
|
476
|
+
"automation",
|
|
477
|
+
"reliability",
|
|
478
|
+
"operations"
|
|
479
|
+
],
|
|
480
|
+
"tier": "community",
|
|
481
|
+
"category": "automation",
|
|
482
|
+
"installMethod": "copy",
|
|
483
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/senior-devops/SKILL.md",
|
|
484
|
+
"source": "alirezarezvani/claude-skills",
|
|
485
|
+
"author": "Alireza Rezvani"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"id": "comm-senior-architect",
|
|
489
|
+
"name": "Senior Architect",
|
|
490
|
+
"description": "System architecture, design patterns, scalability, and technical decision-making",
|
|
491
|
+
"keywords": [
|
|
492
|
+
"architecture",
|
|
493
|
+
"design-patterns",
|
|
494
|
+
"scalability",
|
|
495
|
+
"system-design",
|
|
496
|
+
"technical-leadership"
|
|
497
|
+
],
|
|
498
|
+
"tier": "community",
|
|
499
|
+
"category": "development",
|
|
500
|
+
"installMethod": "copy",
|
|
501
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/senior-architect/SKILL.md",
|
|
502
|
+
"source": "alirezarezvani/claude-skills",
|
|
503
|
+
"author": "Alireza Rezvani"
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"id": "comm-senior-data-scientist",
|
|
507
|
+
"name": "Senior Data Scientist",
|
|
508
|
+
"description": "Data science workflows, statistical analysis, machine learning, and data visualization",
|
|
509
|
+
"keywords": [
|
|
510
|
+
"data-science",
|
|
511
|
+
"statistics",
|
|
512
|
+
"machine-learning",
|
|
513
|
+
"visualization",
|
|
514
|
+
"analysis",
|
|
515
|
+
"python",
|
|
516
|
+
"pandas"
|
|
517
|
+
],
|
|
518
|
+
"tier": "community",
|
|
519
|
+
"category": "data",
|
|
520
|
+
"installMethod": "copy",
|
|
521
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/senior-data-scientist/SKILL.md",
|
|
522
|
+
"source": "alirezarezvani/claude-skills",
|
|
523
|
+
"author": "Alireza Rezvani"
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"id": "comm-senior-data-engineer",
|
|
527
|
+
"name": "Senior Data Engineer",
|
|
528
|
+
"description": "Data pipelines, ETL processes, data warehousing, and big data architecture",
|
|
529
|
+
"keywords": [
|
|
530
|
+
"data-engineering",
|
|
531
|
+
"etl",
|
|
532
|
+
"pipelines",
|
|
533
|
+
"warehousing",
|
|
534
|
+
"big-data",
|
|
535
|
+
"spark",
|
|
536
|
+
"airflow"
|
|
537
|
+
],
|
|
538
|
+
"tier": "community",
|
|
539
|
+
"category": "data",
|
|
540
|
+
"installMethod": "copy",
|
|
541
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/senior-data-engineer/SKILL.md",
|
|
542
|
+
"source": "alirezarezvani/claude-skills",
|
|
543
|
+
"author": "Alireza Rezvani"
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"id": "comm-senior-ml-engineer",
|
|
547
|
+
"name": "Senior ML Engineer",
|
|
548
|
+
"description": "ML model development, training pipelines, deployment, and MLOps practices",
|
|
549
|
+
"keywords": [
|
|
550
|
+
"machine-learning",
|
|
551
|
+
"ml",
|
|
552
|
+
"model",
|
|
553
|
+
"training",
|
|
554
|
+
"deployment",
|
|
555
|
+
"mlops",
|
|
556
|
+
"deep-learning"
|
|
557
|
+
],
|
|
558
|
+
"tier": "community",
|
|
559
|
+
"category": "data",
|
|
560
|
+
"installMethod": "copy",
|
|
561
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/senior-ml-engineer/SKILL.md",
|
|
562
|
+
"source": "alirezarezvani/claude-skills",
|
|
563
|
+
"author": "Alireza Rezvani"
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"id": "comm-senior-qa",
|
|
567
|
+
"name": "Senior QA Engineer",
|
|
568
|
+
"description": "Quality assurance, test strategy, automation frameworks, and continuous testing",
|
|
569
|
+
"keywords": [
|
|
570
|
+
"qa",
|
|
571
|
+
"quality",
|
|
572
|
+
"testing",
|
|
573
|
+
"automation",
|
|
574
|
+
"test-strategy",
|
|
575
|
+
"regression",
|
|
576
|
+
"acceptance"
|
|
577
|
+
],
|
|
578
|
+
"tier": "community",
|
|
579
|
+
"category": "development",
|
|
580
|
+
"installMethod": "copy",
|
|
581
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/senior-qa/SKILL.md",
|
|
582
|
+
"source": "alirezarezvani/claude-skills",
|
|
583
|
+
"author": "Alireza Rezvani"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"id": "comm-senior-security",
|
|
587
|
+
"name": "Senior Security Engineer",
|
|
588
|
+
"description": "Application security, threat modeling, secure coding, and compliance frameworks",
|
|
589
|
+
"keywords": [
|
|
590
|
+
"security",
|
|
591
|
+
"threat-modeling",
|
|
592
|
+
"secure-coding",
|
|
593
|
+
"compliance",
|
|
594
|
+
"encryption",
|
|
595
|
+
"authentication"
|
|
596
|
+
],
|
|
597
|
+
"tier": "community",
|
|
598
|
+
"category": "development",
|
|
599
|
+
"installMethod": "copy",
|
|
600
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/senior-security/SKILL.md",
|
|
601
|
+
"source": "alirezarezvani/claude-skills",
|
|
602
|
+
"author": "Alireza Rezvani"
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"id": "comm-prompt-engineer",
|
|
606
|
+
"name": "Senior Prompt Engineer",
|
|
607
|
+
"description": "Prompt engineering, LLM optimization, chain-of-thought, and AI interaction design",
|
|
608
|
+
"keywords": [
|
|
609
|
+
"prompt",
|
|
610
|
+
"llm",
|
|
611
|
+
"ai",
|
|
612
|
+
"optimization",
|
|
613
|
+
"chain-of-thought",
|
|
614
|
+
"engineering",
|
|
615
|
+
"gpt"
|
|
616
|
+
],
|
|
617
|
+
"tier": "community",
|
|
618
|
+
"category": "data",
|
|
619
|
+
"installMethod": "copy",
|
|
620
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/senior-prompt-engineer/SKILL.md",
|
|
621
|
+
"source": "alirezarezvani/claude-skills",
|
|
622
|
+
"author": "Alireza Rezvani"
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"id": "comm-computer-vision",
|
|
626
|
+
"name": "Computer Vision Engineer",
|
|
627
|
+
"description": "Computer vision, image processing, object detection, and visual AI systems",
|
|
628
|
+
"keywords": [
|
|
629
|
+
"computer-vision",
|
|
630
|
+
"image",
|
|
631
|
+
"detection",
|
|
632
|
+
"opencv",
|
|
633
|
+
"visual",
|
|
634
|
+
"recognition",
|
|
635
|
+
"neural-network"
|
|
636
|
+
],
|
|
637
|
+
"tier": "community",
|
|
638
|
+
"category": "data",
|
|
639
|
+
"installMethod": "copy",
|
|
640
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/senior-computer-vision/SKILL.md",
|
|
641
|
+
"source": "alirezarezvani/claude-skills",
|
|
642
|
+
"author": "Alireza Rezvani"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"id": "comm-incident-response",
|
|
646
|
+
"name": "Incident Response",
|
|
647
|
+
"description": "Incident management, runbook execution, post-mortem analysis, and recovery procedures",
|
|
648
|
+
"keywords": [
|
|
649
|
+
"incident",
|
|
650
|
+
"response",
|
|
651
|
+
"recovery",
|
|
652
|
+
"post-mortem",
|
|
653
|
+
"runbook",
|
|
654
|
+
"outage",
|
|
655
|
+
"alerting"
|
|
656
|
+
],
|
|
657
|
+
"tier": "community",
|
|
658
|
+
"category": "automation",
|
|
659
|
+
"installMethod": "copy",
|
|
660
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/incident-response/SKILL.md",
|
|
661
|
+
"source": "alirezarezvani/claude-skills",
|
|
662
|
+
"author": "Alireza Rezvani"
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"id": "comm-playwright-pro",
|
|
666
|
+
"name": "Playwright Pro",
|
|
667
|
+
"description": "Browser automation and E2E testing with Playwright \u2014 selectors, fixtures, and CI integration",
|
|
668
|
+
"keywords": [
|
|
669
|
+
"playwright",
|
|
670
|
+
"e2e",
|
|
671
|
+
"browser",
|
|
672
|
+
"automation",
|
|
673
|
+
"testing",
|
|
674
|
+
"selectors",
|
|
675
|
+
"fixtures"
|
|
676
|
+
],
|
|
677
|
+
"tier": "community",
|
|
678
|
+
"category": "development",
|
|
679
|
+
"installMethod": "copy",
|
|
680
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/playwright-pro/SKILL.md",
|
|
681
|
+
"source": "alirezarezvani/claude-skills",
|
|
682
|
+
"author": "Alireza Rezvani"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"id": "comm-tdd-guide",
|
|
686
|
+
"name": "TDD Guide",
|
|
687
|
+
"description": "Test-driven development methodology \u2014 red-green-refactor, test-first design patterns",
|
|
688
|
+
"keywords": [
|
|
689
|
+
"tdd",
|
|
690
|
+
"test-driven",
|
|
691
|
+
"red-green-refactor",
|
|
692
|
+
"testing",
|
|
693
|
+
"methodology",
|
|
694
|
+
"development"
|
|
695
|
+
],
|
|
696
|
+
"tier": "community",
|
|
697
|
+
"category": "development",
|
|
698
|
+
"installMethod": "copy",
|
|
699
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/tdd-guide/SKILL.md",
|
|
700
|
+
"source": "alirezarezvani/claude-skills",
|
|
701
|
+
"author": "Alireza Rezvani"
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
"id": "comm-a11y-audit",
|
|
705
|
+
"name": "Accessibility Audit",
|
|
706
|
+
"description": "WCAG compliance auditing, screen reader testing, and accessibility improvements",
|
|
707
|
+
"keywords": [
|
|
708
|
+
"accessibility",
|
|
709
|
+
"a11y",
|
|
710
|
+
"wcag",
|
|
711
|
+
"screen-reader",
|
|
712
|
+
"aria",
|
|
713
|
+
"compliance",
|
|
714
|
+
"audit"
|
|
715
|
+
],
|
|
716
|
+
"tier": "community",
|
|
717
|
+
"category": "design",
|
|
718
|
+
"installMethod": "copy",
|
|
719
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/a11y-audit/SKILL.md",
|
|
720
|
+
"source": "alirezarezvani/claude-skills",
|
|
721
|
+
"author": "Alireza Rezvani"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"id": "comm-mcp-server-builder",
|
|
725
|
+
"name": "MCP Server Builder",
|
|
726
|
+
"description": "Build Model Context Protocol servers \u2014 tool definitions, transports, and MCP patterns",
|
|
727
|
+
"keywords": [
|
|
728
|
+
"mcp",
|
|
729
|
+
"server",
|
|
730
|
+
"protocol",
|
|
731
|
+
"tools",
|
|
732
|
+
"transport",
|
|
733
|
+
"ai",
|
|
734
|
+
"integration",
|
|
735
|
+
"model-context"
|
|
736
|
+
],
|
|
737
|
+
"tier": "community",
|
|
738
|
+
"category": "development",
|
|
739
|
+
"installMethod": "copy",
|
|
740
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/mcp-server-builder/SKILL.md",
|
|
741
|
+
"source": "alirezarezvani/claude-skills",
|
|
742
|
+
"author": "Alireza Rezvani"
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"id": "comm-rag-architect",
|
|
746
|
+
"name": "RAG Architect",
|
|
747
|
+
"description": "Retrieval-augmented generation design, vector databases, embeddings, and search optimization",
|
|
748
|
+
"keywords": [
|
|
749
|
+
"rag",
|
|
750
|
+
"retrieval",
|
|
751
|
+
"embeddings",
|
|
752
|
+
"vector",
|
|
753
|
+
"search",
|
|
754
|
+
"llm",
|
|
755
|
+
"knowledge-base"
|
|
756
|
+
],
|
|
757
|
+
"tier": "community",
|
|
758
|
+
"category": "data",
|
|
759
|
+
"installMethod": "copy",
|
|
760
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/rag-architect/SKILL.md",
|
|
761
|
+
"source": "alirezarezvani/claude-skills",
|
|
762
|
+
"author": "Alireza Rezvani"
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"id": "comm-agent-designer",
|
|
766
|
+
"name": "Agent Designer",
|
|
767
|
+
"description": "AI agent architecture, tool design, reasoning loops, and multi-agent coordination",
|
|
768
|
+
"keywords": [
|
|
769
|
+
"agent",
|
|
770
|
+
"ai",
|
|
771
|
+
"tool-design",
|
|
772
|
+
"reasoning",
|
|
773
|
+
"multi-agent",
|
|
774
|
+
"orchestration",
|
|
775
|
+
"autonomous"
|
|
776
|
+
],
|
|
777
|
+
"tier": "community",
|
|
778
|
+
"category": "data",
|
|
779
|
+
"installMethod": "copy",
|
|
780
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/agent-designer/SKILL.md",
|
|
781
|
+
"source": "alirezarezvani/claude-skills",
|
|
782
|
+
"author": "Alireza Rezvani"
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"id": "comm-browser-automation",
|
|
786
|
+
"name": "Browser Automation",
|
|
787
|
+
"description": "Web scraping, browser automation, headless browsers, and data extraction from websites",
|
|
788
|
+
"keywords": [
|
|
789
|
+
"browser",
|
|
790
|
+
"scraping",
|
|
791
|
+
"automation",
|
|
792
|
+
"headless",
|
|
793
|
+
"puppeteer",
|
|
794
|
+
"extraction",
|
|
795
|
+
"web"
|
|
796
|
+
],
|
|
797
|
+
"tier": "community",
|
|
798
|
+
"category": "automation",
|
|
799
|
+
"installMethod": "copy",
|
|
800
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/browser-automation/SKILL.md",
|
|
801
|
+
"source": "alirezarezvani/claude-skills",
|
|
802
|
+
"author": "Alireza Rezvani"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"id": "comm-changelog-generator",
|
|
806
|
+
"name": "Changelog Generator",
|
|
807
|
+
"description": "Automated changelog generation from git commits with conventional commit parsing",
|
|
808
|
+
"keywords": [
|
|
809
|
+
"changelog",
|
|
810
|
+
"git",
|
|
811
|
+
"commits",
|
|
812
|
+
"versioning",
|
|
813
|
+
"release-notes",
|
|
814
|
+
"conventional-commits"
|
|
815
|
+
],
|
|
816
|
+
"tier": "community",
|
|
817
|
+
"category": "automation",
|
|
818
|
+
"installMethod": "copy",
|
|
819
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/changelog-generator/SKILL.md",
|
|
820
|
+
"source": "alirezarezvani/claude-skills",
|
|
821
|
+
"author": "Alireza Rezvani"
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"id": "comm-dependency-auditor",
|
|
825
|
+
"name": "Dependency Auditor",
|
|
826
|
+
"description": "Audit npm/pip/gem dependencies for vulnerabilities, outdated packages, and license issues",
|
|
827
|
+
"keywords": [
|
|
828
|
+
"dependencies",
|
|
829
|
+
"audit",
|
|
830
|
+
"vulnerabilities",
|
|
831
|
+
"npm",
|
|
832
|
+
"outdated",
|
|
833
|
+
"license",
|
|
834
|
+
"security"
|
|
835
|
+
],
|
|
836
|
+
"tier": "community",
|
|
837
|
+
"category": "development",
|
|
838
|
+
"installMethod": "copy",
|
|
839
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/dependency-auditor/SKILL.md",
|
|
840
|
+
"source": "alirezarezvani/claude-skills",
|
|
841
|
+
"author": "Alireza Rezvani"
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"id": "comm-migration-architect",
|
|
845
|
+
"name": "Migration Architect",
|
|
846
|
+
"description": "Framework and language migrations, version upgrades, and codebase modernization",
|
|
847
|
+
"keywords": [
|
|
848
|
+
"migration",
|
|
849
|
+
"upgrade",
|
|
850
|
+
"modernization",
|
|
851
|
+
"framework",
|
|
852
|
+
"legacy",
|
|
853
|
+
"refactoring"
|
|
854
|
+
],
|
|
855
|
+
"tier": "community",
|
|
856
|
+
"category": "development",
|
|
857
|
+
"installMethod": "copy",
|
|
858
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/migration-architect/SKILL.md",
|
|
859
|
+
"source": "alirezarezvani/claude-skills",
|
|
860
|
+
"author": "Alireza Rezvani"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"id": "comm-observability",
|
|
864
|
+
"name": "Observability Designer",
|
|
865
|
+
"description": "Logging, metrics, tracing, and monitoring system design with Datadog, Grafana, etc.",
|
|
866
|
+
"keywords": [
|
|
867
|
+
"observability",
|
|
868
|
+
"monitoring",
|
|
869
|
+
"logging",
|
|
870
|
+
"metrics",
|
|
871
|
+
"tracing",
|
|
872
|
+
"grafana",
|
|
873
|
+
"datadog"
|
|
874
|
+
],
|
|
875
|
+
"tier": "community",
|
|
876
|
+
"category": "automation",
|
|
877
|
+
"installMethod": "copy",
|
|
878
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/observability-designer/SKILL.md",
|
|
879
|
+
"source": "alirezarezvani/claude-skills",
|
|
880
|
+
"author": "Alireza Rezvani"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"id": "comm-release-manager",
|
|
884
|
+
"name": "Release Manager",
|
|
885
|
+
"description": "Release planning, versioning, deployment coordination, and rollback strategies",
|
|
886
|
+
"keywords": [
|
|
887
|
+
"release",
|
|
888
|
+
"versioning",
|
|
889
|
+
"deployment",
|
|
890
|
+
"rollback",
|
|
891
|
+
"semver",
|
|
892
|
+
"coordination"
|
|
893
|
+
],
|
|
894
|
+
"tier": "community",
|
|
895
|
+
"category": "automation",
|
|
896
|
+
"installMethod": "copy",
|
|
897
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/release-manager/SKILL.md",
|
|
898
|
+
"source": "alirezarezvani/claude-skills",
|
|
899
|
+
"author": "Alireza Rezvani"
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"id": "comm-monorepo-navigator",
|
|
903
|
+
"name": "Monorepo Navigator",
|
|
904
|
+
"description": "Monorepo management with Turborepo, Nx, or Lerna \u2014 workspace navigation and build optimization",
|
|
905
|
+
"keywords": [
|
|
906
|
+
"monorepo",
|
|
907
|
+
"turborepo",
|
|
908
|
+
"nx",
|
|
909
|
+
"lerna",
|
|
910
|
+
"workspace",
|
|
911
|
+
"build",
|
|
912
|
+
"packages"
|
|
913
|
+
],
|
|
914
|
+
"tier": "community",
|
|
915
|
+
"category": "development",
|
|
916
|
+
"installMethod": "copy",
|
|
917
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/monorepo-navigator/SKILL.md",
|
|
918
|
+
"source": "alirezarezvani/claude-skills",
|
|
919
|
+
"author": "Alireza Rezvani"
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"id": "comm-tech-debt-tracker",
|
|
923
|
+
"name": "Tech Debt Tracker",
|
|
924
|
+
"description": "Identify, quantify, and prioritize technical debt for systematic reduction",
|
|
925
|
+
"keywords": [
|
|
926
|
+
"tech-debt",
|
|
927
|
+
"technical-debt",
|
|
928
|
+
"tracking",
|
|
929
|
+
"prioritization",
|
|
930
|
+
"refactoring",
|
|
931
|
+
"quality"
|
|
932
|
+
],
|
|
933
|
+
"tier": "community",
|
|
934
|
+
"category": "development",
|
|
935
|
+
"installMethod": "copy",
|
|
936
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/tech-debt-tracker/SKILL.md",
|
|
937
|
+
"source": "alirezarezvani/claude-skills",
|
|
938
|
+
"author": "Alireza Rezvani"
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"id": "comm-sql-assistant",
|
|
942
|
+
"name": "SQL Database Assistant",
|
|
943
|
+
"description": "SQL query writing, optimization, database administration, and data analysis",
|
|
944
|
+
"keywords": [
|
|
945
|
+
"sql",
|
|
946
|
+
"database",
|
|
947
|
+
"queries",
|
|
948
|
+
"optimization",
|
|
949
|
+
"postgres",
|
|
950
|
+
"mysql",
|
|
951
|
+
"data-analysis"
|
|
952
|
+
],
|
|
953
|
+
"tier": "community",
|
|
954
|
+
"category": "data",
|
|
955
|
+
"installMethod": "copy",
|
|
956
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/sql-database-assistant/SKILL.md",
|
|
957
|
+
"source": "alirezarezvani/claude-skills",
|
|
958
|
+
"author": "Alireza Rezvani"
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"id": "comm-helm-chart",
|
|
962
|
+
"name": "Helm Chart Builder",
|
|
963
|
+
"description": "Kubernetes Helm charts, templates, values management, and chart best practices",
|
|
964
|
+
"keywords": [
|
|
965
|
+
"helm",
|
|
966
|
+
"kubernetes",
|
|
967
|
+
"k8s",
|
|
968
|
+
"charts",
|
|
969
|
+
"templates",
|
|
970
|
+
"deployment",
|
|
971
|
+
"orchestration"
|
|
972
|
+
],
|
|
973
|
+
"tier": "community",
|
|
974
|
+
"category": "automation",
|
|
975
|
+
"installMethod": "copy",
|
|
976
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/helm-chart-builder/SKILL.md",
|
|
977
|
+
"source": "alirezarezvani/claude-skills",
|
|
978
|
+
"author": "Alireza Rezvani"
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"id": "comm-pr-review",
|
|
982
|
+
"name": "PR Review Expert",
|
|
983
|
+
"description": "Pull request review with code quality checks, security analysis, and constructive feedback",
|
|
984
|
+
"keywords": [
|
|
985
|
+
"pull-request",
|
|
986
|
+
"review",
|
|
987
|
+
"code-quality",
|
|
988
|
+
"feedback",
|
|
989
|
+
"github",
|
|
990
|
+
"approval"
|
|
991
|
+
],
|
|
992
|
+
"tier": "community",
|
|
993
|
+
"category": "development",
|
|
994
|
+
"installMethod": "copy",
|
|
995
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/pr-review-expert/SKILL.md",
|
|
996
|
+
"source": "alirezarezvani/claude-skills",
|
|
997
|
+
"author": "Alireza Rezvani"
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"id": "comm-llm-cost-optimizer",
|
|
1001
|
+
"name": "LLM Cost Optimizer",
|
|
1002
|
+
"description": "Optimize LLM API costs through caching, prompt compression, model selection, and batching",
|
|
1003
|
+
"keywords": [
|
|
1004
|
+
"llm",
|
|
1005
|
+
"cost",
|
|
1006
|
+
"optimization",
|
|
1007
|
+
"api",
|
|
1008
|
+
"caching",
|
|
1009
|
+
"tokens",
|
|
1010
|
+
"model-selection"
|
|
1011
|
+
],
|
|
1012
|
+
"tier": "community",
|
|
1013
|
+
"category": "data",
|
|
1014
|
+
"installMethod": "copy",
|
|
1015
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/llm-cost-optimizer/SKILL.md",
|
|
1016
|
+
"source": "alirezarezvani/claude-skills",
|
|
1017
|
+
"author": "Alireza Rezvani"
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"id": "comm-env-secrets",
|
|
1021
|
+
"name": "Env & Secrets Manager",
|
|
1022
|
+
"description": "Environment variable management, secrets rotation, and secure configuration patterns",
|
|
1023
|
+
"keywords": [
|
|
1024
|
+
"environment",
|
|
1025
|
+
"secrets",
|
|
1026
|
+
"env",
|
|
1027
|
+
"configuration",
|
|
1028
|
+
"vault",
|
|
1029
|
+
"security",
|
|
1030
|
+
"dotenv"
|
|
1031
|
+
],
|
|
1032
|
+
"tier": "community",
|
|
1033
|
+
"category": "automation",
|
|
1034
|
+
"installMethod": "copy",
|
|
1035
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/env-secrets-manager/SKILL.md",
|
|
1036
|
+
"source": "alirezarezvani/claude-skills",
|
|
1037
|
+
"author": "Alireza Rezvani"
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"id": "comm-stripe-integration",
|
|
1041
|
+
"name": "Stripe Integration Expert",
|
|
1042
|
+
"description": "Stripe payments, subscriptions, webhooks, and billing system implementation",
|
|
1043
|
+
"keywords": [
|
|
1044
|
+
"stripe",
|
|
1045
|
+
"payments",
|
|
1046
|
+
"subscriptions",
|
|
1047
|
+
"webhooks",
|
|
1048
|
+
"billing",
|
|
1049
|
+
"checkout",
|
|
1050
|
+
"fintech"
|
|
1051
|
+
],
|
|
1052
|
+
"tier": "community",
|
|
1053
|
+
"category": "development",
|
|
1054
|
+
"installMethod": "copy",
|
|
1055
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/stripe-integration-expert/SKILL.md",
|
|
1056
|
+
"source": "alirezarezvani/claude-skills",
|
|
1057
|
+
"author": "Alireza Rezvani"
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"id": "comm-snowflake",
|
|
1061
|
+
"name": "Snowflake Development",
|
|
1062
|
+
"description": "Snowflake data warehouse queries, data modeling, and analytics engineering",
|
|
1063
|
+
"keywords": [
|
|
1064
|
+
"snowflake",
|
|
1065
|
+
"data-warehouse",
|
|
1066
|
+
"analytics",
|
|
1067
|
+
"sql",
|
|
1068
|
+
"dbt",
|
|
1069
|
+
"data-modeling"
|
|
1070
|
+
],
|
|
1071
|
+
"tier": "community",
|
|
1072
|
+
"category": "data",
|
|
1073
|
+
"installMethod": "copy",
|
|
1074
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/snowflake-development/SKILL.md",
|
|
1075
|
+
"source": "alirezarezvani/claude-skills",
|
|
1076
|
+
"author": "Alireza Rezvani"
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
"id": "comm-tech-stack-evaluator",
|
|
1080
|
+
"name": "Tech Stack Evaluator",
|
|
1081
|
+
"description": "Evaluate and compare technology stacks for projects \u2014 frameworks, databases, and infrastructure",
|
|
1082
|
+
"keywords": [
|
|
1083
|
+
"tech-stack",
|
|
1084
|
+
"evaluation",
|
|
1085
|
+
"comparison",
|
|
1086
|
+
"frameworks",
|
|
1087
|
+
"selection",
|
|
1088
|
+
"architecture"
|
|
1089
|
+
],
|
|
1090
|
+
"tier": "community",
|
|
1091
|
+
"category": "research",
|
|
1092
|
+
"installMethod": "copy",
|
|
1093
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/tech-stack-evaluator/SKILL.md",
|
|
1094
|
+
"source": "alirezarezvani/claude-skills",
|
|
1095
|
+
"author": "Alireza Rezvani"
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"id": "comm-red-team",
|
|
1099
|
+
"name": "Red Team Security",
|
|
1100
|
+
"description": "Red team exercises, attack simulation, and adversarial security testing",
|
|
1101
|
+
"keywords": [
|
|
1102
|
+
"red-team",
|
|
1103
|
+
"security",
|
|
1104
|
+
"attack",
|
|
1105
|
+
"simulation",
|
|
1106
|
+
"adversarial",
|
|
1107
|
+
"offensive"
|
|
1108
|
+
],
|
|
1109
|
+
"tier": "community",
|
|
1110
|
+
"category": "development",
|
|
1111
|
+
"installMethod": "copy",
|
|
1112
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/red-team/SKILL.md",
|
|
1113
|
+
"source": "alirezarezvani/claude-skills",
|
|
1114
|
+
"author": "Alireza Rezvani"
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
"id": "comm-ai-security",
|
|
1118
|
+
"name": "AI Security",
|
|
1119
|
+
"description": "AI/ML security, prompt injection defense, model safety, and AI risk mitigation",
|
|
1120
|
+
"keywords": [
|
|
1121
|
+
"ai-security",
|
|
1122
|
+
"prompt-injection",
|
|
1123
|
+
"model-safety",
|
|
1124
|
+
"risk",
|
|
1125
|
+
"defense",
|
|
1126
|
+
"guardrails"
|
|
1127
|
+
],
|
|
1128
|
+
"tier": "community",
|
|
1129
|
+
"category": "development",
|
|
1130
|
+
"installMethod": "copy",
|
|
1131
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/ai-security/SKILL.md",
|
|
1132
|
+
"source": "alirezarezvani/claude-skills",
|
|
1133
|
+
"author": "Alireza Rezvani"
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"id": "comm-threat-detection",
|
|
1137
|
+
"name": "Threat Detection",
|
|
1138
|
+
"description": "Security threat detection, anomaly identification, and SIEM integration patterns",
|
|
1139
|
+
"keywords": [
|
|
1140
|
+
"threat",
|
|
1141
|
+
"detection",
|
|
1142
|
+
"anomaly",
|
|
1143
|
+
"siem",
|
|
1144
|
+
"security",
|
|
1145
|
+
"monitoring",
|
|
1146
|
+
"alerts"
|
|
1147
|
+
],
|
|
1148
|
+
"tier": "community",
|
|
1149
|
+
"category": "automation",
|
|
1150
|
+
"installMethod": "copy",
|
|
1151
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/threat-detection/SKILL.md",
|
|
1152
|
+
"source": "alirezarezvani/claude-skills",
|
|
1153
|
+
"author": "Alireza Rezvani"
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
"id": "comm-cloud-security",
|
|
1157
|
+
"name": "Cloud Security",
|
|
1158
|
+
"description": "Cloud security posture management, IAM policies, and compliance automation",
|
|
1159
|
+
"keywords": [
|
|
1160
|
+
"cloud-security",
|
|
1161
|
+
"iam",
|
|
1162
|
+
"compliance",
|
|
1163
|
+
"posture",
|
|
1164
|
+
"aws",
|
|
1165
|
+
"azure",
|
|
1166
|
+
"gcp"
|
|
1167
|
+
],
|
|
1168
|
+
"tier": "community",
|
|
1169
|
+
"category": "automation",
|
|
1170
|
+
"installMethod": "copy",
|
|
1171
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/cloud-security/SKILL.md",
|
|
1172
|
+
"source": "alirezarezvani/claude-skills",
|
|
1173
|
+
"author": "Alireza Rezvani"
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
"id": "comm-seo-audit",
|
|
1177
|
+
"name": "SEO Audit",
|
|
1178
|
+
"description": "Technical SEO auditing, site performance, meta tags, structured data, and search rankings",
|
|
1179
|
+
"keywords": [
|
|
1180
|
+
"seo",
|
|
1181
|
+
"audit",
|
|
1182
|
+
"meta-tags",
|
|
1183
|
+
"structured-data",
|
|
1184
|
+
"search",
|
|
1185
|
+
"rankings",
|
|
1186
|
+
"performance"
|
|
1187
|
+
],
|
|
1188
|
+
"tier": "community",
|
|
1189
|
+
"category": "content",
|
|
1190
|
+
"installMethod": "copy",
|
|
1191
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/seo-audit/SKILL.md",
|
|
1192
|
+
"source": "alirezarezvani/claude-skills",
|
|
1193
|
+
"author": "Alireza Rezvani"
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"id": "comm-content-strategy",
|
|
1197
|
+
"name": "Content Strategy",
|
|
1198
|
+
"description": "Content planning, editorial calendars, topic research, and content distribution",
|
|
1199
|
+
"keywords": [
|
|
1200
|
+
"content",
|
|
1201
|
+
"strategy",
|
|
1202
|
+
"editorial",
|
|
1203
|
+
"planning",
|
|
1204
|
+
"topics",
|
|
1205
|
+
"distribution",
|
|
1206
|
+
"calendar"
|
|
1207
|
+
],
|
|
1208
|
+
"tier": "community",
|
|
1209
|
+
"category": "content",
|
|
1210
|
+
"installMethod": "copy",
|
|
1211
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/content-strategy/SKILL.md",
|
|
1212
|
+
"source": "alirezarezvani/claude-skills",
|
|
1213
|
+
"author": "Alireza Rezvani"
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"id": "comm-copywriting",
|
|
1217
|
+
"name": "Copywriting",
|
|
1218
|
+
"description": "Persuasive copywriting, headlines, CTAs, landing pages, and conversion-focused writing",
|
|
1219
|
+
"keywords": [
|
|
1220
|
+
"copywriting",
|
|
1221
|
+
"headlines",
|
|
1222
|
+
"cta",
|
|
1223
|
+
"landing-page",
|
|
1224
|
+
"conversion",
|
|
1225
|
+
"persuasive",
|
|
1226
|
+
"writing"
|
|
1227
|
+
],
|
|
1228
|
+
"tier": "community",
|
|
1229
|
+
"category": "content",
|
|
1230
|
+
"installMethod": "copy",
|
|
1231
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/copywriting/SKILL.md",
|
|
1232
|
+
"source": "alirezarezvani/claude-skills",
|
|
1233
|
+
"author": "Alireza Rezvani"
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"id": "comm-email-sequence",
|
|
1237
|
+
"name": "Email Sequence Builder",
|
|
1238
|
+
"description": "Email marketing sequences, drip campaigns, nurture flows, and email automation",
|
|
1239
|
+
"keywords": [
|
|
1240
|
+
"email",
|
|
1241
|
+
"sequence",
|
|
1242
|
+
"drip",
|
|
1243
|
+
"campaigns",
|
|
1244
|
+
"nurture",
|
|
1245
|
+
"automation",
|
|
1246
|
+
"marketing"
|
|
1247
|
+
],
|
|
1248
|
+
"tier": "community",
|
|
1249
|
+
"category": "content",
|
|
1250
|
+
"installMethod": "copy",
|
|
1251
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/email-sequence/SKILL.md",
|
|
1252
|
+
"source": "alirezarezvani/claude-skills",
|
|
1253
|
+
"author": "Alireza Rezvani"
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"id": "comm-social-media-manager",
|
|
1257
|
+
"name": "Social Media Manager",
|
|
1258
|
+
"description": "Social media strategy, post creation, engagement tactics, and platform-specific content",
|
|
1259
|
+
"keywords": [
|
|
1260
|
+
"social-media",
|
|
1261
|
+
"posts",
|
|
1262
|
+
"engagement",
|
|
1263
|
+
"twitter",
|
|
1264
|
+
"linkedin",
|
|
1265
|
+
"instagram",
|
|
1266
|
+
"community"
|
|
1267
|
+
],
|
|
1268
|
+
"tier": "community",
|
|
1269
|
+
"category": "content",
|
|
1270
|
+
"installMethod": "copy",
|
|
1271
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/social-media-manager/SKILL.md",
|
|
1272
|
+
"source": "alirezarezvani/claude-skills",
|
|
1273
|
+
"author": "Alireza Rezvani"
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
"id": "comm-social-media-analyzer",
|
|
1277
|
+
"name": "Social Media Analyzer",
|
|
1278
|
+
"description": "Social media analytics, sentiment analysis, engagement metrics, and audience insights",
|
|
1279
|
+
"keywords": [
|
|
1280
|
+
"social-media",
|
|
1281
|
+
"analytics",
|
|
1282
|
+
"sentiment",
|
|
1283
|
+
"engagement",
|
|
1284
|
+
"metrics",
|
|
1285
|
+
"audience"
|
|
1286
|
+
],
|
|
1287
|
+
"tier": "community",
|
|
1288
|
+
"category": "data",
|
|
1289
|
+
"installMethod": "copy",
|
|
1290
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/social-media-analyzer/SKILL.md",
|
|
1291
|
+
"source": "alirezarezvani/claude-skills",
|
|
1292
|
+
"author": "Alireza Rezvani"
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
"id": "comm-paid-ads",
|
|
1296
|
+
"name": "Paid Ads Expert",
|
|
1297
|
+
"description": "Google Ads, Facebook Ads, PPC campaign management, and ad copy optimization",
|
|
1298
|
+
"keywords": [
|
|
1299
|
+
"ads",
|
|
1300
|
+
"ppc",
|
|
1301
|
+
"google-ads",
|
|
1302
|
+
"facebook-ads",
|
|
1303
|
+
"campaigns",
|
|
1304
|
+
"budget",
|
|
1305
|
+
"targeting"
|
|
1306
|
+
],
|
|
1307
|
+
"tier": "community",
|
|
1308
|
+
"category": "business",
|
|
1309
|
+
"installMethod": "copy",
|
|
1310
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/paid-ads/SKILL.md",
|
|
1311
|
+
"source": "alirezarezvani/claude-skills",
|
|
1312
|
+
"author": "Alireza Rezvani"
|
|
1313
|
+
},
|
|
1314
|
+
{
|
|
1315
|
+
"id": "comm-pricing-strategy",
|
|
1316
|
+
"name": "Pricing Strategy",
|
|
1317
|
+
"description": "Pricing models, competitive pricing analysis, and monetization strategy",
|
|
1318
|
+
"keywords": [
|
|
1319
|
+
"pricing",
|
|
1320
|
+
"monetization",
|
|
1321
|
+
"strategy",
|
|
1322
|
+
"models",
|
|
1323
|
+
"competitive",
|
|
1324
|
+
"revenue",
|
|
1325
|
+
"subscription"
|
|
1326
|
+
],
|
|
1327
|
+
"tier": "community",
|
|
1328
|
+
"category": "business",
|
|
1329
|
+
"installMethod": "copy",
|
|
1330
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/pricing-strategy/SKILL.md",
|
|
1331
|
+
"source": "alirezarezvani/claude-skills",
|
|
1332
|
+
"author": "Alireza Rezvani"
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
"id": "comm-ab-testing",
|
|
1336
|
+
"name": "A/B Test Setup",
|
|
1337
|
+
"description": "A/B testing experiment design, statistical significance, and conversion optimization",
|
|
1338
|
+
"keywords": [
|
|
1339
|
+
"ab-testing",
|
|
1340
|
+
"experiments",
|
|
1341
|
+
"statistics",
|
|
1342
|
+
"conversion",
|
|
1343
|
+
"optimization",
|
|
1344
|
+
"testing"
|
|
1345
|
+
],
|
|
1346
|
+
"tier": "community",
|
|
1347
|
+
"category": "data",
|
|
1348
|
+
"installMethod": "copy",
|
|
1349
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/ab-test-setup/SKILL.md",
|
|
1350
|
+
"source": "alirezarezvani/claude-skills",
|
|
1351
|
+
"author": "Alireza Rezvani"
|
|
1352
|
+
},
|
|
1353
|
+
{
|
|
1354
|
+
"id": "comm-ad-creative",
|
|
1355
|
+
"name": "Ad Creative",
|
|
1356
|
+
"description": "Ad creative development, visual guidelines, copy frameworks, and brand consistency",
|
|
1357
|
+
"keywords": [
|
|
1358
|
+
"ad-creative",
|
|
1359
|
+
"visual",
|
|
1360
|
+
"copy",
|
|
1361
|
+
"brand",
|
|
1362
|
+
"creative",
|
|
1363
|
+
"design",
|
|
1364
|
+
"advertising"
|
|
1365
|
+
],
|
|
1366
|
+
"tier": "community",
|
|
1367
|
+
"category": "content",
|
|
1368
|
+
"installMethod": "copy",
|
|
1369
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/ad-creative/SKILL.md",
|
|
1370
|
+
"source": "alirezarezvani/claude-skills",
|
|
1371
|
+
"author": "Alireza Rezvani"
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
"id": "comm-launch-strategy",
|
|
1375
|
+
"name": "Launch Strategy",
|
|
1376
|
+
"description": "Product launch planning, go-to-market strategy, launch checklists, and launch analytics",
|
|
1377
|
+
"keywords": [
|
|
1378
|
+
"launch",
|
|
1379
|
+
"go-to-market",
|
|
1380
|
+
"product",
|
|
1381
|
+
"strategy",
|
|
1382
|
+
"planning",
|
|
1383
|
+
"gtm",
|
|
1384
|
+
"checklist"
|
|
1385
|
+
],
|
|
1386
|
+
"tier": "community",
|
|
1387
|
+
"category": "business",
|
|
1388
|
+
"installMethod": "copy",
|
|
1389
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/launch-strategy/SKILL.md",
|
|
1390
|
+
"source": "alirezarezvani/claude-skills",
|
|
1391
|
+
"author": "Alireza Rezvani"
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
"id": "comm-cold-email",
|
|
1395
|
+
"name": "Cold Email",
|
|
1396
|
+
"description": "Cold outreach email templates, personalization, follow-up sequences, and deliverability",
|
|
1397
|
+
"keywords": [
|
|
1398
|
+
"cold-email",
|
|
1399
|
+
"outreach",
|
|
1400
|
+
"personalization",
|
|
1401
|
+
"follow-up",
|
|
1402
|
+
"deliverability",
|
|
1403
|
+
"sales"
|
|
1404
|
+
],
|
|
1405
|
+
"tier": "community",
|
|
1406
|
+
"category": "business",
|
|
1407
|
+
"installMethod": "copy",
|
|
1408
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/cold-email/SKILL.md",
|
|
1409
|
+
"source": "alirezarezvani/claude-skills",
|
|
1410
|
+
"author": "Alireza Rezvani"
|
|
1411
|
+
},
|
|
1412
|
+
{
|
|
1413
|
+
"id": "comm-brand-guidelines",
|
|
1414
|
+
"name": "Brand Guidelines",
|
|
1415
|
+
"description": "Brand identity documentation, style guides, tone of voice, and visual standards",
|
|
1416
|
+
"keywords": [
|
|
1417
|
+
"brand",
|
|
1418
|
+
"guidelines",
|
|
1419
|
+
"identity",
|
|
1420
|
+
"style-guide",
|
|
1421
|
+
"tone",
|
|
1422
|
+
"visual",
|
|
1423
|
+
"standards"
|
|
1424
|
+
],
|
|
1425
|
+
"tier": "community",
|
|
1426
|
+
"category": "design",
|
|
1427
|
+
"installMethod": "copy",
|
|
1428
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/brand-guidelines/SKILL.md",
|
|
1429
|
+
"source": "alirezarezvani/claude-skills",
|
|
1430
|
+
"author": "Alireza Rezvani"
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
"id": "comm-schema-markup",
|
|
1434
|
+
"name": "Schema Markup",
|
|
1435
|
+
"description": "JSON-LD structured data, rich snippets, and schema.org implementation for SEO",
|
|
1436
|
+
"keywords": [
|
|
1437
|
+
"schema",
|
|
1438
|
+
"structured-data",
|
|
1439
|
+
"json-ld",
|
|
1440
|
+
"rich-snippets",
|
|
1441
|
+
"seo",
|
|
1442
|
+
"markup"
|
|
1443
|
+
],
|
|
1444
|
+
"tier": "community",
|
|
1445
|
+
"category": "content",
|
|
1446
|
+
"installMethod": "copy",
|
|
1447
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/schema-markup/SKILL.md",
|
|
1448
|
+
"source": "alirezarezvani/claude-skills",
|
|
1449
|
+
"author": "Alireza Rezvani"
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"id": "comm-programmatic-seo",
|
|
1453
|
+
"name": "Programmatic SEO",
|
|
1454
|
+
"description": "Automated SEO at scale \u2014 template pages, data-driven content, and programmatic indexing",
|
|
1455
|
+
"keywords": [
|
|
1456
|
+
"programmatic",
|
|
1457
|
+
"seo",
|
|
1458
|
+
"automated",
|
|
1459
|
+
"templates",
|
|
1460
|
+
"indexing",
|
|
1461
|
+
"scale",
|
|
1462
|
+
"content"
|
|
1463
|
+
],
|
|
1464
|
+
"tier": "community",
|
|
1465
|
+
"category": "content",
|
|
1466
|
+
"installMethod": "copy",
|
|
1467
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/programmatic-seo/SKILL.md",
|
|
1468
|
+
"source": "alirezarezvani/claude-skills",
|
|
1469
|
+
"author": "Alireza Rezvani"
|
|
1470
|
+
},
|
|
1471
|
+
{
|
|
1472
|
+
"id": "comm-marketing-strategy",
|
|
1473
|
+
"name": "Marketing Strategy (PMM)",
|
|
1474
|
+
"description": "Product marketing, positioning, messaging frameworks, and market analysis",
|
|
1475
|
+
"keywords": [
|
|
1476
|
+
"marketing",
|
|
1477
|
+
"strategy",
|
|
1478
|
+
"positioning",
|
|
1479
|
+
"messaging",
|
|
1480
|
+
"product-marketing",
|
|
1481
|
+
"pmm"
|
|
1482
|
+
],
|
|
1483
|
+
"tier": "community",
|
|
1484
|
+
"category": "business",
|
|
1485
|
+
"installMethod": "copy",
|
|
1486
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/marketing-strategy-pmm/SKILL.md",
|
|
1487
|
+
"source": "alirezarezvani/claude-skills",
|
|
1488
|
+
"author": "Alireza Rezvani"
|
|
1489
|
+
},
|
|
1490
|
+
{
|
|
1491
|
+
"id": "comm-marketing-ops",
|
|
1492
|
+
"name": "Marketing Ops",
|
|
1493
|
+
"description": "Marketing operations, martech stack management, lead scoring, and workflow automation",
|
|
1494
|
+
"keywords": [
|
|
1495
|
+
"marketing-ops",
|
|
1496
|
+
"martech",
|
|
1497
|
+
"lead-scoring",
|
|
1498
|
+
"automation",
|
|
1499
|
+
"workflows",
|
|
1500
|
+
"operations"
|
|
1501
|
+
],
|
|
1502
|
+
"tier": "community",
|
|
1503
|
+
"category": "business",
|
|
1504
|
+
"installMethod": "copy",
|
|
1505
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/marketing-ops/SKILL.md",
|
|
1506
|
+
"source": "alirezarezvani/claude-skills",
|
|
1507
|
+
"author": "Alireza Rezvani"
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
"id": "comm-churn-prevention",
|
|
1511
|
+
"name": "Churn Prevention",
|
|
1512
|
+
"description": "Customer retention strategies, churn prediction, and win-back campaign design",
|
|
1513
|
+
"keywords": [
|
|
1514
|
+
"churn",
|
|
1515
|
+
"retention",
|
|
1516
|
+
"prediction",
|
|
1517
|
+
"win-back",
|
|
1518
|
+
"customer",
|
|
1519
|
+
"loyalty",
|
|
1520
|
+
"engagement"
|
|
1521
|
+
],
|
|
1522
|
+
"tier": "community",
|
|
1523
|
+
"category": "business",
|
|
1524
|
+
"installMethod": "copy",
|
|
1525
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/churn-prevention/SKILL.md",
|
|
1526
|
+
"source": "alirezarezvani/claude-skills",
|
|
1527
|
+
"author": "Alireza Rezvani"
|
|
1528
|
+
},
|
|
1529
|
+
{
|
|
1530
|
+
"id": "comm-referral-program",
|
|
1531
|
+
"name": "Referral Program",
|
|
1532
|
+
"description": "Referral program design, incentive structures, viral loops, and growth mechanics",
|
|
1533
|
+
"keywords": [
|
|
1534
|
+
"referral",
|
|
1535
|
+
"viral",
|
|
1536
|
+
"growth",
|
|
1537
|
+
"incentives",
|
|
1538
|
+
"program",
|
|
1539
|
+
"acquisition",
|
|
1540
|
+
"word-of-mouth"
|
|
1541
|
+
],
|
|
1542
|
+
"tier": "community",
|
|
1543
|
+
"category": "business",
|
|
1544
|
+
"installMethod": "copy",
|
|
1545
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/referral-program/SKILL.md",
|
|
1546
|
+
"source": "alirezarezvani/claude-skills",
|
|
1547
|
+
"author": "Alireza Rezvani"
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"id": "comm-video-content",
|
|
1551
|
+
"name": "Video Content Strategist",
|
|
1552
|
+
"description": "Video content planning, scripting, YouTube SEO, and short-form video strategy",
|
|
1553
|
+
"keywords": [
|
|
1554
|
+
"video",
|
|
1555
|
+
"content",
|
|
1556
|
+
"youtube",
|
|
1557
|
+
"scripting",
|
|
1558
|
+
"short-form",
|
|
1559
|
+
"tiktok",
|
|
1560
|
+
"reels"
|
|
1561
|
+
],
|
|
1562
|
+
"tier": "community",
|
|
1563
|
+
"category": "content",
|
|
1564
|
+
"installMethod": "copy",
|
|
1565
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/video-content-strategist/SKILL.md",
|
|
1566
|
+
"source": "alirezarezvani/claude-skills",
|
|
1567
|
+
"author": "Alireza Rezvani"
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"id": "comm-x-twitter-growth",
|
|
1571
|
+
"name": "X/Twitter Growth",
|
|
1572
|
+
"description": "Twitter/X growth strategies, thread writing, engagement optimization, and audience building",
|
|
1573
|
+
"keywords": [
|
|
1574
|
+
"twitter",
|
|
1575
|
+
"x",
|
|
1576
|
+
"growth",
|
|
1577
|
+
"threads",
|
|
1578
|
+
"engagement",
|
|
1579
|
+
"audience",
|
|
1580
|
+
"social"
|
|
1581
|
+
],
|
|
1582
|
+
"tier": "community",
|
|
1583
|
+
"category": "content",
|
|
1584
|
+
"installMethod": "copy",
|
|
1585
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/x-twitter-growth/SKILL.md",
|
|
1586
|
+
"source": "alirezarezvani/claude-skills",
|
|
1587
|
+
"author": "Alireza Rezvani"
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
"id": "comm-content-humanizer",
|
|
1591
|
+
"name": "Content Humanizer",
|
|
1592
|
+
"description": "Make AI-generated content sound natural and human \u2014 tone adjustment and authenticity",
|
|
1593
|
+
"keywords": [
|
|
1594
|
+
"humanizer",
|
|
1595
|
+
"ai-content",
|
|
1596
|
+
"natural",
|
|
1597
|
+
"tone",
|
|
1598
|
+
"authenticity",
|
|
1599
|
+
"writing",
|
|
1600
|
+
"voice"
|
|
1601
|
+
],
|
|
1602
|
+
"tier": "community",
|
|
1603
|
+
"category": "content",
|
|
1604
|
+
"installMethod": "copy",
|
|
1605
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/content-humanizer/SKILL.md",
|
|
1606
|
+
"source": "alirezarezvani/claude-skills",
|
|
1607
|
+
"author": "Alireza Rezvani"
|
|
1608
|
+
},
|
|
1609
|
+
{
|
|
1610
|
+
"id": "comm-copy-editing",
|
|
1611
|
+
"name": "Copy Editing",
|
|
1612
|
+
"description": "Professional copy editing, grammar, style consistency, and readability improvement",
|
|
1613
|
+
"keywords": [
|
|
1614
|
+
"editing",
|
|
1615
|
+
"grammar",
|
|
1616
|
+
"style",
|
|
1617
|
+
"readability",
|
|
1618
|
+
"proofreading",
|
|
1619
|
+
"writing",
|
|
1620
|
+
"clarity"
|
|
1621
|
+
],
|
|
1622
|
+
"tier": "community",
|
|
1623
|
+
"category": "content",
|
|
1624
|
+
"installMethod": "copy",
|
|
1625
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/copy-editing/SKILL.md",
|
|
1626
|
+
"source": "alirezarezvani/claude-skills",
|
|
1627
|
+
"author": "Alireza Rezvani"
|
|
1628
|
+
},
|
|
1629
|
+
{
|
|
1630
|
+
"id": "comm-app-store-optimization",
|
|
1631
|
+
"name": "App Store Optimization",
|
|
1632
|
+
"description": "ASO for iOS and Android \u2014 keywords, screenshots, descriptions, and ranking optimization",
|
|
1633
|
+
"keywords": [
|
|
1634
|
+
"aso",
|
|
1635
|
+
"app-store",
|
|
1636
|
+
"optimization",
|
|
1637
|
+
"ios",
|
|
1638
|
+
"android",
|
|
1639
|
+
"keywords",
|
|
1640
|
+
"rankings"
|
|
1641
|
+
],
|
|
1642
|
+
"tier": "community",
|
|
1643
|
+
"category": "content",
|
|
1644
|
+
"installMethod": "copy",
|
|
1645
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/app-store-optimization/SKILL.md",
|
|
1646
|
+
"source": "alirezarezvani/claude-skills",
|
|
1647
|
+
"author": "Alireza Rezvani"
|
|
1648
|
+
},
|
|
1649
|
+
{
|
|
1650
|
+
"id": "comm-campaign-analytics",
|
|
1651
|
+
"name": "Campaign Analytics",
|
|
1652
|
+
"description": "Marketing campaign measurement, attribution modeling, and ROI analysis",
|
|
1653
|
+
"keywords": [
|
|
1654
|
+
"campaign",
|
|
1655
|
+
"analytics",
|
|
1656
|
+
"attribution",
|
|
1657
|
+
"roi",
|
|
1658
|
+
"measurement",
|
|
1659
|
+
"kpi",
|
|
1660
|
+
"reporting"
|
|
1661
|
+
],
|
|
1662
|
+
"tier": "community",
|
|
1663
|
+
"category": "data",
|
|
1664
|
+
"installMethod": "copy",
|
|
1665
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/campaign-analytics/SKILL.md",
|
|
1666
|
+
"source": "alirezarezvani/claude-skills",
|
|
1667
|
+
"author": "Alireza Rezvani"
|
|
1668
|
+
},
|
|
1669
|
+
{
|
|
1670
|
+
"id": "comm-form-cro",
|
|
1671
|
+
"name": "Form CRO",
|
|
1672
|
+
"description": "Form conversion rate optimization \u2014 field reduction, UX patterns, and validation design",
|
|
1673
|
+
"keywords": [
|
|
1674
|
+
"form",
|
|
1675
|
+
"cro",
|
|
1676
|
+
"conversion",
|
|
1677
|
+
"optimization",
|
|
1678
|
+
"ux",
|
|
1679
|
+
"validation",
|
|
1680
|
+
"signup"
|
|
1681
|
+
],
|
|
1682
|
+
"tier": "community",
|
|
1683
|
+
"category": "design",
|
|
1684
|
+
"installMethod": "copy",
|
|
1685
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/form-cro/SKILL.md",
|
|
1686
|
+
"source": "alirezarezvani/claude-skills",
|
|
1687
|
+
"author": "Alireza Rezvani"
|
|
1688
|
+
},
|
|
1689
|
+
{
|
|
1690
|
+
"id": "comm-onboarding-cro",
|
|
1691
|
+
"name": "Onboarding CRO",
|
|
1692
|
+
"description": "User onboarding optimization \u2014 activation flows, tooltips, and first-run experience",
|
|
1693
|
+
"keywords": [
|
|
1694
|
+
"onboarding",
|
|
1695
|
+
"cro",
|
|
1696
|
+
"activation",
|
|
1697
|
+
"first-run",
|
|
1698
|
+
"tooltips",
|
|
1699
|
+
"ux",
|
|
1700
|
+
"retention"
|
|
1701
|
+
],
|
|
1702
|
+
"tier": "community",
|
|
1703
|
+
"category": "design",
|
|
1704
|
+
"installMethod": "copy",
|
|
1705
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/onboarding-cro/SKILL.md",
|
|
1706
|
+
"source": "alirezarezvani/claude-skills",
|
|
1707
|
+
"author": "Alireza Rezvani"
|
|
1708
|
+
},
|
|
1709
|
+
{
|
|
1710
|
+
"id": "comm-page-cro",
|
|
1711
|
+
"name": "Landing Page CRO",
|
|
1712
|
+
"description": "Landing page optimization \u2014 above-the-fold, social proof, and conversion elements",
|
|
1713
|
+
"keywords": [
|
|
1714
|
+
"landing-page",
|
|
1715
|
+
"cro",
|
|
1716
|
+
"conversion",
|
|
1717
|
+
"above-fold",
|
|
1718
|
+
"social-proof",
|
|
1719
|
+
"optimization"
|
|
1720
|
+
],
|
|
1721
|
+
"tier": "community",
|
|
1722
|
+
"category": "design",
|
|
1723
|
+
"installMethod": "copy",
|
|
1724
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/page-cro/SKILL.md",
|
|
1725
|
+
"source": "alirezarezvani/claude-skills",
|
|
1726
|
+
"author": "Alireza Rezvani"
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
"id": "comm-marketing-psychology",
|
|
1730
|
+
"name": "Marketing Psychology",
|
|
1731
|
+
"description": "Behavioral psychology in marketing \u2014 cognitive biases, persuasion, and decision frameworks",
|
|
1732
|
+
"keywords": [
|
|
1733
|
+
"psychology",
|
|
1734
|
+
"behavioral",
|
|
1735
|
+
"biases",
|
|
1736
|
+
"persuasion",
|
|
1737
|
+
"marketing",
|
|
1738
|
+
"decision",
|
|
1739
|
+
"influence"
|
|
1740
|
+
],
|
|
1741
|
+
"tier": "community",
|
|
1742
|
+
"category": "business",
|
|
1743
|
+
"installMethod": "copy",
|
|
1744
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/marketing-psychology/SKILL.md",
|
|
1745
|
+
"source": "alirezarezvani/claude-skills",
|
|
1746
|
+
"author": "Alireza Rezvani"
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
"id": "comm-demand-acquisition",
|
|
1750
|
+
"name": "Demand & Acquisition",
|
|
1751
|
+
"description": "Demand generation, lead acquisition, funnel optimization, and growth marketing",
|
|
1752
|
+
"keywords": [
|
|
1753
|
+
"demand",
|
|
1754
|
+
"acquisition",
|
|
1755
|
+
"funnel",
|
|
1756
|
+
"leads",
|
|
1757
|
+
"growth",
|
|
1758
|
+
"marketing",
|
|
1759
|
+
"generation"
|
|
1760
|
+
],
|
|
1761
|
+
"tier": "community",
|
|
1762
|
+
"category": "business",
|
|
1763
|
+
"installMethod": "copy",
|
|
1764
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/marketing-demand-acquisition/SKILL.md",
|
|
1765
|
+
"source": "alirezarezvani/claude-skills",
|
|
1766
|
+
"author": "Alireza Rezvani"
|
|
1767
|
+
},
|
|
1768
|
+
{
|
|
1769
|
+
"id": "comm-ai-seo",
|
|
1770
|
+
"name": "AI-Powered SEO",
|
|
1771
|
+
"description": "AI-driven SEO strategies, content optimization, and search intent analysis",
|
|
1772
|
+
"keywords": [
|
|
1773
|
+
"ai",
|
|
1774
|
+
"seo",
|
|
1775
|
+
"search-intent",
|
|
1776
|
+
"content",
|
|
1777
|
+
"optimization",
|
|
1778
|
+
"ai-powered",
|
|
1779
|
+
"ranking"
|
|
1780
|
+
],
|
|
1781
|
+
"tier": "community",
|
|
1782
|
+
"category": "content",
|
|
1783
|
+
"installMethod": "copy",
|
|
1784
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/ai-seo/SKILL.md",
|
|
1785
|
+
"source": "alirezarezvani/claude-skills",
|
|
1786
|
+
"author": "Alireza Rezvani"
|
|
1787
|
+
},
|
|
1788
|
+
{
|
|
1789
|
+
"id": "comm-email-template",
|
|
1790
|
+
"name": "Email Template Builder",
|
|
1791
|
+
"description": "HTML email templates, responsive design, cross-client compatibility, and dark mode",
|
|
1792
|
+
"keywords": [
|
|
1793
|
+
"email",
|
|
1794
|
+
"template",
|
|
1795
|
+
"html",
|
|
1796
|
+
"responsive",
|
|
1797
|
+
"cross-client",
|
|
1798
|
+
"dark-mode",
|
|
1799
|
+
"design"
|
|
1800
|
+
],
|
|
1801
|
+
"tier": "community",
|
|
1802
|
+
"category": "design",
|
|
1803
|
+
"installMethod": "copy",
|
|
1804
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/email-template-builder/SKILL.md",
|
|
1805
|
+
"source": "alirezarezvani/claude-skills",
|
|
1806
|
+
"author": "Alireza Rezvani"
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
"id": "comm-epic-design",
|
|
1810
|
+
"name": "Epic Design",
|
|
1811
|
+
"description": "Feature epic design with user stories, acceptance criteria, and implementation planning",
|
|
1812
|
+
"keywords": [
|
|
1813
|
+
"epic",
|
|
1814
|
+
"design",
|
|
1815
|
+
"user-stories",
|
|
1816
|
+
"acceptance-criteria",
|
|
1817
|
+
"planning",
|
|
1818
|
+
"agile",
|
|
1819
|
+
"product"
|
|
1820
|
+
],
|
|
1821
|
+
"tier": "community",
|
|
1822
|
+
"category": "productivity",
|
|
1823
|
+
"installMethod": "copy",
|
|
1824
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/epic-design/SKILL.md",
|
|
1825
|
+
"source": "alirezarezvani/claude-skills",
|
|
1826
|
+
"author": "Alireza Rezvani"
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
"id": "comm-interview-system",
|
|
1830
|
+
"name": "Interview System Designer",
|
|
1831
|
+
"description": "Technical interview question design, rubrics, and structured evaluation systems",
|
|
1832
|
+
"keywords": [
|
|
1833
|
+
"interview",
|
|
1834
|
+
"hiring",
|
|
1835
|
+
"questions",
|
|
1836
|
+
"rubric",
|
|
1837
|
+
"evaluation",
|
|
1838
|
+
"technical",
|
|
1839
|
+
"recruiting"
|
|
1840
|
+
],
|
|
1841
|
+
"tier": "community",
|
|
1842
|
+
"category": "productivity",
|
|
1843
|
+
"installMethod": "copy",
|
|
1844
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/interview-system-designer/SKILL.md",
|
|
1845
|
+
"source": "alirezarezvani/claude-skills",
|
|
1846
|
+
"author": "Alireza Rezvani"
|
|
1847
|
+
},
|
|
1848
|
+
{
|
|
1849
|
+
"id": "comm-codebase-onboarding",
|
|
1850
|
+
"name": "Codebase Onboarding",
|
|
1851
|
+
"description": "New developer onboarding \u2014 codebase walkthroughs, architecture docs, and getting-started guides",
|
|
1852
|
+
"keywords": [
|
|
1853
|
+
"onboarding",
|
|
1854
|
+
"codebase",
|
|
1855
|
+
"documentation",
|
|
1856
|
+
"walkthrough",
|
|
1857
|
+
"architecture",
|
|
1858
|
+
"getting-started"
|
|
1859
|
+
],
|
|
1860
|
+
"tier": "community",
|
|
1861
|
+
"category": "productivity",
|
|
1862
|
+
"installMethod": "copy",
|
|
1863
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/codebase-onboarding/SKILL.md",
|
|
1864
|
+
"source": "alirezarezvani/claude-skills",
|
|
1865
|
+
"author": "Alireza Rezvani"
|
|
1866
|
+
},
|
|
1867
|
+
{
|
|
1868
|
+
"id": "comm-runbook-generator",
|
|
1869
|
+
"name": "Runbook Generator",
|
|
1870
|
+
"description": "Operations runbooks, troubleshooting guides, and incident response documentation",
|
|
1871
|
+
"keywords": [
|
|
1872
|
+
"runbook",
|
|
1873
|
+
"operations",
|
|
1874
|
+
"troubleshooting",
|
|
1875
|
+
"incident",
|
|
1876
|
+
"documentation",
|
|
1877
|
+
"sre"
|
|
1878
|
+
],
|
|
1879
|
+
"tier": "community",
|
|
1880
|
+
"category": "automation",
|
|
1881
|
+
"installMethod": "copy",
|
|
1882
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/runbook-generator/SKILL.md",
|
|
1883
|
+
"source": "alirezarezvani/claude-skills",
|
|
1884
|
+
"author": "Alireza Rezvani"
|
|
1885
|
+
},
|
|
1886
|
+
{
|
|
1887
|
+
"id": "comm-spec-driven",
|
|
1888
|
+
"name": "Spec-Driven Workflow",
|
|
1889
|
+
"description": "Specification-first development with clear contracts, schemas, and implementation planning",
|
|
1890
|
+
"keywords": [
|
|
1891
|
+
"spec",
|
|
1892
|
+
"specification",
|
|
1893
|
+
"contracts",
|
|
1894
|
+
"schema",
|
|
1895
|
+
"planning",
|
|
1896
|
+
"documentation",
|
|
1897
|
+
"workflow"
|
|
1898
|
+
],
|
|
1899
|
+
"tier": "community",
|
|
1900
|
+
"category": "productivity",
|
|
1901
|
+
"installMethod": "copy",
|
|
1902
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/spec-driven-workflow/SKILL.md",
|
|
1903
|
+
"source": "alirezarezvani/claude-skills",
|
|
1904
|
+
"author": "Alireza Rezvani"
|
|
1905
|
+
},
|
|
1906
|
+
{
|
|
1907
|
+
"id": "comm-self-improving-agent",
|
|
1908
|
+
"name": "Self-Improving Agent",
|
|
1909
|
+
"description": "Agent self-improvement loops, reflection, and meta-cognitive optimization patterns",
|
|
1910
|
+
"keywords": [
|
|
1911
|
+
"self-improving",
|
|
1912
|
+
"agent",
|
|
1913
|
+
"reflection",
|
|
1914
|
+
"meta-cognitive",
|
|
1915
|
+
"optimization",
|
|
1916
|
+
"learning"
|
|
1917
|
+
],
|
|
1918
|
+
"tier": "community",
|
|
1919
|
+
"category": "data",
|
|
1920
|
+
"installMethod": "copy",
|
|
1921
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/self-improving-agent/SKILL.md",
|
|
1922
|
+
"source": "alirezarezvani/claude-skills",
|
|
1923
|
+
"author": "Alireza Rezvani"
|
|
1924
|
+
},
|
|
1925
|
+
{
|
|
1926
|
+
"id": "comm-github-actions",
|
|
1927
|
+
"name": "GitHub Actions Expert",
|
|
1928
|
+
"description": "GitHub Actions workflows, custom actions, matrix builds, and CI/CD automation",
|
|
1929
|
+
"keywords": [
|
|
1930
|
+
"github-actions",
|
|
1931
|
+
"ci",
|
|
1932
|
+
"workflows",
|
|
1933
|
+
"actions",
|
|
1934
|
+
"automation",
|
|
1935
|
+
"yaml",
|
|
1936
|
+
"pipelines"
|
|
1937
|
+
],
|
|
1938
|
+
"tier": "community",
|
|
1939
|
+
"category": "automation",
|
|
1940
|
+
"installMethod": "copy",
|
|
1941
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/github-actions/SKILL.md",
|
|
1942
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
1943
|
+
"author": "ComposioHQ"
|
|
1944
|
+
},
|
|
1945
|
+
{
|
|
1946
|
+
"id": "comm-python-expert",
|
|
1947
|
+
"name": "Python Expert",
|
|
1948
|
+
"description": "Python best practices, async patterns, type hints, packaging, and Pythonic idioms",
|
|
1949
|
+
"keywords": [
|
|
1950
|
+
"python",
|
|
1951
|
+
"async",
|
|
1952
|
+
"type-hints",
|
|
1953
|
+
"packaging",
|
|
1954
|
+
"pip",
|
|
1955
|
+
"pytest",
|
|
1956
|
+
"pythonic"
|
|
1957
|
+
],
|
|
1958
|
+
"tier": "community",
|
|
1959
|
+
"category": "development",
|
|
1960
|
+
"installMethod": "copy",
|
|
1961
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/python/SKILL.md",
|
|
1962
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
1963
|
+
"author": "ComposioHQ"
|
|
1964
|
+
},
|
|
1965
|
+
{
|
|
1966
|
+
"id": "comm-rust-expert",
|
|
1967
|
+
"name": "Rust Expert",
|
|
1968
|
+
"description": "Rust ownership, lifetimes, error handling, async patterns, and systems programming",
|
|
1969
|
+
"keywords": [
|
|
1970
|
+
"rust",
|
|
1971
|
+
"ownership",
|
|
1972
|
+
"lifetimes",
|
|
1973
|
+
"cargo",
|
|
1974
|
+
"systems",
|
|
1975
|
+
"memory-safety",
|
|
1976
|
+
"concurrency"
|
|
1977
|
+
],
|
|
1978
|
+
"tier": "community",
|
|
1979
|
+
"category": "development",
|
|
1980
|
+
"installMethod": "copy",
|
|
1981
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/rust/SKILL.md",
|
|
1982
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
1983
|
+
"author": "ComposioHQ"
|
|
1984
|
+
},
|
|
1985
|
+
{
|
|
1986
|
+
"id": "comm-go-expert",
|
|
1987
|
+
"name": "Go Expert",
|
|
1988
|
+
"description": "Go development \u2014 goroutines, channels, interfaces, error handling, and idiomatic Go",
|
|
1989
|
+
"keywords": [
|
|
1990
|
+
"golang",
|
|
1991
|
+
"goroutines",
|
|
1992
|
+
"channels",
|
|
1993
|
+
"interfaces",
|
|
1994
|
+
"concurrency",
|
|
1995
|
+
"idiomatic"
|
|
1996
|
+
],
|
|
1997
|
+
"tier": "community",
|
|
1998
|
+
"category": "development",
|
|
1999
|
+
"installMethod": "copy",
|
|
2000
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/go/SKILL.md",
|
|
2001
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2002
|
+
"author": "ComposioHQ"
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
"id": "comm-graphql-expert",
|
|
2006
|
+
"name": "GraphQL Expert",
|
|
2007
|
+
"description": "GraphQL schema design, resolvers, subscriptions, and client-server integration",
|
|
2008
|
+
"keywords": [
|
|
2009
|
+
"graphql",
|
|
2010
|
+
"schema",
|
|
2011
|
+
"resolvers",
|
|
2012
|
+
"subscriptions",
|
|
2013
|
+
"apollo",
|
|
2014
|
+
"queries",
|
|
2015
|
+
"mutations"
|
|
2016
|
+
],
|
|
2017
|
+
"tier": "community",
|
|
2018
|
+
"category": "development",
|
|
2019
|
+
"installMethod": "copy",
|
|
2020
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/graphql/SKILL.md",
|
|
2021
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2022
|
+
"author": "ComposioHQ"
|
|
2023
|
+
},
|
|
2024
|
+
{
|
|
2025
|
+
"id": "comm-supabase-expert",
|
|
2026
|
+
"name": "Supabase Expert",
|
|
2027
|
+
"description": "Supabase auth, RLS policies, Edge Functions, realtime subscriptions, and database design",
|
|
2028
|
+
"keywords": [
|
|
2029
|
+
"supabase",
|
|
2030
|
+
"auth",
|
|
2031
|
+
"rls",
|
|
2032
|
+
"edge-functions",
|
|
2033
|
+
"realtime",
|
|
2034
|
+
"postgres",
|
|
2035
|
+
"baas"
|
|
2036
|
+
],
|
|
2037
|
+
"tier": "community",
|
|
2038
|
+
"category": "development",
|
|
2039
|
+
"installMethod": "copy",
|
|
2040
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/supabase/SKILL.md",
|
|
2041
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2042
|
+
"author": "ComposioHQ"
|
|
2043
|
+
},
|
|
2044
|
+
{
|
|
2045
|
+
"id": "comm-firebase-expert",
|
|
2046
|
+
"name": "Firebase Expert",
|
|
2047
|
+
"description": "Firebase Auth, Firestore, Cloud Functions, hosting, and real-time database patterns",
|
|
2048
|
+
"keywords": [
|
|
2049
|
+
"firebase",
|
|
2050
|
+
"firestore",
|
|
2051
|
+
"cloud-functions",
|
|
2052
|
+
"hosting",
|
|
2053
|
+
"realtime",
|
|
2054
|
+
"google",
|
|
2055
|
+
"baas"
|
|
2056
|
+
],
|
|
2057
|
+
"tier": "community",
|
|
2058
|
+
"category": "development",
|
|
2059
|
+
"installMethod": "copy",
|
|
2060
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/firebase/SKILL.md",
|
|
2061
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2062
|
+
"author": "ComposioHQ"
|
|
2063
|
+
},
|
|
2064
|
+
{
|
|
2065
|
+
"id": "comm-vue-expert",
|
|
2066
|
+
"name": "Vue.js Expert",
|
|
2067
|
+
"description": "Vue 3 Composition API, reactivity, Pinia, Nuxt, and component architecture",
|
|
2068
|
+
"keywords": [
|
|
2069
|
+
"vue",
|
|
2070
|
+
"composition-api",
|
|
2071
|
+
"reactivity",
|
|
2072
|
+
"pinia",
|
|
2073
|
+
"nuxt",
|
|
2074
|
+
"components",
|
|
2075
|
+
"frontend"
|
|
2076
|
+
],
|
|
2077
|
+
"tier": "community",
|
|
2078
|
+
"category": "development",
|
|
2079
|
+
"installMethod": "copy",
|
|
2080
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/vue/SKILL.md",
|
|
2081
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2082
|
+
"author": "ComposioHQ"
|
|
2083
|
+
},
|
|
2084
|
+
{
|
|
2085
|
+
"id": "comm-svelte-expert",
|
|
2086
|
+
"name": "Svelte Expert",
|
|
2087
|
+
"description": "Svelte 5 runes, SvelteKit, server-side rendering, and reactive programming patterns",
|
|
2088
|
+
"keywords": [
|
|
2089
|
+
"svelte",
|
|
2090
|
+
"sveltekit",
|
|
2091
|
+
"runes",
|
|
2092
|
+
"reactive",
|
|
2093
|
+
"ssr",
|
|
2094
|
+
"frontend",
|
|
2095
|
+
"components"
|
|
2096
|
+
],
|
|
2097
|
+
"tier": "community",
|
|
2098
|
+
"category": "development",
|
|
2099
|
+
"installMethod": "copy",
|
|
2100
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/svelte/SKILL.md",
|
|
2101
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2102
|
+
"author": "ComposioHQ"
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
"id": "comm-tailwind-expert",
|
|
2106
|
+
"name": "Tailwind CSS Expert",
|
|
2107
|
+
"description": "Tailwind utility classes, custom configurations, responsive design, and component patterns",
|
|
2108
|
+
"keywords": [
|
|
2109
|
+
"tailwind",
|
|
2110
|
+
"css",
|
|
2111
|
+
"utility",
|
|
2112
|
+
"responsive",
|
|
2113
|
+
"configuration",
|
|
2114
|
+
"design-system"
|
|
2115
|
+
],
|
|
2116
|
+
"tier": "community",
|
|
2117
|
+
"category": "design",
|
|
2118
|
+
"installMethod": "copy",
|
|
2119
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/tailwind/SKILL.md",
|
|
2120
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2121
|
+
"author": "ComposioHQ"
|
|
2122
|
+
},
|
|
2123
|
+
{
|
|
2124
|
+
"id": "comm-prisma-expert",
|
|
2125
|
+
"name": "Prisma Expert",
|
|
2126
|
+
"description": "Prisma ORM, schema modeling, migrations, queries, and database best practices",
|
|
2127
|
+
"keywords": [
|
|
2128
|
+
"prisma",
|
|
2129
|
+
"orm",
|
|
2130
|
+
"schema",
|
|
2131
|
+
"migrations",
|
|
2132
|
+
"database",
|
|
2133
|
+
"queries",
|
|
2134
|
+
"typescript"
|
|
2135
|
+
],
|
|
2136
|
+
"tier": "community",
|
|
2137
|
+
"category": "data",
|
|
2138
|
+
"installMethod": "copy",
|
|
2139
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/prisma/SKILL.md",
|
|
2140
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2141
|
+
"author": "ComposioHQ"
|
|
2142
|
+
},
|
|
2143
|
+
{
|
|
2144
|
+
"id": "comm-redis-expert",
|
|
2145
|
+
"name": "Redis Expert",
|
|
2146
|
+
"description": "Redis caching, pub/sub, streams, data structures, and performance patterns",
|
|
2147
|
+
"keywords": [
|
|
2148
|
+
"redis",
|
|
2149
|
+
"caching",
|
|
2150
|
+
"pub-sub",
|
|
2151
|
+
"streams",
|
|
2152
|
+
"data-structures",
|
|
2153
|
+
"performance"
|
|
2154
|
+
],
|
|
2155
|
+
"tier": "community",
|
|
2156
|
+
"category": "data",
|
|
2157
|
+
"installMethod": "copy",
|
|
2158
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/redis/SKILL.md",
|
|
2159
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2160
|
+
"author": "ComposioHQ"
|
|
2161
|
+
},
|
|
2162
|
+
{
|
|
2163
|
+
"id": "comm-elasticsearch",
|
|
2164
|
+
"name": "Elasticsearch Expert",
|
|
2165
|
+
"description": "Elasticsearch queries, indexing, mappings, aggregations, and search optimization",
|
|
2166
|
+
"keywords": [
|
|
2167
|
+
"elasticsearch",
|
|
2168
|
+
"search",
|
|
2169
|
+
"indexing",
|
|
2170
|
+
"queries",
|
|
2171
|
+
"aggregations",
|
|
2172
|
+
"full-text"
|
|
2173
|
+
],
|
|
2174
|
+
"tier": "community",
|
|
2175
|
+
"category": "data",
|
|
2176
|
+
"installMethod": "copy",
|
|
2177
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/elasticsearch/SKILL.md",
|
|
2178
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2179
|
+
"author": "ComposioHQ"
|
|
2180
|
+
},
|
|
2181
|
+
{
|
|
2182
|
+
"id": "comm-data-visualization",
|
|
2183
|
+
"name": "Data Visualization",
|
|
2184
|
+
"description": "Charts, dashboards, D3.js, and data storytelling through visual representations",
|
|
2185
|
+
"keywords": [
|
|
2186
|
+
"visualization",
|
|
2187
|
+
"charts",
|
|
2188
|
+
"dashboards",
|
|
2189
|
+
"d3",
|
|
2190
|
+
"data",
|
|
2191
|
+
"graphs",
|
|
2192
|
+
"reporting"
|
|
2193
|
+
],
|
|
2194
|
+
"tier": "community",
|
|
2195
|
+
"category": "data",
|
|
2196
|
+
"installMethod": "copy",
|
|
2197
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/data-visualization/SKILL.md",
|
|
2198
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2199
|
+
"author": "ComposioHQ"
|
|
2200
|
+
},
|
|
2201
|
+
{
|
|
2202
|
+
"id": "comm-web-scraping",
|
|
2203
|
+
"name": "Web Scraping",
|
|
2204
|
+
"description": "Web scraping with ethical practices, anti-detection, rate limiting, and data extraction",
|
|
2205
|
+
"keywords": [
|
|
2206
|
+
"scraping",
|
|
2207
|
+
"web",
|
|
2208
|
+
"extraction",
|
|
2209
|
+
"crawling",
|
|
2210
|
+
"parsing",
|
|
2211
|
+
"automation",
|
|
2212
|
+
"data"
|
|
2213
|
+
],
|
|
2214
|
+
"tier": "community",
|
|
2215
|
+
"category": "automation",
|
|
2216
|
+
"installMethod": "copy",
|
|
2217
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/web-scraping/SKILL.md",
|
|
2218
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2219
|
+
"author": "ComposioHQ"
|
|
2220
|
+
},
|
|
2221
|
+
{
|
|
2222
|
+
"id": "comm-cli-builder",
|
|
2223
|
+
"name": "CLI Builder",
|
|
2224
|
+
"description": "Command-line tool design, argument parsing, interactive prompts, and CLI UX patterns",
|
|
2225
|
+
"keywords": [
|
|
2226
|
+
"cli",
|
|
2227
|
+
"command-line",
|
|
2228
|
+
"terminal",
|
|
2229
|
+
"arguments",
|
|
2230
|
+
"prompts",
|
|
2231
|
+
"tool",
|
|
2232
|
+
"commander"
|
|
2233
|
+
],
|
|
2234
|
+
"tier": "community",
|
|
2235
|
+
"category": "development",
|
|
2236
|
+
"installMethod": "copy",
|
|
2237
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/cli/SKILL.md",
|
|
2238
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2239
|
+
"author": "ComposioHQ"
|
|
2240
|
+
},
|
|
2241
|
+
{
|
|
2242
|
+
"id": "comm-oauth-integration",
|
|
2243
|
+
"name": "OAuth Integration",
|
|
2244
|
+
"description": "OAuth 2.0/OIDC implementation, token management, and third-party authentication flows",
|
|
2245
|
+
"keywords": [
|
|
2246
|
+
"oauth",
|
|
2247
|
+
"authentication",
|
|
2248
|
+
"oidc",
|
|
2249
|
+
"tokens",
|
|
2250
|
+
"authorization",
|
|
2251
|
+
"login",
|
|
2252
|
+
"sso"
|
|
2253
|
+
],
|
|
2254
|
+
"tier": "community",
|
|
2255
|
+
"category": "development",
|
|
2256
|
+
"installMethod": "copy",
|
|
2257
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/oauth/SKILL.md",
|
|
2258
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2259
|
+
"author": "ComposioHQ"
|
|
2260
|
+
},
|
|
2261
|
+
{
|
|
2262
|
+
"id": "comm-websocket-expert",
|
|
2263
|
+
"name": "WebSocket Expert",
|
|
2264
|
+
"description": "Real-time communication with WebSockets, Socket.io, and server-sent events",
|
|
2265
|
+
"keywords": [
|
|
2266
|
+
"websocket",
|
|
2267
|
+
"real-time",
|
|
2268
|
+
"socket-io",
|
|
2269
|
+
"sse",
|
|
2270
|
+
"streaming",
|
|
2271
|
+
"bidirectional"
|
|
2272
|
+
],
|
|
2273
|
+
"tier": "community",
|
|
2274
|
+
"category": "development",
|
|
2275
|
+
"installMethod": "copy",
|
|
2276
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/websocket/SKILL.md",
|
|
2277
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2278
|
+
"author": "ComposioHQ"
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
"id": "comm-markdown-docs",
|
|
2282
|
+
"name": "Documentation Writer",
|
|
2283
|
+
"description": "Technical documentation, API docs, READMEs, and developer-facing content",
|
|
2284
|
+
"keywords": [
|
|
2285
|
+
"documentation",
|
|
2286
|
+
"readme",
|
|
2287
|
+
"api-docs",
|
|
2288
|
+
"technical-writing",
|
|
2289
|
+
"markdown",
|
|
2290
|
+
"guides"
|
|
2291
|
+
],
|
|
2292
|
+
"tier": "community",
|
|
2293
|
+
"category": "productivity",
|
|
2294
|
+
"installMethod": "copy",
|
|
2295
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/documentation/SKILL.md",
|
|
2296
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2297
|
+
"author": "ComposioHQ"
|
|
2298
|
+
},
|
|
2299
|
+
{
|
|
2300
|
+
"id": "comm-regex-expert",
|
|
2301
|
+
"name": "Regex Expert",
|
|
2302
|
+
"description": "Regular expressions \u2014 pattern matching, lookaheads, capture groups, and validation",
|
|
2303
|
+
"keywords": [
|
|
2304
|
+
"regex",
|
|
2305
|
+
"regular-expressions",
|
|
2306
|
+
"pattern",
|
|
2307
|
+
"matching",
|
|
2308
|
+
"validation",
|
|
2309
|
+
"parsing"
|
|
2310
|
+
],
|
|
2311
|
+
"tier": "community",
|
|
2312
|
+
"category": "development",
|
|
2313
|
+
"installMethod": "copy",
|
|
2314
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/regex/SKILL.md",
|
|
2315
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2316
|
+
"author": "ComposioHQ"
|
|
2317
|
+
},
|
|
2318
|
+
{
|
|
2319
|
+
"id": "comm-bash-scripting",
|
|
2320
|
+
"name": "Bash Scripting",
|
|
2321
|
+
"description": "Shell scripting, process automation, file manipulation, and system administration",
|
|
2322
|
+
"keywords": [
|
|
2323
|
+
"bash",
|
|
2324
|
+
"shell",
|
|
2325
|
+
"scripting",
|
|
2326
|
+
"automation",
|
|
2327
|
+
"linux",
|
|
2328
|
+
"system-admin",
|
|
2329
|
+
"cli"
|
|
2330
|
+
],
|
|
2331
|
+
"tier": "community",
|
|
2332
|
+
"category": "automation",
|
|
2333
|
+
"installMethod": "copy",
|
|
2334
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/bash/SKILL.md",
|
|
2335
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2336
|
+
"author": "ComposioHQ"
|
|
2337
|
+
},
|
|
2338
|
+
{
|
|
2339
|
+
"id": "comm-figma-to-code",
|
|
2340
|
+
"name": "Figma to Code",
|
|
2341
|
+
"description": "Convert Figma designs to production code \u2014 component mapping and design token extraction",
|
|
2342
|
+
"keywords": [
|
|
2343
|
+
"figma",
|
|
2344
|
+
"design-to-code",
|
|
2345
|
+
"components",
|
|
2346
|
+
"design-tokens",
|
|
2347
|
+
"ui",
|
|
2348
|
+
"frontend"
|
|
2349
|
+
],
|
|
2350
|
+
"tier": "community",
|
|
2351
|
+
"category": "design",
|
|
2352
|
+
"installMethod": "copy",
|
|
2353
|
+
"installTarget": "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/main/figma-to-code/SKILL.md",
|
|
2354
|
+
"source": "ComposioHQ/awesome-claude-skills",
|
|
2355
|
+
"author": "ComposioHQ"
|
|
2356
|
+
},
|
|
2357
|
+
{
|
|
2358
|
+
"id": "comm-git-worktree",
|
|
2359
|
+
"name": "Git Worktree Manager",
|
|
2360
|
+
"description": "Git worktree management for parallel development \u2014 branch isolation and workspace handling",
|
|
2361
|
+
"keywords": [
|
|
2362
|
+
"git",
|
|
2363
|
+
"worktree",
|
|
2364
|
+
"parallel",
|
|
2365
|
+
"branches",
|
|
2366
|
+
"workspace",
|
|
2367
|
+
"isolation"
|
|
2368
|
+
],
|
|
2369
|
+
"tier": "community",
|
|
2370
|
+
"category": "development",
|
|
2371
|
+
"installMethod": "copy",
|
|
2372
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/git-worktree-manager/SKILL.md",
|
|
2373
|
+
"source": "alirezarezvani/claude-skills",
|
|
2374
|
+
"author": "Alireza Rezvani"
|
|
2375
|
+
},
|
|
2376
|
+
{
|
|
2377
|
+
"id": "comm-api-test-suite",
|
|
2378
|
+
"name": "API Test Suite Builder",
|
|
2379
|
+
"description": "API testing suites with request chains, assertions, and environment management",
|
|
2380
|
+
"keywords": [
|
|
2381
|
+
"api",
|
|
2382
|
+
"testing",
|
|
2383
|
+
"suite",
|
|
2384
|
+
"assertions",
|
|
2385
|
+
"postman",
|
|
2386
|
+
"requests",
|
|
2387
|
+
"integration"
|
|
2388
|
+
],
|
|
2389
|
+
"tier": "community",
|
|
2390
|
+
"category": "development",
|
|
2391
|
+
"installMethod": "copy",
|
|
2392
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/api-test-suite-builder/SKILL.md",
|
|
2393
|
+
"source": "alirezarezvani/claude-skills",
|
|
2394
|
+
"author": "Alireza Rezvani"
|
|
2395
|
+
},
|
|
2396
|
+
{
|
|
2397
|
+
"id": "comm-autoresearch",
|
|
2398
|
+
"name": "Auto-Research Agent",
|
|
2399
|
+
"description": "Automated research workflows \u2014 source discovery, summarization, and knowledge synthesis",
|
|
2400
|
+
"keywords": [
|
|
2401
|
+
"research",
|
|
2402
|
+
"automated",
|
|
2403
|
+
"summarization",
|
|
2404
|
+
"knowledge",
|
|
2405
|
+
"synthesis",
|
|
2406
|
+
"discovery"
|
|
2407
|
+
],
|
|
2408
|
+
"tier": "community",
|
|
2409
|
+
"category": "research",
|
|
2410
|
+
"installMethod": "copy",
|
|
2411
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/autoresearch-agent/SKILL.md",
|
|
2412
|
+
"source": "alirezarezvani/claude-skills",
|
|
2413
|
+
"author": "Alireza Rezvani"
|
|
2414
|
+
},
|
|
2415
|
+
{
|
|
2416
|
+
"id": "comm-focused-fix",
|
|
2417
|
+
"name": "Focused Fix",
|
|
2418
|
+
"description": "Targeted bug fixing \u2014 reproduce, isolate, fix, and verify with minimal scope creep",
|
|
2419
|
+
"keywords": [
|
|
2420
|
+
"bug-fix",
|
|
2421
|
+
"focused",
|
|
2422
|
+
"debugging",
|
|
2423
|
+
"reproduce",
|
|
2424
|
+
"isolate",
|
|
2425
|
+
"verify",
|
|
2426
|
+
"targeted"
|
|
2427
|
+
],
|
|
2428
|
+
"tier": "community",
|
|
2429
|
+
"category": "development",
|
|
2430
|
+
"installMethod": "copy",
|
|
2431
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/focused-fix/SKILL.md",
|
|
2432
|
+
"source": "alirezarezvani/claude-skills",
|
|
2433
|
+
"author": "Alireza Rezvani"
|
|
2434
|
+
},
|
|
2435
|
+
{
|
|
2436
|
+
"id": "comm-self-eval",
|
|
2437
|
+
"name": "Self-Evaluation",
|
|
2438
|
+
"description": "Code self-evaluation and quality assessment before submission",
|
|
2439
|
+
"keywords": [
|
|
2440
|
+
"self-eval",
|
|
2441
|
+
"quality",
|
|
2442
|
+
"assessment",
|
|
2443
|
+
"review",
|
|
2444
|
+
"evaluation",
|
|
2445
|
+
"checklist"
|
|
2446
|
+
],
|
|
2447
|
+
"tier": "community",
|
|
2448
|
+
"category": "development",
|
|
2449
|
+
"installMethod": "copy",
|
|
2450
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/self-eval/SKILL.md",
|
|
2451
|
+
"source": "alirezarezvani/claude-skills",
|
|
2452
|
+
"author": "Alireza Rezvani"
|
|
2453
|
+
},
|
|
2454
|
+
{
|
|
2455
|
+
"id": "comm-skill-tester",
|
|
2456
|
+
"name": "Skill Tester",
|
|
2457
|
+
"description": "Test and validate SKILL.md files \u2014 syntax checking, capability verification",
|
|
2458
|
+
"keywords": [
|
|
2459
|
+
"skill",
|
|
2460
|
+
"testing",
|
|
2461
|
+
"validation",
|
|
2462
|
+
"skill-md",
|
|
2463
|
+
"verification",
|
|
2464
|
+
"quality"
|
|
2465
|
+
],
|
|
2466
|
+
"tier": "community",
|
|
2467
|
+
"category": "development",
|
|
2468
|
+
"installMethod": "copy",
|
|
2469
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/skill-tester/SKILL.md",
|
|
2470
|
+
"source": "alirezarezvani/claude-skills",
|
|
2471
|
+
"author": "Alireza Rezvani"
|
|
2472
|
+
},
|
|
2473
|
+
{
|
|
2474
|
+
"id": "comm-prompt-governance",
|
|
2475
|
+
"name": "Prompt Governance",
|
|
2476
|
+
"description": "Prompt management, versioning, quality control, and prompt engineering governance",
|
|
2477
|
+
"keywords": [
|
|
2478
|
+
"prompt",
|
|
2479
|
+
"governance",
|
|
2480
|
+
"versioning",
|
|
2481
|
+
"quality",
|
|
2482
|
+
"management",
|
|
2483
|
+
"engineering"
|
|
2484
|
+
],
|
|
2485
|
+
"tier": "community",
|
|
2486
|
+
"category": "data",
|
|
2487
|
+
"installMethod": "copy",
|
|
2488
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/prompt-governance/SKILL.md",
|
|
2489
|
+
"source": "alirezarezvani/claude-skills",
|
|
2490
|
+
"author": "Alireza Rezvani"
|
|
2491
|
+
},
|
|
2492
|
+
{
|
|
2493
|
+
"id": "comm-skill-security-auditor",
|
|
2494
|
+
"name": "Skill Security Auditor",
|
|
2495
|
+
"description": "Security audit for SKILL.md files \u2014 permission checking and risk assessment",
|
|
2496
|
+
"keywords": [
|
|
2497
|
+
"security",
|
|
2498
|
+
"audit",
|
|
2499
|
+
"skill",
|
|
2500
|
+
"permissions",
|
|
2501
|
+
"risk",
|
|
2502
|
+
"assessment"
|
|
2503
|
+
],
|
|
2504
|
+
"tier": "community",
|
|
2505
|
+
"category": "development",
|
|
2506
|
+
"installMethod": "copy",
|
|
2507
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/skill-security-auditor/SKILL.md",
|
|
2508
|
+
"source": "alirezarezvani/claude-skills",
|
|
2509
|
+
"author": "Alireza Rezvani"
|
|
2510
|
+
},
|
|
2511
|
+
{
|
|
2512
|
+
"id": "comm-api-design-reviewer",
|
|
2513
|
+
"name": "API Design Reviewer",
|
|
2514
|
+
"description": "Review API designs for consistency, RESTful conventions, and developer experience",
|
|
2515
|
+
"keywords": [
|
|
2516
|
+
"api",
|
|
2517
|
+
"design",
|
|
2518
|
+
"review",
|
|
2519
|
+
"rest",
|
|
2520
|
+
"conventions",
|
|
2521
|
+
"dx",
|
|
2522
|
+
"consistency"
|
|
2523
|
+
],
|
|
2524
|
+
"tier": "community",
|
|
2525
|
+
"category": "development",
|
|
2526
|
+
"installMethod": "copy",
|
|
2527
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/api-design-reviewer/SKILL.md",
|
|
2528
|
+
"source": "alirezarezvani/claude-skills",
|
|
2529
|
+
"author": "Alireza Rezvani"
|
|
2530
|
+
},
|
|
2531
|
+
{
|
|
2532
|
+
"id": "comm-adversarial-reviewer",
|
|
2533
|
+
"name": "Adversarial Reviewer",
|
|
2534
|
+
"description": "Devil's advocate code review \u2014 find edge cases, race conditions, and failure modes",
|
|
2535
|
+
"keywords": [
|
|
2536
|
+
"adversarial",
|
|
2537
|
+
"review",
|
|
2538
|
+
"edge-cases",
|
|
2539
|
+
"race-conditions",
|
|
2540
|
+
"failure",
|
|
2541
|
+
"stress-test"
|
|
2542
|
+
],
|
|
2543
|
+
"tier": "community",
|
|
2544
|
+
"category": "development",
|
|
2545
|
+
"installMethod": "copy",
|
|
2546
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/adversarial-reviewer/SKILL.md",
|
|
2547
|
+
"source": "alirezarezvani/claude-skills",
|
|
2548
|
+
"author": "Alireza Rezvani"
|
|
2549
|
+
},
|
|
2550
|
+
{
|
|
2551
|
+
"id": "comm-incident-commander",
|
|
2552
|
+
"name": "Incident Commander",
|
|
2553
|
+
"description": "Incident command leadership \u2014 triage, coordination, communication, and resolution",
|
|
2554
|
+
"keywords": [
|
|
2555
|
+
"incident",
|
|
2556
|
+
"commander",
|
|
2557
|
+
"triage",
|
|
2558
|
+
"coordination",
|
|
2559
|
+
"communication",
|
|
2560
|
+
"resolution"
|
|
2561
|
+
],
|
|
2562
|
+
"tier": "community",
|
|
2563
|
+
"category": "automation",
|
|
2564
|
+
"installMethod": "copy",
|
|
2565
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/incident-commander/SKILL.md",
|
|
2566
|
+
"source": "alirezarezvani/claude-skills",
|
|
2567
|
+
"author": "Alireza Rezvani"
|
|
2568
|
+
},
|
|
2569
|
+
{
|
|
2570
|
+
"id": "comm-google-workspace",
|
|
2571
|
+
"name": "Google Workspace CLI",
|
|
2572
|
+
"description": "Google Workspace automation \u2014 Docs, Sheets, Drive, and Gmail integration patterns",
|
|
2573
|
+
"keywords": [
|
|
2574
|
+
"google",
|
|
2575
|
+
"workspace",
|
|
2576
|
+
"docs",
|
|
2577
|
+
"sheets",
|
|
2578
|
+
"drive",
|
|
2579
|
+
"gmail",
|
|
2580
|
+
"automation"
|
|
2581
|
+
],
|
|
2582
|
+
"tier": "community",
|
|
2583
|
+
"category": "productivity",
|
|
2584
|
+
"installMethod": "copy",
|
|
2585
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/google-workspace-cli/SKILL.md",
|
|
2586
|
+
"source": "alirezarezvani/claude-skills",
|
|
2587
|
+
"author": "Alireza Rezvani"
|
|
2588
|
+
},
|
|
2589
|
+
{
|
|
2590
|
+
"id": "comm-ms365-manager",
|
|
2591
|
+
"name": "MS365 Tenant Manager",
|
|
2592
|
+
"description": "Microsoft 365 administration, tenant management, and Office integration patterns",
|
|
2593
|
+
"keywords": [
|
|
2594
|
+
"microsoft",
|
|
2595
|
+
"office365",
|
|
2596
|
+
"ms365",
|
|
2597
|
+
"tenant",
|
|
2598
|
+
"admin",
|
|
2599
|
+
"outlook",
|
|
2600
|
+
"teams"
|
|
2601
|
+
],
|
|
2602
|
+
"tier": "community",
|
|
2603
|
+
"category": "productivity",
|
|
2604
|
+
"installMethod": "copy",
|
|
2605
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/ms365-tenant-manager/SKILL.md",
|
|
2606
|
+
"source": "alirezarezvani/claude-skills",
|
|
2607
|
+
"author": "Alireza Rezvani"
|
|
2608
|
+
},
|
|
2609
|
+
{
|
|
2610
|
+
"id": "comm-competitor-alternatives",
|
|
2611
|
+
"name": "Competitor Alternatives Analysis",
|
|
2612
|
+
"description": "Competitive analysis pages \u2014 feature comparisons, alternative positioning, and differentiation",
|
|
2613
|
+
"keywords": [
|
|
2614
|
+
"competitor",
|
|
2615
|
+
"alternatives",
|
|
2616
|
+
"comparison",
|
|
2617
|
+
"positioning",
|
|
2618
|
+
"differentiation",
|
|
2619
|
+
"analysis"
|
|
2620
|
+
],
|
|
2621
|
+
"tier": "community",
|
|
2622
|
+
"category": "business",
|
|
2623
|
+
"installMethod": "copy",
|
|
2624
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/competitor-alternatives/SKILL.md",
|
|
2625
|
+
"source": "alirezarezvani/claude-skills",
|
|
2626
|
+
"author": "Alireza Rezvani"
|
|
2627
|
+
},
|
|
2628
|
+
{
|
|
2629
|
+
"id": "comm-free-tool-strategy",
|
|
2630
|
+
"name": "Free Tool Strategy",
|
|
2631
|
+
"description": "Build free tools for lead generation \u2014 calculators, analyzers, and conversion funnels",
|
|
2632
|
+
"keywords": [
|
|
2633
|
+
"free-tool",
|
|
2634
|
+
"lead-generation",
|
|
2635
|
+
"calculator",
|
|
2636
|
+
"conversion",
|
|
2637
|
+
"strategy",
|
|
2638
|
+
"growth"
|
|
2639
|
+
],
|
|
2640
|
+
"tier": "community",
|
|
2641
|
+
"category": "business",
|
|
2642
|
+
"installMethod": "copy",
|
|
2643
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/free-tool-strategy/SKILL.md",
|
|
2644
|
+
"source": "alirezarezvani/claude-skills",
|
|
2645
|
+
"author": "Alireza Rezvani"
|
|
2646
|
+
},
|
|
2647
|
+
{
|
|
2648
|
+
"id": "comm-content-production",
|
|
2649
|
+
"name": "Content Production",
|
|
2650
|
+
"description": "Scalable content production workflows, editorial processes, and quality standards",
|
|
2651
|
+
"keywords": [
|
|
2652
|
+
"content",
|
|
2653
|
+
"production",
|
|
2654
|
+
"editorial",
|
|
2655
|
+
"workflow",
|
|
2656
|
+
"quality",
|
|
2657
|
+
"publishing",
|
|
2658
|
+
"scale"
|
|
2659
|
+
],
|
|
2660
|
+
"tier": "community",
|
|
2661
|
+
"category": "content",
|
|
2662
|
+
"installMethod": "copy",
|
|
2663
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/content-production/SKILL.md",
|
|
2664
|
+
"source": "alirezarezvani/claude-skills",
|
|
2665
|
+
"author": "Alireza Rezvani"
|
|
2666
|
+
},
|
|
2667
|
+
{
|
|
2668
|
+
"id": "comm-analytics-tracking",
|
|
2669
|
+
"name": "Analytics Tracking Setup",
|
|
2670
|
+
"description": "Analytics implementation \u2014 GA4, event tracking, conversion tracking, and data layers",
|
|
2671
|
+
"keywords": [
|
|
2672
|
+
"analytics",
|
|
2673
|
+
"tracking",
|
|
2674
|
+
"ga4",
|
|
2675
|
+
"events",
|
|
2676
|
+
"conversion",
|
|
2677
|
+
"data-layer",
|
|
2678
|
+
"measurement"
|
|
2679
|
+
],
|
|
2680
|
+
"tier": "community",
|
|
2681
|
+
"category": "data",
|
|
2682
|
+
"installMethod": "copy",
|
|
2683
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/analytics-tracking/SKILL.md",
|
|
2684
|
+
"source": "alirezarezvani/claude-skills",
|
|
2685
|
+
"author": "Alireza Rezvani"
|
|
2686
|
+
},
|
|
2687
|
+
{
|
|
2688
|
+
"id": "comm-marketing-ideas",
|
|
2689
|
+
"name": "Marketing Ideas Generator",
|
|
2690
|
+
"description": "Creative marketing idea generation, brainstorming frameworks, and campaign concepts",
|
|
2691
|
+
"keywords": [
|
|
2692
|
+
"marketing",
|
|
2693
|
+
"ideas",
|
|
2694
|
+
"brainstorming",
|
|
2695
|
+
"creative",
|
|
2696
|
+
"campaigns",
|
|
2697
|
+
"generation"
|
|
2698
|
+
],
|
|
2699
|
+
"tier": "community",
|
|
2700
|
+
"category": "business",
|
|
2701
|
+
"installMethod": "copy",
|
|
2702
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/marketing-ideas/SKILL.md",
|
|
2703
|
+
"source": "alirezarezvani/claude-skills",
|
|
2704
|
+
"author": "Alireza Rezvani"
|
|
2705
|
+
},
|
|
2706
|
+
{
|
|
2707
|
+
"id": "comm-site-architecture",
|
|
2708
|
+
"name": "Site Architecture",
|
|
2709
|
+
"description": "Website information architecture, navigation, sitemaps, and URL structure",
|
|
2710
|
+
"keywords": [
|
|
2711
|
+
"site-architecture",
|
|
2712
|
+
"navigation",
|
|
2713
|
+
"sitemap",
|
|
2714
|
+
"url-structure",
|
|
2715
|
+
"information-architecture"
|
|
2716
|
+
],
|
|
2717
|
+
"tier": "community",
|
|
2718
|
+
"category": "design",
|
|
2719
|
+
"installMethod": "copy",
|
|
2720
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/site-architecture/SKILL.md",
|
|
2721
|
+
"source": "alirezarezvani/claude-skills",
|
|
2722
|
+
"author": "Alireza Rezvani"
|
|
2723
|
+
},
|
|
2724
|
+
{
|
|
2725
|
+
"id": "comm-secrets-vault",
|
|
2726
|
+
"name": "Secrets Vault Manager",
|
|
2727
|
+
"description": "HashiCorp Vault, AWS Secrets Manager, and secure credential management",
|
|
2728
|
+
"keywords": [
|
|
2729
|
+
"vault",
|
|
2730
|
+
"secrets",
|
|
2731
|
+
"hashicorp",
|
|
2732
|
+
"credentials",
|
|
2733
|
+
"secure",
|
|
2734
|
+
"management",
|
|
2735
|
+
"rotation"
|
|
2736
|
+
],
|
|
2737
|
+
"tier": "community",
|
|
2738
|
+
"category": "automation",
|
|
2739
|
+
"installMethod": "copy",
|
|
2740
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/secrets-vault-manager/SKILL.md",
|
|
2741
|
+
"source": "alirezarezvani/claude-skills",
|
|
2742
|
+
"author": "Alireza Rezvani"
|
|
2743
|
+
},
|
|
2744
|
+
{
|
|
2745
|
+
"id": "comm-database-schema",
|
|
2746
|
+
"name": "Database Schema Designer",
|
|
2747
|
+
"description": "Database schema design with ERD diagrams, relationships, and normalization patterns",
|
|
2748
|
+
"keywords": [
|
|
2749
|
+
"database",
|
|
2750
|
+
"schema",
|
|
2751
|
+
"erd",
|
|
2752
|
+
"relationships",
|
|
2753
|
+
"normalization",
|
|
2754
|
+
"design",
|
|
2755
|
+
"models"
|
|
2756
|
+
],
|
|
2757
|
+
"tier": "community",
|
|
2758
|
+
"category": "data",
|
|
2759
|
+
"installMethod": "copy",
|
|
2760
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/database-schema-designer/SKILL.md",
|
|
2761
|
+
"source": "alirezarezvani/claude-skills",
|
|
2762
|
+
"author": "Alireza Rezvani"
|
|
2763
|
+
},
|
|
2764
|
+
{
|
|
2765
|
+
"id": "comm-agent-workflow",
|
|
2766
|
+
"name": "Agent Workflow Designer",
|
|
2767
|
+
"description": "Design multi-step agent workflows \u2014 state machines, error recovery, and orchestration",
|
|
2768
|
+
"keywords": [
|
|
2769
|
+
"agent",
|
|
2770
|
+
"workflow",
|
|
2771
|
+
"state-machine",
|
|
2772
|
+
"orchestration",
|
|
2773
|
+
"multi-step",
|
|
2774
|
+
"design"
|
|
2775
|
+
],
|
|
2776
|
+
"tier": "community",
|
|
2777
|
+
"category": "data",
|
|
2778
|
+
"installMethod": "copy",
|
|
2779
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/agent-workflow-designer/SKILL.md",
|
|
2780
|
+
"source": "alirezarezvani/claude-skills",
|
|
2781
|
+
"author": "Alireza Rezvani"
|
|
2782
|
+
},
|
|
2783
|
+
{
|
|
2784
|
+
"id": "comm-agenthub",
|
|
2785
|
+
"name": "AgentHub",
|
|
2786
|
+
"description": "Agent marketplace and registry \u2014 publish, discover, and manage AI agent skills",
|
|
2787
|
+
"keywords": [
|
|
2788
|
+
"agent",
|
|
2789
|
+
"hub",
|
|
2790
|
+
"marketplace",
|
|
2791
|
+
"registry",
|
|
2792
|
+
"publish",
|
|
2793
|
+
"discover",
|
|
2794
|
+
"manage"
|
|
2795
|
+
],
|
|
2796
|
+
"tier": "community",
|
|
2797
|
+
"category": "data",
|
|
2798
|
+
"installMethod": "copy",
|
|
2799
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/agenthub/SKILL.md",
|
|
2800
|
+
"source": "alirezarezvani/claude-skills",
|
|
2801
|
+
"author": "Alireza Rezvani"
|
|
2802
|
+
},
|
|
2803
|
+
{
|
|
2804
|
+
"id": "comm-popup-cro",
|
|
2805
|
+
"name": "Popup CRO",
|
|
2806
|
+
"description": "Popup and modal optimization \u2014 timing, triggers, design, and conversion patterns",
|
|
2807
|
+
"keywords": [
|
|
2808
|
+
"popup",
|
|
2809
|
+
"modal",
|
|
2810
|
+
"cro",
|
|
2811
|
+
"conversion",
|
|
2812
|
+
"timing",
|
|
2813
|
+
"triggers",
|
|
2814
|
+
"optimization"
|
|
2815
|
+
],
|
|
2816
|
+
"tier": "community",
|
|
2817
|
+
"category": "design",
|
|
2818
|
+
"installMethod": "copy",
|
|
2819
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/popup-cro/SKILL.md",
|
|
2820
|
+
"source": "alirezarezvani/claude-skills",
|
|
2821
|
+
"author": "Alireza Rezvani"
|
|
2822
|
+
},
|
|
2823
|
+
{
|
|
2824
|
+
"id": "comm-paywall-cro",
|
|
2825
|
+
"name": "Paywall & Upgrade CRO",
|
|
2826
|
+
"description": "Paywall design, upgrade prompts, and freemium-to-paid conversion optimization",
|
|
2827
|
+
"keywords": [
|
|
2828
|
+
"paywall",
|
|
2829
|
+
"upgrade",
|
|
2830
|
+
"cro",
|
|
2831
|
+
"freemium",
|
|
2832
|
+
"conversion",
|
|
2833
|
+
"pricing",
|
|
2834
|
+
"monetization"
|
|
2835
|
+
],
|
|
2836
|
+
"tier": "community",
|
|
2837
|
+
"category": "business",
|
|
2838
|
+
"installMethod": "copy",
|
|
2839
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/paywall-upgrade-cro/SKILL.md",
|
|
2840
|
+
"source": "alirezarezvani/claude-skills",
|
|
2841
|
+
"author": "Alireza Rezvani"
|
|
2842
|
+
},
|
|
2843
|
+
{
|
|
2844
|
+
"id": "comm-signup-flow-cro",
|
|
2845
|
+
"name": "Signup Flow CRO",
|
|
2846
|
+
"description": "Signup flow optimization \u2014 friction reduction, progressive profiling, and social login",
|
|
2847
|
+
"keywords": [
|
|
2848
|
+
"signup",
|
|
2849
|
+
"flow",
|
|
2850
|
+
"cro",
|
|
2851
|
+
"friction",
|
|
2852
|
+
"progressive",
|
|
2853
|
+
"social-login",
|
|
2854
|
+
"registration"
|
|
2855
|
+
],
|
|
2856
|
+
"tier": "community",
|
|
2857
|
+
"category": "design",
|
|
2858
|
+
"installMethod": "copy",
|
|
2859
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/signup-flow-cro/SKILL.md",
|
|
2860
|
+
"source": "alirezarezvani/claude-skills",
|
|
2861
|
+
"author": "Alireza Rezvani"
|
|
2862
|
+
},
|
|
2863
|
+
{
|
|
2864
|
+
"id": "comm-secops",
|
|
2865
|
+
"name": "Senior SecOps Engineer",
|
|
2866
|
+
"description": "Security operations, SIEM management, log analysis, and security automation",
|
|
2867
|
+
"keywords": [
|
|
2868
|
+
"secops",
|
|
2869
|
+
"security-operations",
|
|
2870
|
+
"siem",
|
|
2871
|
+
"log-analysis",
|
|
2872
|
+
"automation",
|
|
2873
|
+
"soc"
|
|
2874
|
+
],
|
|
2875
|
+
"tier": "community",
|
|
2876
|
+
"category": "automation",
|
|
2877
|
+
"installMethod": "copy",
|
|
2878
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/senior-secops/SKILL.md",
|
|
2879
|
+
"source": "alirezarezvani/claude-skills",
|
|
2880
|
+
"author": "Alireza Rezvani"
|
|
2881
|
+
},
|
|
2882
|
+
{
|
|
2883
|
+
"id": "comm-research-summarizer",
|
|
2884
|
+
"name": "Research Summarizer",
|
|
2885
|
+
"description": "Summarize research papers, reports, and technical documents into actionable insights",
|
|
2886
|
+
"keywords": [
|
|
2887
|
+
"research",
|
|
2888
|
+
"summarize",
|
|
2889
|
+
"papers",
|
|
2890
|
+
"reports",
|
|
2891
|
+
"technical",
|
|
2892
|
+
"academic",
|
|
2893
|
+
"literature",
|
|
2894
|
+
"synthesis"
|
|
2895
|
+
],
|
|
2896
|
+
"tier": "community",
|
|
2897
|
+
"category": "research",
|
|
2898
|
+
"installMethod": "copy",
|
|
2899
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/product-team/research-summarizer/SKILL.md",
|
|
2900
|
+
"source": "alirezarezvani/claude-skills",
|
|
2901
|
+
"author": "Alireza Rezvani"
|
|
2902
|
+
},
|
|
2903
|
+
{
|
|
2904
|
+
"id": "comm-product-analytics",
|
|
2905
|
+
"name": "Product Analytics",
|
|
2906
|
+
"description": "Product analytics setup, event tracking, funnel analysis, and data-driven decision making",
|
|
2907
|
+
"keywords": [
|
|
2908
|
+
"analytics",
|
|
2909
|
+
"product",
|
|
2910
|
+
"tracking",
|
|
2911
|
+
"events",
|
|
2912
|
+
"funnel",
|
|
2913
|
+
"metrics",
|
|
2914
|
+
"data-driven",
|
|
2915
|
+
"mixpanel"
|
|
2916
|
+
],
|
|
2917
|
+
"tier": "community",
|
|
2918
|
+
"category": "data",
|
|
2919
|
+
"installMethod": "copy",
|
|
2920
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/product-team/product-analytics/SKILL.md",
|
|
2921
|
+
"source": "alirezarezvani/claude-skills",
|
|
2922
|
+
"author": "Alireza Rezvani"
|
|
2923
|
+
},
|
|
2924
|
+
{
|
|
2925
|
+
"id": "comm-experiment-designer",
|
|
2926
|
+
"name": "Experiment Designer",
|
|
2927
|
+
"description": "Design A/B tests and experiments with statistical rigor and hypothesis frameworks",
|
|
2928
|
+
"keywords": [
|
|
2929
|
+
"experiment",
|
|
2930
|
+
"ab-test",
|
|
2931
|
+
"hypothesis",
|
|
2932
|
+
"statistics",
|
|
2933
|
+
"testing",
|
|
2934
|
+
"sample-size",
|
|
2935
|
+
"significance"
|
|
2936
|
+
],
|
|
2937
|
+
"tier": "community",
|
|
2938
|
+
"category": "research",
|
|
2939
|
+
"installMethod": "copy",
|
|
2940
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/product-team/experiment-designer/SKILL.md",
|
|
2941
|
+
"source": "alirezarezvani/claude-skills",
|
|
2942
|
+
"author": "Alireza Rezvani"
|
|
2943
|
+
},
|
|
2944
|
+
{
|
|
2945
|
+
"id": "comm-competitive-teardown",
|
|
2946
|
+
"name": "Competitive Teardown",
|
|
2947
|
+
"description": "Deep competitive analysis and product teardown methodology for feature comparison",
|
|
2948
|
+
"keywords": [
|
|
2949
|
+
"competitive",
|
|
2950
|
+
"teardown",
|
|
2951
|
+
"analysis",
|
|
2952
|
+
"comparison",
|
|
2953
|
+
"features",
|
|
2954
|
+
"market",
|
|
2955
|
+
"positioning"
|
|
2956
|
+
],
|
|
2957
|
+
"tier": "community",
|
|
2958
|
+
"category": "research",
|
|
2959
|
+
"installMethod": "copy",
|
|
2960
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/product-team/competitive-teardown/SKILL.md",
|
|
2961
|
+
"source": "alirezarezvani/claude-skills",
|
|
2962
|
+
"author": "Alireza Rezvani"
|
|
2963
|
+
},
|
|
2964
|
+
{
|
|
2965
|
+
"id": "comm-ui-design-system",
|
|
2966
|
+
"name": "UI Design System",
|
|
2967
|
+
"description": "Design system creation, component library management, and design token architecture",
|
|
2968
|
+
"keywords": [
|
|
2969
|
+
"design-system",
|
|
2970
|
+
"components",
|
|
2971
|
+
"tokens",
|
|
2972
|
+
"ui",
|
|
2973
|
+
"library",
|
|
2974
|
+
"figma",
|
|
2975
|
+
"storybook",
|
|
2976
|
+
"patterns"
|
|
2977
|
+
],
|
|
2978
|
+
"tier": "community",
|
|
2979
|
+
"category": "design",
|
|
2980
|
+
"installMethod": "copy",
|
|
2981
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/product-team/ui-design-system/SKILL.md",
|
|
2982
|
+
"source": "alirezarezvani/claude-skills",
|
|
2983
|
+
"author": "Alireza Rezvani"
|
|
2984
|
+
},
|
|
2985
|
+
{
|
|
2986
|
+
"id": "comm-ux-researcher-designer",
|
|
2987
|
+
"name": "UX Researcher Designer",
|
|
2988
|
+
"description": "User experience research, usability testing, persona development, and design recommendations",
|
|
2989
|
+
"keywords": [
|
|
2990
|
+
"ux",
|
|
2991
|
+
"research",
|
|
2992
|
+
"usability",
|
|
2993
|
+
"testing",
|
|
2994
|
+
"personas",
|
|
2995
|
+
"user-interviews",
|
|
2996
|
+
"journey-maps"
|
|
2997
|
+
],
|
|
2998
|
+
"tier": "community",
|
|
2999
|
+
"category": "design",
|
|
3000
|
+
"installMethod": "copy",
|
|
3001
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/product-team/ux-researcher-designer/SKILL.md",
|
|
3002
|
+
"source": "alirezarezvani/claude-skills",
|
|
3003
|
+
"author": "Alireza Rezvani"
|
|
3004
|
+
},
|
|
3005
|
+
{
|
|
3006
|
+
"id": "comm-landing-page-generator",
|
|
3007
|
+
"name": "Landing Page Generator",
|
|
3008
|
+
"description": "Generate high-converting landing pages with best practices for copy, layout, and CTA optimization",
|
|
3009
|
+
"keywords": [
|
|
3010
|
+
"landing-page",
|
|
3011
|
+
"conversion",
|
|
3012
|
+
"cta",
|
|
3013
|
+
"copy",
|
|
3014
|
+
"layout",
|
|
3015
|
+
"design",
|
|
3016
|
+
"optimization"
|
|
3017
|
+
],
|
|
3018
|
+
"tier": "community",
|
|
3019
|
+
"category": "design",
|
|
3020
|
+
"installMethod": "copy",
|
|
3021
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/product-team/landing-page-generator/SKILL.md",
|
|
3022
|
+
"source": "alirezarezvani/claude-skills",
|
|
3023
|
+
"author": "Alireza Rezvani"
|
|
3024
|
+
},
|
|
3025
|
+
{
|
|
3026
|
+
"id": "comm-product-manager-toolkit",
|
|
3027
|
+
"name": "Product Manager Toolkit",
|
|
3028
|
+
"description": "Full product management toolkit with roadmapping, prioritization, and stakeholder management",
|
|
3029
|
+
"keywords": [
|
|
3030
|
+
"product-management",
|
|
3031
|
+
"roadmap",
|
|
3032
|
+
"prioritization",
|
|
3033
|
+
"stakeholders",
|
|
3034
|
+
"backlog",
|
|
3035
|
+
"strategy"
|
|
3036
|
+
],
|
|
3037
|
+
"tier": "community",
|
|
3038
|
+
"category": "productivity",
|
|
3039
|
+
"installMethod": "copy",
|
|
3040
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/product-team/product-manager-toolkit/SKILL.md",
|
|
3041
|
+
"source": "alirezarezvani/claude-skills",
|
|
3042
|
+
"author": "Alireza Rezvani"
|
|
3043
|
+
},
|
|
3044
|
+
{
|
|
3045
|
+
"id": "comm-product-strategist",
|
|
3046
|
+
"name": "Product Strategist",
|
|
3047
|
+
"description": "Product strategy development, market positioning, competitive moats, and growth planning",
|
|
3048
|
+
"keywords": [
|
|
3049
|
+
"product-strategy",
|
|
3050
|
+
"positioning",
|
|
3051
|
+
"market",
|
|
3052
|
+
"growth",
|
|
3053
|
+
"moat",
|
|
3054
|
+
"planning",
|
|
3055
|
+
"vision"
|
|
3056
|
+
],
|
|
3057
|
+
"tier": "community",
|
|
3058
|
+
"category": "business",
|
|
3059
|
+
"installMethod": "copy",
|
|
3060
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/product-team/product-strategist/SKILL.md",
|
|
3061
|
+
"source": "alirezarezvani/claude-skills",
|
|
3062
|
+
"author": "Alireza Rezvani"
|
|
3063
|
+
},
|
|
3064
|
+
{
|
|
3065
|
+
"id": "comm-agile-product-owner",
|
|
3066
|
+
"name": "Agile Product Owner",
|
|
3067
|
+
"description": "Agile product ownership, backlog management, sprint planning, and user story writing",
|
|
3068
|
+
"keywords": [
|
|
3069
|
+
"agile",
|
|
3070
|
+
"product-owner",
|
|
3071
|
+
"backlog",
|
|
3072
|
+
"sprint",
|
|
3073
|
+
"user-stories",
|
|
3074
|
+
"scrum",
|
|
3075
|
+
"kanban"
|
|
3076
|
+
],
|
|
3077
|
+
"tier": "community",
|
|
3078
|
+
"category": "productivity",
|
|
3079
|
+
"installMethod": "copy",
|
|
3080
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/product-team/agile-product-owner/SKILL.md",
|
|
3081
|
+
"source": "alirezarezvani/claude-skills",
|
|
3082
|
+
"author": "Alireza Rezvani"
|
|
3083
|
+
},
|
|
3084
|
+
{
|
|
3085
|
+
"id": "comm-code-to-prd",
|
|
3086
|
+
"name": "Code to PRD",
|
|
3087
|
+
"description": "Reverse-engineer a codebase into a product requirements document with feature inventory",
|
|
3088
|
+
"keywords": [
|
|
3089
|
+
"prd",
|
|
3090
|
+
"requirements",
|
|
3091
|
+
"codebase",
|
|
3092
|
+
"documentation",
|
|
3093
|
+
"reverse-engineer",
|
|
3094
|
+
"features",
|
|
3095
|
+
"specification"
|
|
3096
|
+
],
|
|
3097
|
+
"tier": "community",
|
|
3098
|
+
"category": "productivity",
|
|
3099
|
+
"installMethod": "copy",
|
|
3100
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/product-team/code-to-prd/SKILL.md",
|
|
3101
|
+
"source": "alirezarezvani/claude-skills",
|
|
3102
|
+
"author": "Alireza Rezvani"
|
|
3103
|
+
},
|
|
3104
|
+
{
|
|
3105
|
+
"id": "comm-roadmap-communicator",
|
|
3106
|
+
"name": "Roadmap Communicator",
|
|
3107
|
+
"description": "Communicate product roadmaps effectively to stakeholders, teams, and executives",
|
|
3108
|
+
"keywords": [
|
|
3109
|
+
"roadmap",
|
|
3110
|
+
"communication",
|
|
3111
|
+
"stakeholders",
|
|
3112
|
+
"presentation",
|
|
3113
|
+
"planning",
|
|
3114
|
+
"alignment"
|
|
3115
|
+
],
|
|
3116
|
+
"tier": "community",
|
|
3117
|
+
"category": "productivity",
|
|
3118
|
+
"installMethod": "copy",
|
|
3119
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/product-team/roadmap-communicator/SKILL.md",
|
|
3120
|
+
"source": "alirezarezvani/claude-skills",
|
|
3121
|
+
"author": "Alireza Rezvani"
|
|
3122
|
+
},
|
|
3123
|
+
{
|
|
3124
|
+
"id": "comm-saas-scaffolder",
|
|
3125
|
+
"name": "SaaS Scaffolder",
|
|
3126
|
+
"description": "Scaffold SaaS application boilerplate with auth, billing, multi-tenancy, and core features",
|
|
3127
|
+
"keywords": [
|
|
3128
|
+
"saas",
|
|
3129
|
+
"scaffold",
|
|
3130
|
+
"boilerplate",
|
|
3131
|
+
"auth",
|
|
3132
|
+
"billing",
|
|
3133
|
+
"stripe",
|
|
3134
|
+
"multi-tenant",
|
|
3135
|
+
"starter"
|
|
3136
|
+
],
|
|
3137
|
+
"tier": "community",
|
|
3138
|
+
"category": "development",
|
|
3139
|
+
"installMethod": "copy",
|
|
3140
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/product-team/saas-scaffolder/SKILL.md",
|
|
3141
|
+
"source": "alirezarezvani/claude-skills",
|
|
3142
|
+
"author": "Alireza Rezvani"
|
|
3143
|
+
},
|
|
3144
|
+
{
|
|
3145
|
+
"id": "comm-product-discovery",
|
|
3146
|
+
"name": "Product Discovery",
|
|
3147
|
+
"description": "Product discovery facilitation, user interviews, opportunity identification, and validation",
|
|
3148
|
+
"keywords": [
|
|
3149
|
+
"discovery",
|
|
3150
|
+
"user-interviews",
|
|
3151
|
+
"opportunity",
|
|
3152
|
+
"validation",
|
|
3153
|
+
"customer",
|
|
3154
|
+
"problem-space"
|
|
3155
|
+
],
|
|
3156
|
+
"tier": "community",
|
|
3157
|
+
"category": "research",
|
|
3158
|
+
"installMethod": "copy",
|
|
3159
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/product-team/product-discovery/SKILL.md",
|
|
3160
|
+
"source": "alirezarezvani/claude-skills",
|
|
3161
|
+
"author": "Alireza Rezvani"
|
|
3162
|
+
},
|
|
3163
|
+
{
|
|
3164
|
+
"id": "comm-customer-success-manager",
|
|
3165
|
+
"name": "Customer Success Manager",
|
|
3166
|
+
"description": "Customer success operations, onboarding playbooks, retention strategies, and health scoring",
|
|
3167
|
+
"keywords": [
|
|
3168
|
+
"customer-success",
|
|
3169
|
+
"onboarding",
|
|
3170
|
+
"retention",
|
|
3171
|
+
"churn",
|
|
3172
|
+
"health-score",
|
|
3173
|
+
"nps",
|
|
3174
|
+
"csm"
|
|
3175
|
+
],
|
|
3176
|
+
"tier": "community",
|
|
3177
|
+
"category": "business",
|
|
3178
|
+
"installMethod": "copy",
|
|
3179
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/business-growth/customer-success-manager/SKILL.md",
|
|
3180
|
+
"source": "alirezarezvani/claude-skills",
|
|
3181
|
+
"author": "Alireza Rezvani"
|
|
3182
|
+
},
|
|
3183
|
+
{
|
|
3184
|
+
"id": "comm-sales-engineer",
|
|
3185
|
+
"name": "Sales Engineer",
|
|
3186
|
+
"description": "Technical sales support, demo preparation, solution engineering, and proof of concept",
|
|
3187
|
+
"keywords": [
|
|
3188
|
+
"sales",
|
|
3189
|
+
"engineer",
|
|
3190
|
+
"demo",
|
|
3191
|
+
"poc",
|
|
3192
|
+
"solution",
|
|
3193
|
+
"technical-sales",
|
|
3194
|
+
"pre-sales"
|
|
3195
|
+
],
|
|
3196
|
+
"tier": "community",
|
|
3197
|
+
"category": "business",
|
|
3198
|
+
"installMethod": "copy",
|
|
3199
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/business-growth/sales-engineer/SKILL.md",
|
|
3200
|
+
"source": "alirezarezvani/claude-skills",
|
|
3201
|
+
"author": "Alireza Rezvani"
|
|
3202
|
+
},
|
|
3203
|
+
{
|
|
3204
|
+
"id": "comm-revenue-operations",
|
|
3205
|
+
"name": "Revenue Operations",
|
|
3206
|
+
"description": "Revenue pipeline management, operations optimization, and go-to-market alignment",
|
|
3207
|
+
"keywords": [
|
|
3208
|
+
"revenue",
|
|
3209
|
+
"operations",
|
|
3210
|
+
"pipeline",
|
|
3211
|
+
"gtm",
|
|
3212
|
+
"sales-ops",
|
|
3213
|
+
"forecasting",
|
|
3214
|
+
"revops"
|
|
3215
|
+
],
|
|
3216
|
+
"tier": "community",
|
|
3217
|
+
"category": "business",
|
|
3218
|
+
"installMethod": "copy",
|
|
3219
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/business-growth/revenue-operations/SKILL.md",
|
|
3220
|
+
"source": "alirezarezvani/claude-skills",
|
|
3221
|
+
"author": "Alireza Rezvani"
|
|
3222
|
+
},
|
|
3223
|
+
{
|
|
3224
|
+
"id": "comm-contract-proposal-writer",
|
|
3225
|
+
"name": "Contract & Proposal Writer",
|
|
3226
|
+
"description": "Contract drafting, proposal creation, RFP responses, and business document writing",
|
|
3227
|
+
"keywords": [
|
|
3228
|
+
"contract",
|
|
3229
|
+
"proposal",
|
|
3230
|
+
"rfp",
|
|
3231
|
+
"writing",
|
|
3232
|
+
"legal",
|
|
3233
|
+
"business-documents",
|
|
3234
|
+
"sow"
|
|
3235
|
+
],
|
|
3236
|
+
"tier": "community",
|
|
3237
|
+
"category": "business",
|
|
3238
|
+
"installMethod": "copy",
|
|
3239
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/business-growth/contract-and-proposal-writer/SKILL.md",
|
|
3240
|
+
"source": "alirezarezvani/claude-skills",
|
|
3241
|
+
"author": "Alireza Rezvani"
|
|
3242
|
+
},
|
|
3243
|
+
{
|
|
3244
|
+
"id": "comm-financial-analyst",
|
|
3245
|
+
"name": "Financial Analyst",
|
|
3246
|
+
"description": "DCF analysis, budgeting, forecasting, financial modeling, and investment evaluation",
|
|
3247
|
+
"keywords": [
|
|
3248
|
+
"finance",
|
|
3249
|
+
"dcf",
|
|
3250
|
+
"budgeting",
|
|
3251
|
+
"forecasting",
|
|
3252
|
+
"modeling",
|
|
3253
|
+
"investment",
|
|
3254
|
+
"valuation"
|
|
3255
|
+
],
|
|
3256
|
+
"tier": "community",
|
|
3257
|
+
"category": "business",
|
|
3258
|
+
"installMethod": "copy",
|
|
3259
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/finance/financial-analyst/SKILL.md",
|
|
3260
|
+
"source": "alirezarezvani/claude-skills",
|
|
3261
|
+
"author": "Alireza Rezvani"
|
|
3262
|
+
},
|
|
3263
|
+
{
|
|
3264
|
+
"id": "comm-saas-metrics-coach",
|
|
3265
|
+
"name": "SaaS Metrics Coach",
|
|
3266
|
+
"description": "SaaS business metrics coaching covering ARR, MRR, churn, LTV, CAC, and unit economics",
|
|
3267
|
+
"keywords": [
|
|
3268
|
+
"saas",
|
|
3269
|
+
"metrics",
|
|
3270
|
+
"arr",
|
|
3271
|
+
"mrr",
|
|
3272
|
+
"churn",
|
|
3273
|
+
"ltv",
|
|
3274
|
+
"cac",
|
|
3275
|
+
"unit-economics"
|
|
3276
|
+
],
|
|
3277
|
+
"tier": "community",
|
|
3278
|
+
"category": "business",
|
|
3279
|
+
"installMethod": "copy",
|
|
3280
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/finance/saas-metrics-coach/SKILL.md",
|
|
3281
|
+
"source": "alirezarezvani/claude-skills",
|
|
3282
|
+
"author": "Alireza Rezvani"
|
|
3283
|
+
},
|
|
3284
|
+
{
|
|
3285
|
+
"id": "comm-business-investment-advisor",
|
|
3286
|
+
"name": "Business Investment Advisor",
|
|
3287
|
+
"description": "Investment analysis and advisory for business decisions, fundraising, and capital allocation",
|
|
3288
|
+
"keywords": [
|
|
3289
|
+
"investment",
|
|
3290
|
+
"fundraising",
|
|
3291
|
+
"capital",
|
|
3292
|
+
"advisory",
|
|
3293
|
+
"venture",
|
|
3294
|
+
"finance",
|
|
3295
|
+
"allocation"
|
|
3296
|
+
],
|
|
3297
|
+
"tier": "community",
|
|
3298
|
+
"category": "business",
|
|
3299
|
+
"installMethod": "copy",
|
|
3300
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/finance/business-investment-advisor/SKILL.md",
|
|
3301
|
+
"source": "alirezarezvani/claude-skills",
|
|
3302
|
+
"author": "Alireza Rezvani"
|
|
3303
|
+
},
|
|
3304
|
+
{
|
|
3305
|
+
"id": "comm-senior-pm",
|
|
3306
|
+
"name": "Senior PM Toolkit",
|
|
3307
|
+
"description": "Senior project management with Agile, Scrum, and stakeholder coordination methodologies",
|
|
3308
|
+
"keywords": [
|
|
3309
|
+
"project-management",
|
|
3310
|
+
"agile",
|
|
3311
|
+
"scrum",
|
|
3312
|
+
"stakeholder",
|
|
3313
|
+
"delivery",
|
|
3314
|
+
"planning",
|
|
3315
|
+
"timeline"
|
|
3316
|
+
],
|
|
3317
|
+
"tier": "community",
|
|
3318
|
+
"category": "productivity",
|
|
3319
|
+
"installMethod": "copy",
|
|
3320
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/project-management/senior-pm/SKILL.md",
|
|
3321
|
+
"source": "alirezarezvani/claude-skills",
|
|
3322
|
+
"author": "Alireza Rezvani"
|
|
3323
|
+
},
|
|
3324
|
+
{
|
|
3325
|
+
"id": "comm-jira-expert",
|
|
3326
|
+
"name": "Jira Expert",
|
|
3327
|
+
"description": "Jira workflow optimization, JQL queries, board configuration, and automation rules",
|
|
3328
|
+
"keywords": [
|
|
3329
|
+
"jira",
|
|
3330
|
+
"workflow",
|
|
3331
|
+
"jql",
|
|
3332
|
+
"boards",
|
|
3333
|
+
"automation",
|
|
3334
|
+
"tickets",
|
|
3335
|
+
"atlassian",
|
|
3336
|
+
"agile"
|
|
3337
|
+
],
|
|
3338
|
+
"tier": "community",
|
|
3339
|
+
"category": "productivity",
|
|
3340
|
+
"installMethod": "copy",
|
|
3341
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/project-management/jira-expert/SKILL.md",
|
|
3342
|
+
"source": "alirezarezvani/claude-skills",
|
|
3343
|
+
"author": "Alireza Rezvani"
|
|
3344
|
+
},
|
|
3345
|
+
{
|
|
3346
|
+
"id": "comm-confluence-expert",
|
|
3347
|
+
"name": "Confluence Expert",
|
|
3348
|
+
"description": "Confluence space organization, template creation, and knowledge base management",
|
|
3349
|
+
"keywords": [
|
|
3350
|
+
"confluence",
|
|
3351
|
+
"wiki",
|
|
3352
|
+
"documentation",
|
|
3353
|
+
"knowledge-base",
|
|
3354
|
+
"templates",
|
|
3355
|
+
"atlassian",
|
|
3356
|
+
"spaces"
|
|
3357
|
+
],
|
|
3358
|
+
"tier": "community",
|
|
3359
|
+
"category": "productivity",
|
|
3360
|
+
"installMethod": "copy",
|
|
3361
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/project-management/confluence-expert/SKILL.md",
|
|
3362
|
+
"source": "alirezarezvani/claude-skills",
|
|
3363
|
+
"author": "Alireza Rezvani"
|
|
3364
|
+
},
|
|
3365
|
+
{
|
|
3366
|
+
"id": "comm-scrum-master",
|
|
3367
|
+
"name": "Scrum Master",
|
|
3368
|
+
"description": "Scrum facilitation, sprint ceremonies, impediment removal, and team velocity optimization",
|
|
3369
|
+
"keywords": [
|
|
3370
|
+
"scrum",
|
|
3371
|
+
"sprint",
|
|
3372
|
+
"ceremonies",
|
|
3373
|
+
"retrospective",
|
|
3374
|
+
"velocity",
|
|
3375
|
+
"impediments",
|
|
3376
|
+
"standup"
|
|
3377
|
+
],
|
|
3378
|
+
"tier": "community",
|
|
3379
|
+
"category": "productivity",
|
|
3380
|
+
"installMethod": "copy",
|
|
3381
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/project-management/scrum-master/SKILL.md",
|
|
3382
|
+
"source": "alirezarezvani/claude-skills",
|
|
3383
|
+
"author": "Alireza Rezvani"
|
|
3384
|
+
},
|
|
3385
|
+
{
|
|
3386
|
+
"id": "comm-meeting-analyzer",
|
|
3387
|
+
"name": "Meeting Analyzer",
|
|
3388
|
+
"description": "Analyze meeting transcripts, extract action items, decisions, and follow-up tasks",
|
|
3389
|
+
"keywords": [
|
|
3390
|
+
"meeting",
|
|
3391
|
+
"transcript",
|
|
3392
|
+
"action-items",
|
|
3393
|
+
"decisions",
|
|
3394
|
+
"notes",
|
|
3395
|
+
"summary",
|
|
3396
|
+
"follow-up"
|
|
3397
|
+
],
|
|
3398
|
+
"tier": "community",
|
|
3399
|
+
"category": "productivity",
|
|
3400
|
+
"installMethod": "copy",
|
|
3401
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/project-management/meeting-analyzer/SKILL.md",
|
|
3402
|
+
"source": "alirezarezvani/claude-skills",
|
|
3403
|
+
"author": "Alireza Rezvani"
|
|
3404
|
+
},
|
|
3405
|
+
{
|
|
3406
|
+
"id": "comm-team-communications",
|
|
3407
|
+
"name": "Team Communications",
|
|
3408
|
+
"description": "Team communication strategies, status updates, stakeholder reporting, and async workflows",
|
|
3409
|
+
"keywords": [
|
|
3410
|
+
"communication",
|
|
3411
|
+
"status",
|
|
3412
|
+
"reporting",
|
|
3413
|
+
"async",
|
|
3414
|
+
"slack",
|
|
3415
|
+
"updates",
|
|
3416
|
+
"stakeholder"
|
|
3417
|
+
],
|
|
3418
|
+
"tier": "community",
|
|
3419
|
+
"category": "productivity",
|
|
3420
|
+
"installMethod": "copy",
|
|
3421
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/project-management/team-communications/SKILL.md",
|
|
3422
|
+
"source": "alirezarezvani/claude-skills",
|
|
3423
|
+
"author": "Alireza Rezvani"
|
|
3424
|
+
},
|
|
3425
|
+
{
|
|
3426
|
+
"id": "comm-atlassian-admin",
|
|
3427
|
+
"name": "Atlassian Admin",
|
|
3428
|
+
"description": "Atlassian suite administration, permissions, integrations, and platform configuration",
|
|
3429
|
+
"keywords": [
|
|
3430
|
+
"atlassian",
|
|
3431
|
+
"admin",
|
|
3432
|
+
"jira",
|
|
3433
|
+
"confluence",
|
|
3434
|
+
"permissions",
|
|
3435
|
+
"integrations",
|
|
3436
|
+
"configuration"
|
|
3437
|
+
],
|
|
3438
|
+
"tier": "community",
|
|
3439
|
+
"category": "productivity",
|
|
3440
|
+
"installMethod": "copy",
|
|
3441
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/project-management/atlassian-admin/SKILL.md",
|
|
3442
|
+
"source": "alirezarezvani/claude-skills",
|
|
3443
|
+
"author": "Alireza Rezvani"
|
|
3444
|
+
},
|
|
3445
|
+
{
|
|
3446
|
+
"id": "comm-atlassian-templates",
|
|
3447
|
+
"name": "Atlassian Templates",
|
|
3448
|
+
"description": "Jira and Confluence templates for common project management scenarios and workflows",
|
|
3449
|
+
"keywords": [
|
|
3450
|
+
"atlassian",
|
|
3451
|
+
"templates",
|
|
3452
|
+
"jira",
|
|
3453
|
+
"confluence",
|
|
3454
|
+
"workflow",
|
|
3455
|
+
"project",
|
|
3456
|
+
"standard"
|
|
3457
|
+
],
|
|
3458
|
+
"tier": "community",
|
|
3459
|
+
"category": "productivity",
|
|
3460
|
+
"installMethod": "copy",
|
|
3461
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/project-management/atlassian-templates/SKILL.md",
|
|
3462
|
+
"source": "alirezarezvani/claude-skills",
|
|
3463
|
+
"author": "Alireza Rezvani"
|
|
3464
|
+
},
|
|
3465
|
+
{
|
|
3466
|
+
"id": "comm-ceo-advisor",
|
|
3467
|
+
"name": "CEO Advisor",
|
|
3468
|
+
"description": "Strategic advisory for CEOs covering vision, leadership, board relations, and company direction",
|
|
3469
|
+
"keywords": [
|
|
3470
|
+
"ceo",
|
|
3471
|
+
"leadership",
|
|
3472
|
+
"strategy",
|
|
3473
|
+
"vision",
|
|
3474
|
+
"board",
|
|
3475
|
+
"executive",
|
|
3476
|
+
"company-direction"
|
|
3477
|
+
],
|
|
3478
|
+
"tier": "community",
|
|
3479
|
+
"category": "business",
|
|
3480
|
+
"installMethod": "copy",
|
|
3481
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/ceo-advisor/SKILL.md",
|
|
3482
|
+
"source": "alirezarezvani/claude-skills",
|
|
3483
|
+
"author": "Alireza Rezvani"
|
|
3484
|
+
},
|
|
3485
|
+
{
|
|
3486
|
+
"id": "comm-cfo-advisor",
|
|
3487
|
+
"name": "CFO Advisor",
|
|
3488
|
+
"description": "Financial strategy advisory covering budgeting, forecasting, treasury, and financial reporting",
|
|
3489
|
+
"keywords": [
|
|
3490
|
+
"cfo",
|
|
3491
|
+
"finance",
|
|
3492
|
+
"budgeting",
|
|
3493
|
+
"forecasting",
|
|
3494
|
+
"treasury",
|
|
3495
|
+
"reporting",
|
|
3496
|
+
"financial-strategy"
|
|
3497
|
+
],
|
|
3498
|
+
"tier": "community",
|
|
3499
|
+
"category": "business",
|
|
3500
|
+
"installMethod": "copy",
|
|
3501
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/cfo-advisor/SKILL.md",
|
|
3502
|
+
"source": "alirezarezvani/claude-skills",
|
|
3503
|
+
"author": "Alireza Rezvani"
|
|
3504
|
+
},
|
|
3505
|
+
{
|
|
3506
|
+
"id": "comm-cto-advisor",
|
|
3507
|
+
"name": "CTO Advisor",
|
|
3508
|
+
"description": "Technology strategy advisory covering architecture, engineering leadership, and tech stack decisions",
|
|
3509
|
+
"keywords": [
|
|
3510
|
+
"cto",
|
|
3511
|
+
"technology",
|
|
3512
|
+
"architecture",
|
|
3513
|
+
"engineering",
|
|
3514
|
+
"tech-stack",
|
|
3515
|
+
"leadership",
|
|
3516
|
+
"innovation"
|
|
3517
|
+
],
|
|
3518
|
+
"tier": "community",
|
|
3519
|
+
"category": "business",
|
|
3520
|
+
"installMethod": "copy",
|
|
3521
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/cto-advisor/SKILL.md",
|
|
3522
|
+
"source": "alirezarezvani/claude-skills",
|
|
3523
|
+
"author": "Alireza Rezvani"
|
|
3524
|
+
},
|
|
3525
|
+
{
|
|
3526
|
+
"id": "comm-cmo-advisor",
|
|
3527
|
+
"name": "CMO Advisor",
|
|
3528
|
+
"description": "Marketing strategy advisory covering brand, demand gen, channels, and marketing operations",
|
|
3529
|
+
"keywords": [
|
|
3530
|
+
"cmo",
|
|
3531
|
+
"marketing",
|
|
3532
|
+
"brand",
|
|
3533
|
+
"demand-gen",
|
|
3534
|
+
"channels",
|
|
3535
|
+
"campaigns",
|
|
3536
|
+
"marketing-strategy"
|
|
3537
|
+
],
|
|
3538
|
+
"tier": "community",
|
|
3539
|
+
"category": "business",
|
|
3540
|
+
"installMethod": "copy",
|
|
3541
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/cmo-advisor/SKILL.md",
|
|
3542
|
+
"source": "alirezarezvani/claude-skills",
|
|
3543
|
+
"author": "Alireza Rezvani"
|
|
3544
|
+
},
|
|
3545
|
+
{
|
|
3546
|
+
"id": "comm-coo-advisor",
|
|
3547
|
+
"name": "COO Advisor",
|
|
3548
|
+
"description": "Operations strategy advisory covering process optimization, scaling, and organizational efficiency",
|
|
3549
|
+
"keywords": [
|
|
3550
|
+
"coo",
|
|
3551
|
+
"operations",
|
|
3552
|
+
"process",
|
|
3553
|
+
"scaling",
|
|
3554
|
+
"efficiency",
|
|
3555
|
+
"organizational",
|
|
3556
|
+
"optimization"
|
|
3557
|
+
],
|
|
3558
|
+
"tier": "community",
|
|
3559
|
+
"category": "business",
|
|
3560
|
+
"installMethod": "copy",
|
|
3561
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/coo-advisor/SKILL.md",
|
|
3562
|
+
"source": "alirezarezvani/claude-skills",
|
|
3563
|
+
"author": "Alireza Rezvani"
|
|
3564
|
+
},
|
|
3565
|
+
{
|
|
3566
|
+
"id": "comm-cpo-advisor",
|
|
3567
|
+
"name": "CPO Advisor",
|
|
3568
|
+
"description": "Product strategy advisory covering product vision, portfolio management, and product-led growth",
|
|
3569
|
+
"keywords": [
|
|
3570
|
+
"cpo",
|
|
3571
|
+
"product",
|
|
3572
|
+
"vision",
|
|
3573
|
+
"portfolio",
|
|
3574
|
+
"product-led",
|
|
3575
|
+
"growth",
|
|
3576
|
+
"product-strategy"
|
|
3577
|
+
],
|
|
3578
|
+
"tier": "community",
|
|
3579
|
+
"category": "business",
|
|
3580
|
+
"installMethod": "copy",
|
|
3581
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/cpo-advisor/SKILL.md",
|
|
3582
|
+
"source": "alirezarezvani/claude-skills",
|
|
3583
|
+
"author": "Alireza Rezvani"
|
|
3584
|
+
},
|
|
3585
|
+
{
|
|
3586
|
+
"id": "comm-cro-advisor",
|
|
3587
|
+
"name": "CRO Advisor",
|
|
3588
|
+
"description": "Revenue strategy advisory covering sales, partnerships, pricing, and revenue optimization",
|
|
3589
|
+
"keywords": [
|
|
3590
|
+
"cro",
|
|
3591
|
+
"revenue",
|
|
3592
|
+
"sales",
|
|
3593
|
+
"partnerships",
|
|
3594
|
+
"pricing",
|
|
3595
|
+
"growth",
|
|
3596
|
+
"revenue-strategy"
|
|
3597
|
+
],
|
|
3598
|
+
"tier": "community",
|
|
3599
|
+
"category": "business",
|
|
3600
|
+
"installMethod": "copy",
|
|
3601
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/cro-advisor/SKILL.md",
|
|
3602
|
+
"source": "alirezarezvani/claude-skills",
|
|
3603
|
+
"author": "Alireza Rezvani"
|
|
3604
|
+
},
|
|
3605
|
+
{
|
|
3606
|
+
"id": "comm-ciso-advisor",
|
|
3607
|
+
"name": "CISO Advisor",
|
|
3608
|
+
"description": "Security strategy advisory covering cybersecurity, compliance, risk management, and incident response",
|
|
3609
|
+
"keywords": [
|
|
3610
|
+
"ciso",
|
|
3611
|
+
"security",
|
|
3612
|
+
"cybersecurity",
|
|
3613
|
+
"compliance",
|
|
3614
|
+
"risk",
|
|
3615
|
+
"incident-response",
|
|
3616
|
+
"governance"
|
|
3617
|
+
],
|
|
3618
|
+
"tier": "community",
|
|
3619
|
+
"category": "business",
|
|
3620
|
+
"installMethod": "copy",
|
|
3621
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/ciso-advisor/SKILL.md",
|
|
3622
|
+
"source": "alirezarezvani/claude-skills",
|
|
3623
|
+
"author": "Alireza Rezvani"
|
|
3624
|
+
},
|
|
3625
|
+
{
|
|
3626
|
+
"id": "comm-chro-advisor",
|
|
3627
|
+
"name": "CHRO Advisor",
|
|
3628
|
+
"description": "People strategy advisory covering talent management, culture, compensation, and organizational design",
|
|
3629
|
+
"keywords": [
|
|
3630
|
+
"chro",
|
|
3631
|
+
"hr",
|
|
3632
|
+
"talent",
|
|
3633
|
+
"culture",
|
|
3634
|
+
"compensation",
|
|
3635
|
+
"organizational-design",
|
|
3636
|
+
"people-strategy"
|
|
3637
|
+
],
|
|
3638
|
+
"tier": "community",
|
|
3639
|
+
"category": "business",
|
|
3640
|
+
"installMethod": "copy",
|
|
3641
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/chro-advisor/SKILL.md",
|
|
3642
|
+
"source": "alirezarezvani/claude-skills",
|
|
3643
|
+
"author": "Alireza Rezvani"
|
|
3644
|
+
},
|
|
3645
|
+
{
|
|
3646
|
+
"id": "comm-chief-of-staff",
|
|
3647
|
+
"name": "Chief of Staff",
|
|
3648
|
+
"description": "Executive support, cross-functional coordination, strategic initiative management, and OKRs",
|
|
3649
|
+
"keywords": [
|
|
3650
|
+
"chief-of-staff",
|
|
3651
|
+
"coordination",
|
|
3652
|
+
"okrs",
|
|
3653
|
+
"initiatives",
|
|
3654
|
+
"executive",
|
|
3655
|
+
"cross-functional"
|
|
3656
|
+
],
|
|
3657
|
+
"tier": "community",
|
|
3658
|
+
"category": "business",
|
|
3659
|
+
"installMethod": "copy",
|
|
3660
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/chief-of-staff/SKILL.md",
|
|
3661
|
+
"source": "alirezarezvani/claude-skills",
|
|
3662
|
+
"author": "Alireza Rezvani"
|
|
3663
|
+
},
|
|
3664
|
+
{
|
|
3665
|
+
"id": "comm-board-deck-builder",
|
|
3666
|
+
"name": "Board Deck Builder",
|
|
3667
|
+
"description": "Create compelling board presentation decks with metrics, narratives, and strategic frameworks",
|
|
3668
|
+
"keywords": [
|
|
3669
|
+
"board",
|
|
3670
|
+
"deck",
|
|
3671
|
+
"presentation",
|
|
3672
|
+
"metrics",
|
|
3673
|
+
"narrative",
|
|
3674
|
+
"investor",
|
|
3675
|
+
"reporting"
|
|
3676
|
+
],
|
|
3677
|
+
"tier": "community",
|
|
3678
|
+
"category": "business",
|
|
3679
|
+
"installMethod": "copy",
|
|
3680
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/board-deck-builder/SKILL.md",
|
|
3681
|
+
"source": "alirezarezvani/claude-skills",
|
|
3682
|
+
"author": "Alireza Rezvani"
|
|
3683
|
+
},
|
|
3684
|
+
{
|
|
3685
|
+
"id": "comm-board-meeting",
|
|
3686
|
+
"name": "Board Meeting",
|
|
3687
|
+
"description": "Board meeting preparation, agenda setting, minutes, and governance best practices",
|
|
3688
|
+
"keywords": [
|
|
3689
|
+
"board",
|
|
3690
|
+
"meeting",
|
|
3691
|
+
"agenda",
|
|
3692
|
+
"minutes",
|
|
3693
|
+
"governance",
|
|
3694
|
+
"directors",
|
|
3695
|
+
"corporate"
|
|
3696
|
+
],
|
|
3697
|
+
"tier": "community",
|
|
3698
|
+
"category": "business",
|
|
3699
|
+
"installMethod": "copy",
|
|
3700
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/board-meeting/SKILL.md",
|
|
3701
|
+
"source": "alirezarezvani/claude-skills",
|
|
3702
|
+
"author": "Alireza Rezvani"
|
|
3703
|
+
},
|
|
3704
|
+
{
|
|
3705
|
+
"id": "comm-change-management",
|
|
3706
|
+
"name": "Change Management",
|
|
3707
|
+
"description": "Organizational change management, communication plans, resistance handling, and adoption strategies",
|
|
3708
|
+
"keywords": [
|
|
3709
|
+
"change-management",
|
|
3710
|
+
"transformation",
|
|
3711
|
+
"adoption",
|
|
3712
|
+
"communication",
|
|
3713
|
+
"resistance",
|
|
3714
|
+
"transition"
|
|
3715
|
+
],
|
|
3716
|
+
"tier": "community",
|
|
3717
|
+
"category": "business",
|
|
3718
|
+
"installMethod": "copy",
|
|
3719
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/change-management/SKILL.md",
|
|
3720
|
+
"source": "alirezarezvani/claude-skills",
|
|
3721
|
+
"author": "Alireza Rezvani"
|
|
3722
|
+
},
|
|
3723
|
+
{
|
|
3724
|
+
"id": "comm-competitive-intel-exec",
|
|
3725
|
+
"name": "Competitive Intelligence (Executive)",
|
|
3726
|
+
"description": "Executive-level competitive intelligence gathering, market monitoring, and strategic positioning",
|
|
3727
|
+
"keywords": [
|
|
3728
|
+
"competitive",
|
|
3729
|
+
"intelligence",
|
|
3730
|
+
"monitoring",
|
|
3731
|
+
"positioning",
|
|
3732
|
+
"strategy",
|
|
3733
|
+
"market",
|
|
3734
|
+
"executive"
|
|
3735
|
+
],
|
|
3736
|
+
"tier": "community",
|
|
3737
|
+
"category": "business",
|
|
3738
|
+
"installMethod": "copy",
|
|
3739
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/competitive-intel/SKILL.md",
|
|
3740
|
+
"source": "alirezarezvani/claude-skills",
|
|
3741
|
+
"author": "Alireza Rezvani"
|
|
3742
|
+
},
|
|
3743
|
+
{
|
|
3744
|
+
"id": "comm-culture-architect",
|
|
3745
|
+
"name": "Culture Architect",
|
|
3746
|
+
"description": "Organizational culture design, values articulation, and culture-driven transformation",
|
|
3747
|
+
"keywords": [
|
|
3748
|
+
"culture",
|
|
3749
|
+
"values",
|
|
3750
|
+
"organizational",
|
|
3751
|
+
"transformation",
|
|
3752
|
+
"engagement",
|
|
3753
|
+
"mission",
|
|
3754
|
+
"identity"
|
|
3755
|
+
],
|
|
3756
|
+
"tier": "community",
|
|
3757
|
+
"category": "business",
|
|
3758
|
+
"installMethod": "copy",
|
|
3759
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/culture-architect/SKILL.md",
|
|
3760
|
+
"source": "alirezarezvani/claude-skills",
|
|
3761
|
+
"author": "Alireza Rezvani"
|
|
3762
|
+
},
|
|
3763
|
+
{
|
|
3764
|
+
"id": "comm-decision-logger",
|
|
3765
|
+
"name": "Decision Logger",
|
|
3766
|
+
"description": "Structured decision documentation, ADRs, decision rationale tracking, and outcome analysis",
|
|
3767
|
+
"keywords": [
|
|
3768
|
+
"decisions",
|
|
3769
|
+
"adr",
|
|
3770
|
+
"documentation",
|
|
3771
|
+
"rationale",
|
|
3772
|
+
"tracking",
|
|
3773
|
+
"outcomes",
|
|
3774
|
+
"governance"
|
|
3775
|
+
],
|
|
3776
|
+
"tier": "community",
|
|
3777
|
+
"category": "productivity",
|
|
3778
|
+
"installMethod": "copy",
|
|
3779
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/decision-logger/SKILL.md",
|
|
3780
|
+
"source": "alirezarezvani/claude-skills",
|
|
3781
|
+
"author": "Alireza Rezvani"
|
|
3782
|
+
},
|
|
3783
|
+
{
|
|
3784
|
+
"id": "comm-executive-mentor",
|
|
3785
|
+
"name": "Executive Mentor",
|
|
3786
|
+
"description": "Executive coaching and mentorship covering leadership development, strategic thinking, and decision-making",
|
|
3787
|
+
"keywords": [
|
|
3788
|
+
"executive",
|
|
3789
|
+
"mentor",
|
|
3790
|
+
"coaching",
|
|
3791
|
+
"leadership",
|
|
3792
|
+
"development",
|
|
3793
|
+
"strategic-thinking"
|
|
3794
|
+
],
|
|
3795
|
+
"tier": "community",
|
|
3796
|
+
"category": "business",
|
|
3797
|
+
"installMethod": "copy",
|
|
3798
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/executive-mentor/SKILL.md",
|
|
3799
|
+
"source": "alirezarezvani/claude-skills",
|
|
3800
|
+
"author": "Alireza Rezvani"
|
|
3801
|
+
},
|
|
3802
|
+
{
|
|
3803
|
+
"id": "comm-founder-coach",
|
|
3804
|
+
"name": "Founder Coach",
|
|
3805
|
+
"description": "Startup founder coaching covering fundraising, team building, pivoting, and scaling challenges",
|
|
3806
|
+
"keywords": [
|
|
3807
|
+
"founder",
|
|
3808
|
+
"startup",
|
|
3809
|
+
"coaching",
|
|
3810
|
+
"fundraising",
|
|
3811
|
+
"scaling",
|
|
3812
|
+
"pivot",
|
|
3813
|
+
"team-building"
|
|
3814
|
+
],
|
|
3815
|
+
"tier": "community",
|
|
3816
|
+
"category": "business",
|
|
3817
|
+
"installMethod": "copy",
|
|
3818
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/founder-coach/SKILL.md",
|
|
3819
|
+
"source": "alirezarezvani/claude-skills",
|
|
3820
|
+
"author": "Alireza Rezvani"
|
|
3821
|
+
},
|
|
3822
|
+
{
|
|
3823
|
+
"id": "comm-org-health-diagnostic",
|
|
3824
|
+
"name": "Org Health Diagnostic",
|
|
3825
|
+
"description": "Organizational health assessment, team dynamics evaluation, and improvement recommendations",
|
|
3826
|
+
"keywords": [
|
|
3827
|
+
"organizational",
|
|
3828
|
+
"health",
|
|
3829
|
+
"diagnostic",
|
|
3830
|
+
"team",
|
|
3831
|
+
"dynamics",
|
|
3832
|
+
"assessment",
|
|
3833
|
+
"improvement"
|
|
3834
|
+
],
|
|
3835
|
+
"tier": "community",
|
|
3836
|
+
"category": "business",
|
|
3837
|
+
"installMethod": "copy",
|
|
3838
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/org-health-diagnostic/SKILL.md",
|
|
3839
|
+
"source": "alirezarezvani/claude-skills",
|
|
3840
|
+
"author": "Alireza Rezvani"
|
|
3841
|
+
},
|
|
3842
|
+
{
|
|
3843
|
+
"id": "comm-scenario-war-room",
|
|
3844
|
+
"name": "Scenario War Room",
|
|
3845
|
+
"description": "Strategic scenario planning, war gaming, contingency analysis, and crisis preparedness",
|
|
3846
|
+
"keywords": [
|
|
3847
|
+
"scenario",
|
|
3848
|
+
"war-room",
|
|
3849
|
+
"planning",
|
|
3850
|
+
"contingency",
|
|
3851
|
+
"crisis",
|
|
3852
|
+
"strategy",
|
|
3853
|
+
"simulation"
|
|
3854
|
+
],
|
|
3855
|
+
"tier": "community",
|
|
3856
|
+
"category": "business",
|
|
3857
|
+
"installMethod": "copy",
|
|
3858
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/scenario-war-room/SKILL.md",
|
|
3859
|
+
"source": "alirezarezvani/claude-skills",
|
|
3860
|
+
"author": "Alireza Rezvani"
|
|
3861
|
+
},
|
|
3862
|
+
{
|
|
3863
|
+
"id": "comm-strategic-alignment",
|
|
3864
|
+
"name": "Strategic Alignment",
|
|
3865
|
+
"description": "Align organizational units around strategic objectives, OKRs, and cross-functional goals",
|
|
3866
|
+
"keywords": [
|
|
3867
|
+
"alignment",
|
|
3868
|
+
"strategy",
|
|
3869
|
+
"okrs",
|
|
3870
|
+
"objectives",
|
|
3871
|
+
"cross-functional",
|
|
3872
|
+
"goals",
|
|
3873
|
+
"coordination"
|
|
3874
|
+
],
|
|
3875
|
+
"tier": "community",
|
|
3876
|
+
"category": "business",
|
|
3877
|
+
"installMethod": "copy",
|
|
3878
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/strategic-alignment/SKILL.md",
|
|
3879
|
+
"source": "alirezarezvani/claude-skills",
|
|
3880
|
+
"author": "Alireza Rezvani"
|
|
3881
|
+
},
|
|
3882
|
+
{
|
|
3883
|
+
"id": "comm-ma-playbook",
|
|
3884
|
+
"name": "M&A Playbook",
|
|
3885
|
+
"description": "Mergers and acquisitions playbook covering due diligence, integration planning, and deal structuring",
|
|
3886
|
+
"keywords": [
|
|
3887
|
+
"mergers",
|
|
3888
|
+
"acquisitions",
|
|
3889
|
+
"due-diligence",
|
|
3890
|
+
"integration",
|
|
3891
|
+
"deal",
|
|
3892
|
+
"valuation",
|
|
3893
|
+
"playbook"
|
|
3894
|
+
],
|
|
3895
|
+
"tier": "community",
|
|
3896
|
+
"category": "business",
|
|
3897
|
+
"installMethod": "copy",
|
|
3898
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/ma-playbook/SKILL.md",
|
|
3899
|
+
"source": "alirezarezvani/claude-skills",
|
|
3900
|
+
"author": "Alireza Rezvani"
|
|
3901
|
+
},
|
|
3902
|
+
{
|
|
3903
|
+
"id": "comm-intl-expansion",
|
|
3904
|
+
"name": "International Expansion",
|
|
3905
|
+
"description": "International market expansion strategy, localization, compliance, and go-to-market planning",
|
|
3906
|
+
"keywords": [
|
|
3907
|
+
"international",
|
|
3908
|
+
"expansion",
|
|
3909
|
+
"localization",
|
|
3910
|
+
"compliance",
|
|
3911
|
+
"global",
|
|
3912
|
+
"market-entry",
|
|
3913
|
+
"i18n"
|
|
3914
|
+
],
|
|
3915
|
+
"tier": "community",
|
|
3916
|
+
"category": "business",
|
|
3917
|
+
"installMethod": "copy",
|
|
3918
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/c-level-advisor/intl-expansion/SKILL.md",
|
|
3919
|
+
"source": "alirezarezvani/claude-skills",
|
|
3920
|
+
"author": "Alireza Rezvani"
|
|
3921
|
+
},
|
|
3922
|
+
{
|
|
3923
|
+
"id": "comm-capa-officer",
|
|
3924
|
+
"name": "CAPA Officer",
|
|
3925
|
+
"description": "Corrective and preventive action management, root cause analysis, and quality improvement",
|
|
3926
|
+
"keywords": [
|
|
3927
|
+
"capa",
|
|
3928
|
+
"corrective",
|
|
3929
|
+
"preventive",
|
|
3930
|
+
"root-cause",
|
|
3931
|
+
"quality",
|
|
3932
|
+
"improvement",
|
|
3933
|
+
"compliance"
|
|
3934
|
+
],
|
|
3935
|
+
"tier": "community",
|
|
3936
|
+
"category": "business",
|
|
3937
|
+
"installMethod": "copy",
|
|
3938
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/ra-qm-team/capa-officer/SKILL.md",
|
|
3939
|
+
"source": "alirezarezvani/claude-skills",
|
|
3940
|
+
"author": "Alireza Rezvani"
|
|
3941
|
+
},
|
|
3942
|
+
{
|
|
3943
|
+
"id": "comm-fda-consultant",
|
|
3944
|
+
"name": "FDA Consultant Specialist",
|
|
3945
|
+
"description": "FDA regulatory compliance, 510(k) submissions, and medical device approval processes",
|
|
3946
|
+
"keywords": [
|
|
3947
|
+
"fda",
|
|
3948
|
+
"regulatory",
|
|
3949
|
+
"compliance",
|
|
3950
|
+
"510k",
|
|
3951
|
+
"medical-device",
|
|
3952
|
+
"submission",
|
|
3953
|
+
"approval"
|
|
3954
|
+
],
|
|
3955
|
+
"tier": "community",
|
|
3956
|
+
"category": "business",
|
|
3957
|
+
"installMethod": "copy",
|
|
3958
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/ra-qm-team/fda-consultant-specialist/SKILL.md",
|
|
3959
|
+
"source": "alirezarezvani/claude-skills",
|
|
3960
|
+
"author": "Alireza Rezvani"
|
|
3961
|
+
},
|
|
3962
|
+
{
|
|
3963
|
+
"id": "comm-gdpr-dsgvo-expert",
|
|
3964
|
+
"name": "GDPR/DSGVO Expert",
|
|
3965
|
+
"description": "GDPR compliance, data protection impact assessments, privacy policies, and data subject rights",
|
|
3966
|
+
"keywords": [
|
|
3967
|
+
"gdpr",
|
|
3968
|
+
"dsgvo",
|
|
3969
|
+
"privacy",
|
|
3970
|
+
"data-protection",
|
|
3971
|
+
"compliance",
|
|
3972
|
+
"dpia",
|
|
3973
|
+
"consent"
|
|
3974
|
+
],
|
|
3975
|
+
"tier": "community",
|
|
3976
|
+
"category": "automation",
|
|
3977
|
+
"installMethod": "copy",
|
|
3978
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/ra-qm-team/gdpr-dsgvo-expert/SKILL.md",
|
|
3979
|
+
"source": "alirezarezvani/claude-skills",
|
|
3980
|
+
"author": "Alireza Rezvani"
|
|
3981
|
+
},
|
|
3982
|
+
{
|
|
3983
|
+
"id": "comm-iso27001-infosec",
|
|
3984
|
+
"name": "ISO 27001 InfoSec Manager",
|
|
3985
|
+
"description": "ISO 27001 information security management system implementation and certification",
|
|
3986
|
+
"keywords": [
|
|
3987
|
+
"iso27001",
|
|
3988
|
+
"infosec",
|
|
3989
|
+
"isms",
|
|
3990
|
+
"security",
|
|
3991
|
+
"certification",
|
|
3992
|
+
"controls",
|
|
3993
|
+
"risk-assessment"
|
|
3994
|
+
],
|
|
3995
|
+
"tier": "community",
|
|
3996
|
+
"category": "automation",
|
|
3997
|
+
"installMethod": "copy",
|
|
3998
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/ra-qm-team/information-security-manager-iso27001/SKILL.md",
|
|
3999
|
+
"source": "alirezarezvani/claude-skills",
|
|
4000
|
+
"author": "Alireza Rezvani"
|
|
4001
|
+
},
|
|
4002
|
+
{
|
|
4003
|
+
"id": "comm-isms-audit-expert",
|
|
4004
|
+
"name": "ISMS Audit Expert",
|
|
4005
|
+
"description": "Information security management system auditing, gap analysis, and compliance verification",
|
|
4006
|
+
"keywords": [
|
|
4007
|
+
"isms",
|
|
4008
|
+
"audit",
|
|
4009
|
+
"security",
|
|
4010
|
+
"gap-analysis",
|
|
4011
|
+
"compliance",
|
|
4012
|
+
"verification",
|
|
4013
|
+
"assessment"
|
|
4014
|
+
],
|
|
4015
|
+
"tier": "community",
|
|
4016
|
+
"category": "automation",
|
|
4017
|
+
"installMethod": "copy",
|
|
4018
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/ra-qm-team/isms-audit-expert/SKILL.md",
|
|
4019
|
+
"source": "alirezarezvani/claude-skills",
|
|
4020
|
+
"author": "Alireza Rezvani"
|
|
4021
|
+
},
|
|
4022
|
+
{
|
|
4023
|
+
"id": "comm-mdr-745-specialist",
|
|
4024
|
+
"name": "MDR 745 Specialist",
|
|
4025
|
+
"description": "EU Medical Device Regulation (MDR 2017/745) compliance and technical documentation",
|
|
4026
|
+
"keywords": [
|
|
4027
|
+
"mdr",
|
|
4028
|
+
"medical-device",
|
|
4029
|
+
"regulation",
|
|
4030
|
+
"eu",
|
|
4031
|
+
"compliance",
|
|
4032
|
+
"technical-documentation",
|
|
4033
|
+
"ce-marking"
|
|
4034
|
+
],
|
|
4035
|
+
"tier": "community",
|
|
4036
|
+
"category": "business",
|
|
4037
|
+
"installMethod": "copy",
|
|
4038
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/ra-qm-team/mdr-745-specialist/SKILL.md",
|
|
4039
|
+
"source": "alirezarezvani/claude-skills",
|
|
4040
|
+
"author": "Alireza Rezvani"
|
|
4041
|
+
},
|
|
4042
|
+
{
|
|
4043
|
+
"id": "comm-qms-audit-expert",
|
|
4044
|
+
"name": "QMS Audit Expert",
|
|
4045
|
+
"description": "Quality management system auditing, process evaluation, and continuous improvement",
|
|
4046
|
+
"keywords": [
|
|
4047
|
+
"qms",
|
|
4048
|
+
"audit",
|
|
4049
|
+
"quality",
|
|
4050
|
+
"process",
|
|
4051
|
+
"continuous-improvement",
|
|
4052
|
+
"iso",
|
|
4053
|
+
"assessment"
|
|
4054
|
+
],
|
|
4055
|
+
"tier": "community",
|
|
4056
|
+
"category": "business",
|
|
4057
|
+
"installMethod": "copy",
|
|
4058
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/ra-qm-team/qms-audit-expert/SKILL.md",
|
|
4059
|
+
"source": "alirezarezvani/claude-skills",
|
|
4060
|
+
"author": "Alireza Rezvani"
|
|
4061
|
+
},
|
|
4062
|
+
{
|
|
4063
|
+
"id": "comm-quality-documentation-manager",
|
|
4064
|
+
"name": "Quality Documentation Manager",
|
|
4065
|
+
"description": "Quality documentation control, SOP management, and document lifecycle governance",
|
|
4066
|
+
"keywords": [
|
|
4067
|
+
"quality",
|
|
4068
|
+
"documentation",
|
|
4069
|
+
"sop",
|
|
4070
|
+
"document-control",
|
|
4071
|
+
"lifecycle",
|
|
4072
|
+
"governance",
|
|
4073
|
+
"procedures"
|
|
4074
|
+
],
|
|
4075
|
+
"tier": "community",
|
|
4076
|
+
"category": "productivity",
|
|
4077
|
+
"installMethod": "copy",
|
|
4078
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/ra-qm-team/quality-documentation-manager/SKILL.md",
|
|
4079
|
+
"source": "alirezarezvani/claude-skills",
|
|
4080
|
+
"author": "Alireza Rezvani"
|
|
4081
|
+
},
|
|
4082
|
+
{
|
|
4083
|
+
"id": "comm-quality-manager-qmr",
|
|
4084
|
+
"name": "Quality Manager (QMR)",
|
|
4085
|
+
"description": "Quality management representative duties, quality planning, and management review",
|
|
4086
|
+
"keywords": [
|
|
4087
|
+
"quality",
|
|
4088
|
+
"qmr",
|
|
4089
|
+
"management",
|
|
4090
|
+
"planning",
|
|
4091
|
+
"review",
|
|
4092
|
+
"kpi",
|
|
4093
|
+
"improvement"
|
|
4094
|
+
],
|
|
4095
|
+
"tier": "community",
|
|
4096
|
+
"category": "business",
|
|
4097
|
+
"installMethod": "copy",
|
|
4098
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/ra-qm-team/quality-manager-qmr/SKILL.md",
|
|
4099
|
+
"source": "alirezarezvani/claude-skills",
|
|
4100
|
+
"author": "Alireza Rezvani"
|
|
4101
|
+
},
|
|
4102
|
+
{
|
|
4103
|
+
"id": "comm-quality-manager-iso13485",
|
|
4104
|
+
"name": "Quality Manager ISO 13485",
|
|
4105
|
+
"description": "ISO 13485 quality management system for medical devices, process validation, and risk management",
|
|
4106
|
+
"keywords": [
|
|
4107
|
+
"iso13485",
|
|
4108
|
+
"medical-device",
|
|
4109
|
+
"quality",
|
|
4110
|
+
"validation",
|
|
4111
|
+
"risk-management",
|
|
4112
|
+
"qms",
|
|
4113
|
+
"compliance"
|
|
4114
|
+
],
|
|
4115
|
+
"tier": "community",
|
|
4116
|
+
"category": "business",
|
|
4117
|
+
"installMethod": "copy",
|
|
4118
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/ra-qm-team/quality-manager-qms-iso13485/SKILL.md",
|
|
4119
|
+
"source": "alirezarezvani/claude-skills",
|
|
4120
|
+
"author": "Alireza Rezvani"
|
|
4121
|
+
},
|
|
4122
|
+
{
|
|
4123
|
+
"id": "comm-regulatory-affairs-head",
|
|
4124
|
+
"name": "Regulatory Affairs Head",
|
|
4125
|
+
"description": "Regulatory strategy, submissions management, and regulatory intelligence across markets",
|
|
4126
|
+
"keywords": [
|
|
4127
|
+
"regulatory",
|
|
4128
|
+
"affairs",
|
|
4129
|
+
"submissions",
|
|
4130
|
+
"strategy",
|
|
4131
|
+
"intelligence",
|
|
4132
|
+
"compliance",
|
|
4133
|
+
"approvals"
|
|
4134
|
+
],
|
|
4135
|
+
"tier": "community",
|
|
4136
|
+
"category": "business",
|
|
4137
|
+
"installMethod": "copy",
|
|
4138
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/ra-qm-team/regulatory-affairs-head/SKILL.md",
|
|
4139
|
+
"source": "alirezarezvani/claude-skills",
|
|
4140
|
+
"author": "Alireza Rezvani"
|
|
4141
|
+
},
|
|
4142
|
+
{
|
|
4143
|
+
"id": "comm-risk-management-specialist",
|
|
4144
|
+
"name": "Risk Management Specialist",
|
|
4145
|
+
"description": "Enterprise risk management, risk assessment methodologies, and mitigation strategies",
|
|
4146
|
+
"keywords": [
|
|
4147
|
+
"risk",
|
|
4148
|
+
"management",
|
|
4149
|
+
"assessment",
|
|
4150
|
+
"mitigation",
|
|
4151
|
+
"enterprise",
|
|
4152
|
+
"iso31000",
|
|
4153
|
+
"fmea"
|
|
4154
|
+
],
|
|
4155
|
+
"tier": "community",
|
|
4156
|
+
"category": "business",
|
|
4157
|
+
"installMethod": "copy",
|
|
4158
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/ra-qm-team/risk-management-specialist/SKILL.md",
|
|
4159
|
+
"source": "alirezarezvani/claude-skills",
|
|
4160
|
+
"author": "Alireza Rezvani"
|
|
4161
|
+
},
|
|
4162
|
+
{
|
|
4163
|
+
"id": "comm-soc2-compliance",
|
|
4164
|
+
"name": "SOC 2 Compliance",
|
|
4165
|
+
"description": "SOC 2 Type I/II compliance, trust service criteria, and audit preparation",
|
|
4166
|
+
"keywords": [
|
|
4167
|
+
"soc2",
|
|
4168
|
+
"compliance",
|
|
4169
|
+
"audit",
|
|
4170
|
+
"trust-services",
|
|
4171
|
+
"security",
|
|
4172
|
+
"availability",
|
|
4173
|
+
"controls"
|
|
4174
|
+
],
|
|
4175
|
+
"tier": "community",
|
|
4176
|
+
"category": "automation",
|
|
4177
|
+
"installMethod": "copy",
|
|
4178
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/ra-qm-team/soc2-compliance/SKILL.md",
|
|
4179
|
+
"source": "alirezarezvani/claude-skills",
|
|
4180
|
+
"author": "Alireza Rezvani"
|
|
4181
|
+
},
|
|
4182
|
+
{
|
|
4183
|
+
"id": "comm-social-content",
|
|
4184
|
+
"name": "Social Content Creator",
|
|
4185
|
+
"description": "Social media content creation, scheduling strategies, and platform-specific content optimization",
|
|
4186
|
+
"keywords": [
|
|
4187
|
+
"social",
|
|
4188
|
+
"content",
|
|
4189
|
+
"social-media",
|
|
4190
|
+
"scheduling",
|
|
4191
|
+
"platforms",
|
|
4192
|
+
"engagement",
|
|
4193
|
+
"creative"
|
|
4194
|
+
],
|
|
4195
|
+
"tier": "community",
|
|
4196
|
+
"category": "content",
|
|
4197
|
+
"installMethod": "copy",
|
|
4198
|
+
"installTarget": "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/social-content/SKILL.md",
|
|
4199
|
+
"source": "alirezarezvani/claude-skills",
|
|
4200
|
+
"author": "Alireza Rezvani"
|
|
4201
|
+
}
|
|
4202
|
+
]
|