claude-skill-lord 2.0.4 → 2.0.6
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/.claude-plugin/plugin.json +2 -4
- package/CLAUDE.md +0 -1
- package/README.md +20 -24
- package/manifests/install-modules.json +2 -2
- package/package.json +2 -3
- package/scripts/install.js +13 -0
- package/scripts/sl.js +34 -13
- package/skills/ai-multimodal/.env.example +97 -0
- package/skills/devops/.env.example +76 -0
- package/skills/docs-seeker/.env.example +15 -0
- package/skills/payment-integration/scripts/.env.example +20 -0
- package/skills/sequential-thinking/.env.example +8 -0
- package/agents/skill-router.md +0 -112
- package/commands/route.md +0 -28
- package/skills/manifest.json +0 -1078
package/skills/manifest.json
DELETED
|
@@ -1,1078 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 1,
|
|
3
|
-
"skills": [
|
|
4
|
-
{
|
|
5
|
-
"name": "api-design",
|
|
6
|
-
"path": "skills/api-design/SKILL.md",
|
|
7
|
-
"tags": [
|
|
8
|
-
"api",
|
|
9
|
-
"rest",
|
|
10
|
-
"pagination",
|
|
11
|
-
"versioning",
|
|
12
|
-
"error-handling",
|
|
13
|
-
"rate-limiting"
|
|
14
|
-
],
|
|
15
|
-
"description": "REST API design patterns for consistent, developer-friendly endpoints",
|
|
16
|
-
"dependencies": []
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"name": "backend-development",
|
|
20
|
-
"path": "skills/backend-development/SKILL.md",
|
|
21
|
-
"tags": [
|
|
22
|
-
"backend",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"python",
|
|
25
|
-
"api",
|
|
26
|
-
"authentication",
|
|
27
|
-
"microservices",
|
|
28
|
-
"performance"
|
|
29
|
-
],
|
|
30
|
-
"description": "Build robust backend systems with modern technologies and frameworks",
|
|
31
|
-
"dependencies": []
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"name": "code-review",
|
|
35
|
-
"path": "skills/code-review/SKILL.md",
|
|
36
|
-
"tags": [
|
|
37
|
-
"review",
|
|
38
|
-
"quality",
|
|
39
|
-
"feedback",
|
|
40
|
-
"verification",
|
|
41
|
-
"pull-request",
|
|
42
|
-
"technical-rigor"
|
|
43
|
-
],
|
|
44
|
-
"description": "Code review practices emphasizing technical rigor and verification gates",
|
|
45
|
-
"dependencies": []
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"name": "databases",
|
|
49
|
-
"path": "skills/databases/SKILL.md",
|
|
50
|
-
"tags": [
|
|
51
|
-
"database",
|
|
52
|
-
"mongodb",
|
|
53
|
-
"postgresql",
|
|
54
|
-
"sql",
|
|
55
|
-
"schema",
|
|
56
|
-
"indexing",
|
|
57
|
-
"query-optimization"
|
|
58
|
-
],
|
|
59
|
-
"description": "Work with MongoDB and PostgreSQL for schemas, queries, and optimization",
|
|
60
|
-
"dependencies": []
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"name": "debugging",
|
|
64
|
-
"path": "skills/debugging/SKILL.md",
|
|
65
|
-
"tags": [
|
|
66
|
-
"debug",
|
|
67
|
-
"troubleshoot",
|
|
68
|
-
"error",
|
|
69
|
-
"fix",
|
|
70
|
-
"investigate",
|
|
71
|
-
"root-cause"
|
|
72
|
-
],
|
|
73
|
-
"description": "Systematic debugging methodology with root cause analysis",
|
|
74
|
-
"dependencies": []
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
"name": "devops",
|
|
78
|
-
"path": "skills/devops/SKILL.md",
|
|
79
|
-
"tags": [
|
|
80
|
-
"devops",
|
|
81
|
-
"cloudflare",
|
|
82
|
-
"docker",
|
|
83
|
-
"gcp",
|
|
84
|
-
"ci-cd",
|
|
85
|
-
"deploy",
|
|
86
|
-
"serverless"
|
|
87
|
-
],
|
|
88
|
-
"description": "Deploy and manage cloud infrastructure on Cloudflare, Docker, and GCP",
|
|
89
|
-
"dependencies": []
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
"name": "frontend-development",
|
|
93
|
-
"path": "skills/frontend-development/SKILL.md",
|
|
94
|
-
"tags": [
|
|
95
|
-
"frontend",
|
|
96
|
-
"react",
|
|
97
|
-
"typescript",
|
|
98
|
-
"suspense",
|
|
99
|
-
"tanstack",
|
|
100
|
-
"mui",
|
|
101
|
-
"performance"
|
|
102
|
-
],
|
|
103
|
-
"description": "Frontend development guidelines for React/TypeScript applications",
|
|
104
|
-
"dependencies": []
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
"name": "react-best-practices",
|
|
108
|
-
"path": "skills/react-best-practices/SKILL.md",
|
|
109
|
-
"tags": [
|
|
110
|
-
"react",
|
|
111
|
-
"nextjs",
|
|
112
|
-
"performance",
|
|
113
|
-
"optimization",
|
|
114
|
-
"vercel",
|
|
115
|
-
"ssr",
|
|
116
|
-
"bundle"
|
|
117
|
-
],
|
|
118
|
-
"description": "React and Next.js performance optimization guidelines from Vercel",
|
|
119
|
-
"dependencies": []
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"name": "research",
|
|
123
|
-
"path": "skills/research/SKILL.md",
|
|
124
|
-
"tags": [
|
|
125
|
-
"research",
|
|
126
|
-
"analysis",
|
|
127
|
-
"planning",
|
|
128
|
-
"investigation",
|
|
129
|
-
"methodology",
|
|
130
|
-
"evaluation"
|
|
131
|
-
],
|
|
132
|
-
"description": "Research and analyze technical solutions that are scalable and secure",
|
|
133
|
-
"dependencies": []
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"name": "security-review",
|
|
137
|
-
"path": "skills/security-review/SKILL.md",
|
|
138
|
-
"tags": [
|
|
139
|
-
"security",
|
|
140
|
-
"authentication",
|
|
141
|
-
"vulnerability",
|
|
142
|
-
"owasp",
|
|
143
|
-
"input-validation",
|
|
144
|
-
"secrets"
|
|
145
|
-
],
|
|
146
|
-
"description": "Security checklist and patterns for auth, input, secrets, and APIs",
|
|
147
|
-
"dependencies": []
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"name": "sequential-thinking",
|
|
151
|
-
"path": "skills/sequential-thinking/SKILL.md",
|
|
152
|
-
"tags": [
|
|
153
|
-
"thinking",
|
|
154
|
-
"problem-solving",
|
|
155
|
-
"decomposition",
|
|
156
|
-
"analysis",
|
|
157
|
-
"planning",
|
|
158
|
-
"reasoning"
|
|
159
|
-
],
|
|
160
|
-
"description": "Structured reflective problem-solving for complex multi-step tasks",
|
|
161
|
-
"dependencies": []
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
"name": "tdd-workflow",
|
|
165
|
-
"path": "skills/tdd-workflow/SKILL.md",
|
|
166
|
-
"tags": [
|
|
167
|
-
"tdd",
|
|
168
|
-
"testing",
|
|
169
|
-
"test-driven",
|
|
170
|
-
"coverage",
|
|
171
|
-
"unit-test",
|
|
172
|
-
"red-green-refactor"
|
|
173
|
-
],
|
|
174
|
-
"description": "Enforce test-driven development with 80%+ coverage target",
|
|
175
|
-
"dependencies": []
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
"name": "testing",
|
|
179
|
-
"path": "skills/testing/SKILL.md",
|
|
180
|
-
"tags": [
|
|
181
|
-
"testing",
|
|
182
|
-
"unit-test",
|
|
183
|
-
"integration-test",
|
|
184
|
-
"e2e",
|
|
185
|
-
"coverage",
|
|
186
|
-
"test-pyramid"
|
|
187
|
-
],
|
|
188
|
-
"description": "Comprehensive testing strategies for unit, integration, and E2E tests",
|
|
189
|
-
"dependencies": []
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
"name": "ui-styling",
|
|
193
|
-
"path": "skills/ui-styling/SKILL.md",
|
|
194
|
-
"tags": [
|
|
195
|
-
"ui",
|
|
196
|
-
"styling",
|
|
197
|
-
"shadcn",
|
|
198
|
-
"tailwind",
|
|
199
|
-
"radix",
|
|
200
|
-
"accessible",
|
|
201
|
-
"dark-mode"
|
|
202
|
-
],
|
|
203
|
-
"description": "Create accessible UIs with shadcn/ui, Tailwind CSS, and canvas design",
|
|
204
|
-
"dependencies": []
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
"name": "ui-ux-pro-max",
|
|
208
|
-
"path": "skills/ui-ux-pro-max/SKILL.md",
|
|
209
|
-
"tags": [
|
|
210
|
-
"ui",
|
|
211
|
-
"ux",
|
|
212
|
-
"design",
|
|
213
|
-
"styles",
|
|
214
|
-
"colors",
|
|
215
|
-
"typography",
|
|
216
|
-
"fonts",
|
|
217
|
-
"charts",
|
|
218
|
-
"responsive",
|
|
219
|
-
"accessibility",
|
|
220
|
-
"glassmorphism",
|
|
221
|
-
"minimalism",
|
|
222
|
-
"brutalism",
|
|
223
|
-
"design-system"
|
|
224
|
-
],
|
|
225
|
-
"description": "Design intelligence with 67 styles, 161 color palettes, 57 font pairings, 25 charts, 13 stacks, and 161 industry-specific reasoning rules",
|
|
226
|
-
"dependencies": []
|
|
227
|
-
},
|
|
228
|
-
{
|
|
229
|
-
"name": "web-frameworks",
|
|
230
|
-
"path": "skills/web-frameworks/SKILL.md",
|
|
231
|
-
"tags": [
|
|
232
|
-
"nextjs",
|
|
233
|
-
"turborepo",
|
|
234
|
-
"monorepo",
|
|
235
|
-
"ssr",
|
|
236
|
-
"ssg",
|
|
237
|
-
"rsc",
|
|
238
|
-
"fullstack"
|
|
239
|
-
],
|
|
240
|
-
"description": "Build full-stack web apps with Next.js, Turborepo, and RemixIcon",
|
|
241
|
-
"dependencies": []
|
|
242
|
-
},
|
|
243
|
-
{
|
|
244
|
-
"name": "ai-multimodal",
|
|
245
|
-
"path": "skills/ai-multimodal/SKILL.md",
|
|
246
|
-
"tags": [
|
|
247
|
-
"ai",
|
|
248
|
-
"gemini",
|
|
249
|
-
"multimodal",
|
|
250
|
-
"audio",
|
|
251
|
-
"video",
|
|
252
|
-
"image",
|
|
253
|
-
"document",
|
|
254
|
-
"ocr"
|
|
255
|
-
],
|
|
256
|
-
"description": "Process and generate multimedia content using Google Gemini API",
|
|
257
|
-
"dependencies": []
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
"name": "autonomous-loops",
|
|
261
|
-
"path": "skills/autonomous-loops/SKILL.md",
|
|
262
|
-
"tags": [
|
|
263
|
-
"automation",
|
|
264
|
-
"agent",
|
|
265
|
-
"loop",
|
|
266
|
-
"pipeline",
|
|
267
|
-
"ci-cd",
|
|
268
|
-
"autonomous",
|
|
269
|
-
"orchestration"
|
|
270
|
-
],
|
|
271
|
-
"description": "Patterns for autonomous Claude Code loops and multi-agent pipelines",
|
|
272
|
-
"dependencies": []
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
"name": "backend-patterns",
|
|
276
|
-
"path": "skills/backend-patterns/SKILL.md",
|
|
277
|
-
"tags": [
|
|
278
|
-
"backend",
|
|
279
|
-
"architecture",
|
|
280
|
-
"api",
|
|
281
|
-
"caching",
|
|
282
|
-
"middleware",
|
|
283
|
-
"repository-pattern"
|
|
284
|
-
],
|
|
285
|
-
"description": "Backend architecture patterns for Node.js, Express, and Next.js APIs",
|
|
286
|
-
"dependencies": [
|
|
287
|
-
"backend-development"
|
|
288
|
-
]
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
"name": "better-auth",
|
|
292
|
-
"path": "skills/better-auth/SKILL.md",
|
|
293
|
-
"tags": [
|
|
294
|
-
"auth",
|
|
295
|
-
"authentication",
|
|
296
|
-
"oauth",
|
|
297
|
-
"2fa",
|
|
298
|
-
"passkey",
|
|
299
|
-
"session",
|
|
300
|
-
"typescript"
|
|
301
|
-
],
|
|
302
|
-
"description": "Implement authentication with Better Auth TypeScript framework",
|
|
303
|
-
"dependencies": []
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"name": "claude-api",
|
|
307
|
-
"path": "skills/claude-api/SKILL.md",
|
|
308
|
-
"tags": ["anthropic", "claude", "api", "streaming", "tool-use", "agent-sdk", "python", "typescript"],
|
|
309
|
-
"description": "Anthropic Claude API patterns: streaming, tool use, vision, batches, prompt caching, Agent SDK",
|
|
310
|
-
"dependencies": []
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
"name": "claude-code",
|
|
314
|
-
"path": "skills/claude-code/SKILL.md",
|
|
315
|
-
"tags": [
|
|
316
|
-
"claude-code",
|
|
317
|
-
"mcp",
|
|
318
|
-
"skills",
|
|
319
|
-
"hooks",
|
|
320
|
-
"plugins",
|
|
321
|
-
"slash-commands",
|
|
322
|
-
"configuration"
|
|
323
|
-
],
|
|
324
|
-
"description": "Claude Code features, setup, configuration, and troubleshooting",
|
|
325
|
-
"dependencies": []
|
|
326
|
-
},
|
|
327
|
-
{
|
|
328
|
-
"name": "codebase-onboarding",
|
|
329
|
-
"path": "skills/codebase-onboarding/SKILL.md",
|
|
330
|
-
"tags": [
|
|
331
|
-
"onboarding",
|
|
332
|
-
"codebase",
|
|
333
|
-
"architecture",
|
|
334
|
-
"analysis",
|
|
335
|
-
"documentation",
|
|
336
|
-
"claude-md"
|
|
337
|
-
],
|
|
338
|
-
"description": "Analyze unfamiliar codebases and generate structured onboarding guides",
|
|
339
|
-
"dependencies": []
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
"name": "coding-standards",
|
|
343
|
-
"path": "skills/coding-standards/SKILL.md",
|
|
344
|
-
"tags": [
|
|
345
|
-
"standards",
|
|
346
|
-
"best-practices",
|
|
347
|
-
"conventions",
|
|
348
|
-
"linting",
|
|
349
|
-
"typescript",
|
|
350
|
-
"quality"
|
|
351
|
-
],
|
|
352
|
-
"description": "Universal coding standards for TypeScript, JavaScript, and React",
|
|
353
|
-
"dependencies": []
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
"name": "continuous-learning-v2",
|
|
357
|
-
"path": "skills/continuous-learning-v2/SKILL.md",
|
|
358
|
-
"tags": ["learning", "instincts", "hooks", "project-scoped", "confidence", "evolution"],
|
|
359
|
-
"description": "Instinct-based learning v2.1 — hook-observed sessions, project-scoped instincts, confidence scoring",
|
|
360
|
-
"dependencies": ["codebase-onboarding"]
|
|
361
|
-
},
|
|
362
|
-
{
|
|
363
|
-
"name": "continuous-learning",
|
|
364
|
-
"path": "skills/continuous-learning/SKILL.md",
|
|
365
|
-
"tags": [
|
|
366
|
-
"learning",
|
|
367
|
-
"instincts",
|
|
368
|
-
"hooks",
|
|
369
|
-
"pattern-extraction",
|
|
370
|
-
"confidence",
|
|
371
|
-
"knowledge"
|
|
372
|
-
],
|
|
373
|
-
"description": "Instinct-based learning system that evolves sessions into reusable knowledge",
|
|
374
|
-
"dependencies": [
|
|
375
|
-
"codebase-onboarding"
|
|
376
|
-
]
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
"name": "database-migrations",
|
|
380
|
-
"path": "skills/database-migrations/SKILL.md",
|
|
381
|
-
"tags": [
|
|
382
|
-
"database",
|
|
383
|
-
"migration",
|
|
384
|
-
"schema",
|
|
385
|
-
"rollback",
|
|
386
|
-
"zero-downtime",
|
|
387
|
-
"orm",
|
|
388
|
-
"prisma"
|
|
389
|
-
],
|
|
390
|
-
"description": "Safe database migration patterns for schema changes and rollbacks",
|
|
391
|
-
"dependencies": []
|
|
392
|
-
},
|
|
393
|
-
{
|
|
394
|
-
"name": "deep-research",
|
|
395
|
-
"path": "skills/deep-research/SKILL.md",
|
|
396
|
-
"tags": ["research", "firecrawl", "exa", "mcp", "citations", "synthesis", "web-search"],
|
|
397
|
-
"description": "Multi-source deep research via firecrawl/exa MCPs — cited reports with source attribution",
|
|
398
|
-
"dependencies": ["research"]
|
|
399
|
-
},
|
|
400
|
-
{
|
|
401
|
-
"name": "deployment-patterns",
|
|
402
|
-
"path": "skills/deployment-patterns/SKILL.md",
|
|
403
|
-
"tags": [
|
|
404
|
-
"deployment",
|
|
405
|
-
"ci-cd",
|
|
406
|
-
"docker",
|
|
407
|
-
"rollback",
|
|
408
|
-
"health-check",
|
|
409
|
-
"blue-green",
|
|
410
|
-
"canary"
|
|
411
|
-
],
|
|
412
|
-
"description": "Production deployment workflows, CI/CD pipelines, and rollback strategies",
|
|
413
|
-
"dependencies": []
|
|
414
|
-
},
|
|
415
|
-
{
|
|
416
|
-
"name": "docker-patterns",
|
|
417
|
-
"path": "skills/docker-patterns/SKILL.md",
|
|
418
|
-
"tags": [
|
|
419
|
-
"docker",
|
|
420
|
-
"container",
|
|
421
|
-
"compose",
|
|
422
|
-
"networking",
|
|
423
|
-
"volume",
|
|
424
|
-
"security",
|
|
425
|
-
"orchestration"
|
|
426
|
-
],
|
|
427
|
-
"description": "Docker and Docker Compose patterns for containerized development",
|
|
428
|
-
"dependencies": [
|
|
429
|
-
"devops"
|
|
430
|
-
]
|
|
431
|
-
},
|
|
432
|
-
{
|
|
433
|
-
"name": "e2e-testing",
|
|
434
|
-
"path": "skills/e2e-testing/SKILL.md",
|
|
435
|
-
"tags": [
|
|
436
|
-
"e2e",
|
|
437
|
-
"playwright",
|
|
438
|
-
"testing",
|
|
439
|
-
"page-object",
|
|
440
|
-
"ci-cd",
|
|
441
|
-
"browser",
|
|
442
|
-
"automation"
|
|
443
|
-
],
|
|
444
|
-
"description": "Playwright E2E testing patterns with Page Object Model and CI/CD",
|
|
445
|
-
"dependencies": [
|
|
446
|
-
"testing"
|
|
447
|
-
]
|
|
448
|
-
},
|
|
449
|
-
{
|
|
450
|
-
"name": "eval-harness",
|
|
451
|
-
"path": "skills/eval-harness/SKILL.md",
|
|
452
|
-
"tags": [
|
|
453
|
-
"eval",
|
|
454
|
-
"benchmark",
|
|
455
|
-
"metrics",
|
|
456
|
-
"pass-at-k",
|
|
457
|
-
"regression",
|
|
458
|
-
"agent",
|
|
459
|
-
"quality"
|
|
460
|
-
],
|
|
461
|
-
"description": "Formal evaluation framework for Claude Code sessions with EDD principles",
|
|
462
|
-
"dependencies": []
|
|
463
|
-
},
|
|
464
|
-
{
|
|
465
|
-
"name": "frontend-patterns",
|
|
466
|
-
"path": "skills/frontend-patterns/SKILL.md",
|
|
467
|
-
"tags": [
|
|
468
|
-
"frontend",
|
|
469
|
-
"react",
|
|
470
|
-
"nextjs",
|
|
471
|
-
"state-management",
|
|
472
|
-
"performance",
|
|
473
|
-
"forms",
|
|
474
|
-
"routing"
|
|
475
|
-
],
|
|
476
|
-
"description": "Frontend development patterns for React, Next.js, and performant UIs",
|
|
477
|
-
"dependencies": [
|
|
478
|
-
"frontend-development"
|
|
479
|
-
]
|
|
480
|
-
},
|
|
481
|
-
{
|
|
482
|
-
"name": "google-adk-python",
|
|
483
|
-
"path": "skills/google-adk-python/SKILL.md",
|
|
484
|
-
"tags": [
|
|
485
|
-
"google-adk",
|
|
486
|
-
"ai-agent",
|
|
487
|
-
"python",
|
|
488
|
-
"multi-agent",
|
|
489
|
-
"workflow",
|
|
490
|
-
"vertex-ai",
|
|
491
|
-
"orchestration"
|
|
492
|
-
],
|
|
493
|
-
"description": "Build AI agents with Google Agent Development Kit for Python",
|
|
494
|
-
"dependencies": []
|
|
495
|
-
},
|
|
496
|
-
{
|
|
497
|
-
"name": "mcp-management",
|
|
498
|
-
"path": "skills/mcp-management/SKILL.md",
|
|
499
|
-
"tags": [
|
|
500
|
-
"mcp",
|
|
501
|
-
"tools",
|
|
502
|
-
"protocol",
|
|
503
|
-
"discovery",
|
|
504
|
-
"server",
|
|
505
|
-
"integration",
|
|
506
|
-
"context"
|
|
507
|
-
],
|
|
508
|
-
"description": "Discover, analyze, and execute MCP server tools and resources",
|
|
509
|
-
"dependencies": []
|
|
510
|
-
},
|
|
511
|
-
{
|
|
512
|
-
"name": "mcp-server-patterns",
|
|
513
|
-
"path": "skills/mcp-server-patterns/SKILL.md",
|
|
514
|
-
"tags": [
|
|
515
|
-
"mcp",
|
|
516
|
-
"server",
|
|
517
|
-
"tools",
|
|
518
|
-
"resources",
|
|
519
|
-
"zod",
|
|
520
|
-
"stdio",
|
|
521
|
-
"http",
|
|
522
|
-
"typescript"
|
|
523
|
-
],
|
|
524
|
-
"description": "Build MCP servers with Node/TypeScript SDK for tools and resources",
|
|
525
|
-
"dependencies": []
|
|
526
|
-
},
|
|
527
|
-
{
|
|
528
|
-
"name": "media-processing",
|
|
529
|
-
"path": "skills/media-processing/SKILL.md",
|
|
530
|
-
"tags": [
|
|
531
|
-
"ffmpeg",
|
|
532
|
-
"imagemagick",
|
|
533
|
-
"video",
|
|
534
|
-
"audio",
|
|
535
|
-
"image",
|
|
536
|
-
"encoding",
|
|
537
|
-
"streaming"
|
|
538
|
-
],
|
|
539
|
-
"description": "Process video, audio, and images with FFmpeg and ImageMagick",
|
|
540
|
-
"dependencies": []
|
|
541
|
-
},
|
|
542
|
-
{
|
|
543
|
-
"name": "iterative-retrieval",
|
|
544
|
-
"path": "skills/iterative-retrieval/SKILL.md",
|
|
545
|
-
"tags": ["retrieval", "context", "subagent", "rag", "multi-agent", "orchestration"],
|
|
546
|
-
"description": "Progressive context retrieval for multi-agent workflows — 4-phase loop solving the subagent context problem",
|
|
547
|
-
"dependencies": []
|
|
548
|
-
},
|
|
549
|
-
{
|
|
550
|
-
"name": "mobile-development",
|
|
551
|
-
"path": "skills/mobile-development/SKILL.md",
|
|
552
|
-
"tags": [
|
|
553
|
-
"mobile",
|
|
554
|
-
"react-native",
|
|
555
|
-
"flutter",
|
|
556
|
-
"ios",
|
|
557
|
-
"android",
|
|
558
|
-
"offline-first",
|
|
559
|
-
"cross-platform"
|
|
560
|
-
],
|
|
561
|
-
"description": "Build mobile apps with React Native, Flutter, Swift, and Kotlin",
|
|
562
|
-
"dependencies": []
|
|
563
|
-
},
|
|
564
|
-
{
|
|
565
|
-
"name": "payment-integration",
|
|
566
|
-
"path": "skills/payment-integration/SKILL.md",
|
|
567
|
-
"tags": [
|
|
568
|
-
"payment",
|
|
569
|
-
"subscription",
|
|
570
|
-
"webhook",
|
|
571
|
-
"billing",
|
|
572
|
-
"checkout",
|
|
573
|
-
"qr-code",
|
|
574
|
-
"saas"
|
|
575
|
-
],
|
|
576
|
-
"description": "Implement payment processing with SePay and Polar platforms",
|
|
577
|
-
"dependencies": []
|
|
578
|
-
},
|
|
579
|
-
{
|
|
580
|
-
"name": "planning",
|
|
581
|
-
"path": "skills/planning/SKILL.md",
|
|
582
|
-
"tags": [
|
|
583
|
-
"planning",
|
|
584
|
-
"architecture",
|
|
585
|
-
"roadmap",
|
|
586
|
-
"requirements",
|
|
587
|
-
"trade-offs",
|
|
588
|
-
"design"
|
|
589
|
-
],
|
|
590
|
-
"description": "Create detailed technical implementation plans and solution designs",
|
|
591
|
-
"dependencies": []
|
|
592
|
-
},
|
|
593
|
-
{
|
|
594
|
-
"name": "postgres-patterns",
|
|
595
|
-
"path": "skills/postgres-patterns/SKILL.md",
|
|
596
|
-
"tags": [
|
|
597
|
-
"postgresql",
|
|
598
|
-
"sql",
|
|
599
|
-
"indexing",
|
|
600
|
-
"schema",
|
|
601
|
-
"rls",
|
|
602
|
-
"query-optimization",
|
|
603
|
-
"supabase"
|
|
604
|
-
],
|
|
605
|
-
"description": "PostgreSQL patterns for query optimization, schema design, and security",
|
|
606
|
-
"dependencies": [
|
|
607
|
-
"databases"
|
|
608
|
-
]
|
|
609
|
-
},
|
|
610
|
-
{
|
|
611
|
-
"name": "problem-solving",
|
|
612
|
-
"path": "skills/problem-solving/SKILL.md",
|
|
613
|
-
"tags": [
|
|
614
|
-
"problem-solving",
|
|
615
|
-
"complexity",
|
|
616
|
-
"innovation",
|
|
617
|
-
"meta-pattern",
|
|
618
|
-
"inversion",
|
|
619
|
-
"scale"
|
|
620
|
-
],
|
|
621
|
-
"description": "Systematic problem-solving techniques for different types of stuck-ness",
|
|
622
|
-
"dependencies": []
|
|
623
|
-
},
|
|
624
|
-
{
|
|
625
|
-
"name": "strategic-compact",
|
|
626
|
-
"path": "skills/strategic-compact/SKILL.md",
|
|
627
|
-
"tags": [
|
|
628
|
-
"context",
|
|
629
|
-
"compact",
|
|
630
|
-
"memory",
|
|
631
|
-
"session",
|
|
632
|
-
"workflow",
|
|
633
|
-
"optimization"
|
|
634
|
-
],
|
|
635
|
-
"description": "Strategic manual context compaction to preserve context across phases",
|
|
636
|
-
"dependencies": []
|
|
637
|
-
},
|
|
638
|
-
{
|
|
639
|
-
"name": "verification-loop",
|
|
640
|
-
"path": "skills/verification-loop/SKILL.md",
|
|
641
|
-
"tags": [
|
|
642
|
-
"verification",
|
|
643
|
-
"quality-gate",
|
|
644
|
-
"pre-pr",
|
|
645
|
-
"validation",
|
|
646
|
-
"refactoring",
|
|
647
|
-
"checklist"
|
|
648
|
-
],
|
|
649
|
-
"description": "Comprehensive verification system for code changes before PR creation",
|
|
650
|
-
"dependencies": []
|
|
651
|
-
},
|
|
652
|
-
{
|
|
653
|
-
"name": "design-system",
|
|
654
|
-
"path": "skills/design-system/SKILL.md",
|
|
655
|
-
"tags": [
|
|
656
|
-
"design-system",
|
|
657
|
-
"tokens",
|
|
658
|
-
"components",
|
|
659
|
-
"slides",
|
|
660
|
-
"theming",
|
|
661
|
-
"tailwind",
|
|
662
|
-
"semantic-tokens"
|
|
663
|
-
],
|
|
664
|
-
"description": "Design token architecture, component specs, and HTML slide generation",
|
|
665
|
-
"dependencies": [
|
|
666
|
-
"ui-ux-pro-max"
|
|
667
|
-
]
|
|
668
|
-
},
|
|
669
|
-
{
|
|
670
|
-
"name": "design",
|
|
671
|
-
"path": "skills/design/SKILL.md",
|
|
672
|
-
"tags": [
|
|
673
|
-
"design",
|
|
674
|
-
"logo",
|
|
675
|
-
"cip",
|
|
676
|
-
"icon",
|
|
677
|
-
"banner",
|
|
678
|
-
"slides",
|
|
679
|
-
"brand-identity",
|
|
680
|
-
"gemini"
|
|
681
|
-
],
|
|
682
|
-
"description": "Comprehensive design skill: logo, corporate identity, icons, banners, slides, and social media",
|
|
683
|
-
"dependencies": [
|
|
684
|
-
"ui-ux-pro-max"
|
|
685
|
-
]
|
|
686
|
-
},
|
|
687
|
-
{
|
|
688
|
-
"name": "brand",
|
|
689
|
-
"path": "skills/brand/SKILL.md",
|
|
690
|
-
"tags": [
|
|
691
|
-
"brand",
|
|
692
|
-
"identity",
|
|
693
|
-
"guidelines",
|
|
694
|
-
"logo",
|
|
695
|
-
"voice",
|
|
696
|
-
"typography",
|
|
697
|
-
"color-palette",
|
|
698
|
-
"messaging"
|
|
699
|
-
],
|
|
700
|
-
"description": "Brand identity management with guidelines, asset validation, and token sync",
|
|
701
|
-
"dependencies": []
|
|
702
|
-
},
|
|
703
|
-
{
|
|
704
|
-
"name": "agent-harness-construction",
|
|
705
|
-
"path": "skills/agent-harness-construction/SKILL.md",
|
|
706
|
-
"tags": ["agent", "tool-design", "action-space", "observation", "error-recovery", "context-budget"],
|
|
707
|
-
"description": "Design AI agent tool layers: action space, observation formatting, error recovery, context budgeting",
|
|
708
|
-
"dependencies": []
|
|
709
|
-
},
|
|
710
|
-
{
|
|
711
|
-
"name": "ai-first-engineering",
|
|
712
|
-
"path": "skills/ai-first-engineering/SKILL.md",
|
|
713
|
-
"tags": ["ai", "engineering", "process", "team", "code-review", "architecture"],
|
|
714
|
-
"description": "Engineering operating model for teams where AI agents generate significant implementation output",
|
|
715
|
-
"dependencies": []
|
|
716
|
-
},
|
|
717
|
-
{
|
|
718
|
-
"name": "ai-regression-testing",
|
|
719
|
-
"path": "skills/ai-regression-testing/SKILL.md",
|
|
720
|
-
"tags": ["testing", "regression", "ai", "sandbox", "vitest", "bug-prevention"],
|
|
721
|
-
"description": "Regression testing for AI-assisted development — catches blind spots where the model writes and reviews code",
|
|
722
|
-
"dependencies": ["testing"]
|
|
723
|
-
},
|
|
724
|
-
{
|
|
725
|
-
"name": "agentic-engineering",
|
|
726
|
-
"path": "skills/agentic-engineering/SKILL.md",
|
|
727
|
-
"tags": [
|
|
728
|
-
"agentic",
|
|
729
|
-
"eval",
|
|
730
|
-
"decomposition",
|
|
731
|
-
"model-routing",
|
|
732
|
-
"automation",
|
|
733
|
-
"agent"
|
|
734
|
-
],
|
|
735
|
-
"description": "Operate as an agentic engineer with eval-first execution and routing",
|
|
736
|
-
"dependencies": []
|
|
737
|
-
},
|
|
738
|
-
{
|
|
739
|
-
"name": "cost-aware-llm-pipeline",
|
|
740
|
-
"path": "skills/cost-aware-llm-pipeline/SKILL.md",
|
|
741
|
-
"tags": [
|
|
742
|
-
"llm",
|
|
743
|
-
"cost",
|
|
744
|
-
"model-routing",
|
|
745
|
-
"budget",
|
|
746
|
-
"caching",
|
|
747
|
-
"retry",
|
|
748
|
-
"optimization"
|
|
749
|
-
],
|
|
750
|
-
"description": "Cost optimization patterns for LLM API usage and model routing",
|
|
751
|
-
"dependencies": []
|
|
752
|
-
},
|
|
753
|
-
{
|
|
754
|
-
"name": "django-patterns",
|
|
755
|
-
"path": "skills/django-patterns/SKILL.md",
|
|
756
|
-
"tags": [
|
|
757
|
-
"django",
|
|
758
|
-
"python",
|
|
759
|
-
"drf",
|
|
760
|
-
"orm",
|
|
761
|
-
"caching",
|
|
762
|
-
"signals",
|
|
763
|
-
"middleware"
|
|
764
|
-
],
|
|
765
|
-
"description": "Django architecture patterns for scalable production applications",
|
|
766
|
-
"dependencies": []
|
|
767
|
-
},
|
|
768
|
-
{
|
|
769
|
-
"name": "golang-patterns",
|
|
770
|
-
"path": "skills/golang-patterns/SKILL.md",
|
|
771
|
-
"tags": [
|
|
772
|
-
"go",
|
|
773
|
-
"golang",
|
|
774
|
-
"concurrency",
|
|
775
|
-
"interfaces",
|
|
776
|
-
"error-handling",
|
|
777
|
-
"idiomatic"
|
|
778
|
-
],
|
|
779
|
-
"description": "Idiomatic Go patterns for robust and efficient applications",
|
|
780
|
-
"dependencies": []
|
|
781
|
-
},
|
|
782
|
-
{
|
|
783
|
-
"name": "kotlin-patterns",
|
|
784
|
-
"path": "skills/kotlin-patterns/SKILL.md",
|
|
785
|
-
"tags": [
|
|
786
|
-
"kotlin",
|
|
787
|
-
"coroutines",
|
|
788
|
-
"null-safety",
|
|
789
|
-
"dsl",
|
|
790
|
-
"gradle",
|
|
791
|
-
"jvm",
|
|
792
|
-
"idiomatic"
|
|
793
|
-
],
|
|
794
|
-
"description": "Idiomatic Kotlin patterns with coroutines, null safety, and DSL builders",
|
|
795
|
-
"dependencies": []
|
|
796
|
-
},
|
|
797
|
-
{
|
|
798
|
-
"name": "laravel-patterns",
|
|
799
|
-
"path": "skills/laravel-patterns/SKILL.md",
|
|
800
|
-
"tags": [
|
|
801
|
-
"laravel",
|
|
802
|
-
"php",
|
|
803
|
-
"eloquent",
|
|
804
|
-
"queues",
|
|
805
|
-
"events",
|
|
806
|
-
"caching",
|
|
807
|
-
"api-resources"
|
|
808
|
-
],
|
|
809
|
-
"description": "Laravel architecture patterns for scalable production applications",
|
|
810
|
-
"dependencies": []
|
|
811
|
-
},
|
|
812
|
-
{
|
|
813
|
-
"name": "prompt-optimizer",
|
|
814
|
-
"path": "skills/prompt-optimizer/SKILL.md",
|
|
815
|
-
"tags": [
|
|
816
|
-
"prompt",
|
|
817
|
-
"optimization",
|
|
818
|
-
"prompt-engineering",
|
|
819
|
-
"rewrite",
|
|
820
|
-
"advisory",
|
|
821
|
-
"llm"
|
|
822
|
-
],
|
|
823
|
-
"description": "Analyze and optimize prompts by matching ECC components and gaps",
|
|
824
|
-
"dependencies": []
|
|
825
|
-
},
|
|
826
|
-
{
|
|
827
|
-
"name": "python-patterns",
|
|
828
|
-
"path": "skills/python-patterns/SKILL.md",
|
|
829
|
-
"tags": [
|
|
830
|
-
"python",
|
|
831
|
-
"pep8",
|
|
832
|
-
"type-hints",
|
|
833
|
-
"idioms",
|
|
834
|
-
"packaging",
|
|
835
|
-
"best-practices"
|
|
836
|
-
],
|
|
837
|
-
"description": "Pythonic idioms, PEP 8 standards, and type hints for robust code",
|
|
838
|
-
"dependencies": []
|
|
839
|
-
},
|
|
840
|
-
{
|
|
841
|
-
"name": "pytorch-patterns",
|
|
842
|
-
"path": "skills/pytorch-patterns/SKILL.md",
|
|
843
|
-
"tags": [
|
|
844
|
-
"pytorch",
|
|
845
|
-
"deep-learning",
|
|
846
|
-
"training",
|
|
847
|
-
"gpu",
|
|
848
|
-
"model",
|
|
849
|
-
"data-loading",
|
|
850
|
-
"reproducibility"
|
|
851
|
-
],
|
|
852
|
-
"description": "PyTorch deep learning patterns for training pipelines and models",
|
|
853
|
-
"dependencies": []
|
|
854
|
-
},
|
|
855
|
-
{
|
|
856
|
-
"name": "rust-patterns",
|
|
857
|
-
"path": "skills/rust-patterns/SKILL.md",
|
|
858
|
-
"tags": [
|
|
859
|
-
"rust",
|
|
860
|
-
"ownership",
|
|
861
|
-
"traits",
|
|
862
|
-
"concurrency",
|
|
863
|
-
"error-handling",
|
|
864
|
-
"safety"
|
|
865
|
-
],
|
|
866
|
-
"description": "Idiomatic Rust patterns for safe and performant applications",
|
|
867
|
-
"dependencies": []
|
|
868
|
-
},
|
|
869
|
-
{
|
|
870
|
-
"name": "shopify",
|
|
871
|
-
"path": "skills/shopify/SKILL.md",
|
|
872
|
-
"tags": [
|
|
873
|
-
"shopify",
|
|
874
|
-
"ecommerce",
|
|
875
|
-
"graphql",
|
|
876
|
-
"liquid",
|
|
877
|
-
"polaris",
|
|
878
|
-
"extensions",
|
|
879
|
-
"checkout"
|
|
880
|
-
],
|
|
881
|
-
"description": "Build Shopify apps, extensions, and themes with GraphQL and Liquid",
|
|
882
|
-
"dependencies": []
|
|
883
|
-
},
|
|
884
|
-
{
|
|
885
|
-
"name": "springboot-patterns",
|
|
886
|
-
"path": "skills/springboot-patterns/SKILL.md",
|
|
887
|
-
"tags": [
|
|
888
|
-
"spring-boot",
|
|
889
|
-
"java",
|
|
890
|
-
"rest-api",
|
|
891
|
-
"jpa",
|
|
892
|
-
"caching",
|
|
893
|
-
"async",
|
|
894
|
-
"microservices"
|
|
895
|
-
],
|
|
896
|
-
"description": "Spring Boot architecture patterns for production-grade Java services",
|
|
897
|
-
"dependencies": []
|
|
898
|
-
},
|
|
899
|
-
{
|
|
900
|
-
"name": "swiftui-patterns",
|
|
901
|
-
"path": "skills/swiftui-patterns/SKILL.md",
|
|
902
|
-
"tags": [
|
|
903
|
-
"swiftui",
|
|
904
|
-
"ios",
|
|
905
|
-
"macos",
|
|
906
|
-
"state-management",
|
|
907
|
-
"navigation",
|
|
908
|
-
"observable",
|
|
909
|
-
"apple"
|
|
910
|
-
],
|
|
911
|
-
"description": "SwiftUI patterns for declarative, performant Apple platform UIs",
|
|
912
|
-
"dependencies": []
|
|
913
|
-
},
|
|
914
|
-
{
|
|
915
|
-
"name": "threejs",
|
|
916
|
-
"path": "skills/threejs/SKILL.md",
|
|
917
|
-
"tags": [
|
|
918
|
-
"threejs",
|
|
919
|
-
"3d",
|
|
920
|
-
"webgl",
|
|
921
|
-
"webgpu",
|
|
922
|
-
"animation",
|
|
923
|
-
"shaders",
|
|
924
|
-
"rendering"
|
|
925
|
-
],
|
|
926
|
-
"description": "Build immersive 3D web experiences with Three.js and WebGL/WebGPU",
|
|
927
|
-
"dependencies": []
|
|
928
|
-
},
|
|
929
|
-
{
|
|
930
|
-
"name": "vercel-deploy",
|
|
931
|
-
"path": "skills/vercel-deploy/SKILL.md",
|
|
932
|
-
"tags": [
|
|
933
|
-
"vercel",
|
|
934
|
-
"deploy",
|
|
935
|
-
"preview",
|
|
936
|
-
"hosting",
|
|
937
|
-
"serverless",
|
|
938
|
-
"framework-detection"
|
|
939
|
-
],
|
|
940
|
-
"description": "Deploy applications to Vercel instantly with preview URLs",
|
|
941
|
-
"dependencies": []
|
|
942
|
-
},
|
|
943
|
-
{
|
|
944
|
-
"name": "blueprint",
|
|
945
|
-
"path": "skills/blueprint/SKILL.md",
|
|
946
|
-
"tags": ["planning", "multi-session", "construction-plan", "adversarial-review", "parallel-steps"],
|
|
947
|
-
"description": "Turn a one-line objective into a self-contained multi-session construction plan with adversarial review gate",
|
|
948
|
-
"dependencies": ["planning"]
|
|
949
|
-
},
|
|
950
|
-
{
|
|
951
|
-
"name": "banner-design",
|
|
952
|
-
"path": "skills/banner-design/SKILL.md",
|
|
953
|
-
"tags": [
|
|
954
|
-
"banner",
|
|
955
|
-
"ads",
|
|
956
|
-
"social-media",
|
|
957
|
-
"web-banner",
|
|
958
|
-
"print",
|
|
959
|
-
"marketing",
|
|
960
|
-
"design"
|
|
961
|
-
],
|
|
962
|
-
"description": "Banner design for social media, ads, web, and print with 22 styles",
|
|
963
|
-
"dependencies": [
|
|
964
|
-
"design"
|
|
965
|
-
]
|
|
966
|
-
},
|
|
967
|
-
{
|
|
968
|
-
"name": "slides",
|
|
969
|
-
"path": "skills/slides/SKILL.md",
|
|
970
|
-
"tags": [
|
|
971
|
-
"slides",
|
|
972
|
-
"presentation",
|
|
973
|
-
"html",
|
|
974
|
-
"copywriting",
|
|
975
|
-
"layout",
|
|
976
|
-
"pitch-deck"
|
|
977
|
-
],
|
|
978
|
-
"description": "HTML presentation slides with copywriting formulas and layout patterns",
|
|
979
|
-
"dependencies": [
|
|
980
|
-
"design-system"
|
|
981
|
-
]
|
|
982
|
-
},
|
|
983
|
-
{
|
|
984
|
-
"name": "plan-preview",
|
|
985
|
-
"path": "skills/plan-preview/SKILL.md",
|
|
986
|
-
"tags": [
|
|
987
|
-
"preview",
|
|
988
|
-
"markdown",
|
|
989
|
-
"plans",
|
|
990
|
-
"server",
|
|
991
|
-
"documentation"
|
|
992
|
-
],
|
|
993
|
-
"description": "Preview markdown files with beautiful web interface and syntax highlighting",
|
|
994
|
-
"dependencies": []
|
|
995
|
-
},
|
|
996
|
-
{
|
|
997
|
-
"name": "repomix",
|
|
998
|
-
"path": "skills/repomix/SKILL.md",
|
|
999
|
-
"tags": [
|
|
1000
|
-
"repository",
|
|
1001
|
-
"packaging",
|
|
1002
|
-
"ai-context",
|
|
1003
|
-
"token-counting",
|
|
1004
|
-
"codebase"
|
|
1005
|
-
],
|
|
1006
|
-
"description": "Package repositories into AI-friendly files for LLM consumption",
|
|
1007
|
-
"dependencies": []
|
|
1008
|
-
},
|
|
1009
|
-
{
|
|
1010
|
-
"name": "chrome-devtools",
|
|
1011
|
-
"path": "skills/chrome-devtools/SKILL.md",
|
|
1012
|
-
"tags": [
|
|
1013
|
-
"browser",
|
|
1014
|
-
"automation",
|
|
1015
|
-
"puppeteer",
|
|
1016
|
-
"screenshots",
|
|
1017
|
-
"performance",
|
|
1018
|
-
"devtools"
|
|
1019
|
-
],
|
|
1020
|
-
"description": "Browser automation and performance analysis using Puppeteer CLI scripts",
|
|
1021
|
-
"dependencies": []
|
|
1022
|
-
},
|
|
1023
|
-
{
|
|
1024
|
-
"name": "web-design-guidelines",
|
|
1025
|
-
"path": "skills/web-design-guidelines/SKILL.md",
|
|
1026
|
-
"tags": [
|
|
1027
|
-
"ui",
|
|
1028
|
-
"ux",
|
|
1029
|
-
"accessibility",
|
|
1030
|
-
"guidelines",
|
|
1031
|
-
"compliance",
|
|
1032
|
-
"review"
|
|
1033
|
-
],
|
|
1034
|
-
"description": "Review UI code for Web Interface Guidelines compliance and accessibility",
|
|
1035
|
-
"dependencies": []
|
|
1036
|
-
},
|
|
1037
|
-
{
|
|
1038
|
-
"name": "docs-seeker",
|
|
1039
|
-
"path": "skills/docs-seeker/SKILL.md",
|
|
1040
|
-
"tags": [
|
|
1041
|
-
"documentation",
|
|
1042
|
-
"search",
|
|
1043
|
-
"llms-txt",
|
|
1044
|
-
"context7",
|
|
1045
|
-
"discovery"
|
|
1046
|
-
],
|
|
1047
|
-
"description": "Search technical documentation using llms.txt sources and context7.com",
|
|
1048
|
-
"dependencies": []
|
|
1049
|
-
},
|
|
1050
|
-
{
|
|
1051
|
-
"name": "skill-creator",
|
|
1052
|
-
"path": "skills/skill-creator/SKILL.md",
|
|
1053
|
-
"tags": [
|
|
1054
|
-
"skill",
|
|
1055
|
-
"creation",
|
|
1056
|
-
"template",
|
|
1057
|
-
"progressive-disclosure",
|
|
1058
|
-
"development"
|
|
1059
|
-
],
|
|
1060
|
-
"description": "Guide for creating effective skills that extend Claude capabilities",
|
|
1061
|
-
"dependencies": []
|
|
1062
|
-
},
|
|
1063
|
-
{
|
|
1064
|
-
"name": "safety-guard",
|
|
1065
|
-
"path": "skills/safety-guard/SKILL.md",
|
|
1066
|
-
"tags": ["safety", "autonomous", "hooks", "destructive-ops", "freeze", "guard"],
|
|
1067
|
-
"description": "Prevent destructive operations in autonomous agent runs — careful, freeze, and guard protection modes",
|
|
1068
|
-
"dependencies": []
|
|
1069
|
-
},
|
|
1070
|
-
{
|
|
1071
|
-
"name": "santa-method",
|
|
1072
|
-
"path": "skills/santa-method/SKILL.md",
|
|
1073
|
-
"tags": ["verification", "adversarial-review", "multi-agent", "quality", "hallucination", "dual-review"],
|
|
1074
|
-
"description": "Multi-agent adversarial verification — two independent reviewers must both pass before output ships",
|
|
1075
|
-
"dependencies": []
|
|
1076
|
-
}
|
|
1077
|
-
]
|
|
1078
|
-
}
|