-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmanifest.json
More file actions
689 lines (689 loc) · 40.4 KB
/
Copy pathmanifest.json
File metadata and controls
689 lines (689 loc) · 40.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
{
"version": "1.8.5",
"generated": "2026-08-12T05:39:30.367Z",
"skills": [
{
"name": "agy-cli",
"description": "Run Google's Antigravity CLI (`agy`) — an agentic coding assistant powered by Gemini 3 (with Claude/GPT model access). Use when the user says \"run/ask/use agy\", \"antigravity\", wants a second-opinion audit from Gemini's agentic stack, or wants Claude to delegate a build/refactor task with the three effort tiers: default chat (fast), `/grill-me` (interactive planning), or `/goal` (autonomous long-running execution). Ships a heartbeat-guarded runner (`agy_run.sh`) so headless `/goal` runs never blind-hang — it watches the agy log and kills stalls in ≤3m instead of waiting out a 45m timeout — plus a session preflight (`agy_preflight.sh`) for updates, model report, and config repair. Knows the real REPL slash commands, the headless `-p` flag, conversation resume, sandboxing, plugins, and the on-disk state layout under `~/.gemini/antigravity-cli/`.",
"path": ".claude/skills/agy-cli",
"files": 3,
"category": "devops"
},
{
"name": "aws-cli",
"description": "Safety-first AWS CLI v2 skill for full control of AWS from the terminal — EC2, S3, IAM, Lambda, RDS, DynamoDB, CloudFormation, Route 53, EKS/ECS, logs, billing & 300+ services. Classifies every command by risk tier via a deterministic classifier script and gates destructive/breaking/cost-incurring ops behind AskUserQuestion confirmation. Account/region/profile preflight prevents wrong-account accidents. Use when running, planning, or debugging any `aws` command.",
"path": ".claude/skills/aws-cli",
"files": 6,
"category": "devops",
"author": "George Khananaev"
},
{
"name": "better-auth",
"description": "Better Auth integration guide for TypeScript/JavaScript authentication. Covers server/client configuration, database adapters, session management, plugins, OAuth, and scaffolding auth from scratch. Use when setting up authentication with Better Auth, configuring auth.ts, adding OAuth providers, or creating sign-in/sign-up flows.",
"path": ".claude/skills/better-auth",
"files": 3,
"category": "security"
},
{
"name": "brainstorm",
"description": "Transform ideas into fully-formed designs through collaborative dialogue. This skill should be used when brainstorming features, exploring implementation approaches, designing system architecture, or when the user has a vague idea that needs refinement. Uses incremental validation with 200-300 word sections.",
"path": ".claude/skills/brainstorm",
"files": 1,
"category": "productivity"
},
{
"name": "claude-seo",
"description": "SEO toolkit with 24 specialist sub-skills (upstream v2.0) — full site audits, technical SEO, content optimization & briefs, schema markup, sitemaps, image SEO, hreflang, local/maps SEO, backlinks, topic clustering, SERP experience (SXO), drift monitoring, Google APIs (GSC/PageSpeed/CrUX), e-commerce, programmatic SEO, and GEO for AI Overviews/ChatGPT/Perplexity. Use when auditing websites, optimizing pages or content, tracking SEO regressions, or planning SEO strategy.",
"path": ".claude/skills/claude-seo",
"files": 81,
"category": "productivity",
"source": "https://github.com/AgriciDaniel/claude-seo"
},
{
"name": "code-quality",
"description": "Multi-language code quality standards and review for TypeScript, Python, Go, and Rust. Enforces type safety, security, performance, and maintainability. Use when writing, reviewing, or refactoring code. Includes review process, checklist, and Python PEP 8 deep-dive.",
"path": ".claude/skills/code-quality",
"files": 24,
"category": "security",
"author": "George Khananaev"
},
{
"name": "codex-cli",
"description": "Run OpenAI Codex CLI for coding tasks, implementation, reviews, and second-opinion audits with mandatory task-based routing across GPT-5.6-or-newer models. Use when a user asks to run, ask, or use Codex; says \"codex prompt\"; wants a Codex code/logic/plan audit; or wants Claude to delegate work to OpenAI models. Inspect the live Codex model catalog, explicitly pin an eligible model and reasoning effort on every invocation, route clear high-volume work to Luna, everyday work to Terra, and difficult or high-value work to Sol. Use Sol with max reasoning for plan audits. Never invoke or fall back to GPT-5.5, GPT-5.4, GPT-5.3-Codex-Spark, OSS, or any model older than GPT-5.6.",
"path": ".claude/skills/codex-cli",
"files": 1,
"category": "devops"
},
{
"name": "color-accessibility-audit",
"description": "Analyze color combinations for readability and accessibility compliance per WCAG 2.1/2.2 standards (Contrast Minimums 1.4.3 and Enhanced Contrast 1.4.6). Use this skill whenever the user shares a design, color palette, CSS, HTML, Tailwind config, theme file, screenshot of a UI, or mentions anything about text being hard to read, colors clashing, poor contrast, accessibility compliance (WCAG), or asks \"can you check if these colors work together?\" Also trigger when reviewing any frontend code, design tokens, or style sheets — even if the user doesn't explicitly ask about contrast. If colors are involved, check them. Covers: hex codes, RGB, HSL, named CSS colors, Tailwind classes, design tool exports, and UI screenshots. Includes color blindness simulation for Protanopia, Deuteranopia, and Tritanopia.",
"path": ".claude/skills/color-accessibility-audit",
"files": 10,
"category": "frontend"
},
{
"name": "data-wrangler",
"description": "Production-grade tabular data manipulation using pandas & openpyxl. This skill should be used when editing, creating, filtering, sorting, merging, pivoting, deduplicating, validating, or transforming CSV, Excel (xlsx/xls), JSON, Parquet, or TSV files. Supports 18 operations via CLI scripts, advanced Excel formatting (multi-sheet, freeze, auto-filter, validation, styling), and file-converter integration for format pipelines.",
"path": ".claude/skills/data-wrangler",
"files": 4,
"category": "devops",
"author": "George Khananaev"
},
{
"name": "doc-navigator",
"description": "Efficiently navigate codebase documentation during Research phase. Use instead of Grep/Glob for finding architectural decisions, feature specs, and technical docs. Maps topics to doc locations for fast context retrieval. If codebase lacks documentation structure, provides patterns to establish one.",
"path": ".claude/skills/doc-navigator",
"files": 6,
"category": "productivity"
},
{
"name": "domain-checker",
"description": "Bulk domain availability checker. Use when the user wants to check whether one or many domain names are available for registration (e.g., \"is acme.com free\", \"check these 50 domains\", \"find an available .io for my brand\"). Supports any TLD (.com/.net/.io/.ai/.dev/.app/...), parallel checking, three input modes (CLI args / file / stdin), bare-name + TLD-list expansion, and table/JSON/CSV output. Python stdlib only — no pip installs, no API keys.",
"path": ".claude/skills/domain-checker",
"files": 3,
"category": "backend",
"author": "George Khananaev"
},
{
"name": "fastapi-senior-dev",
"description": "Senior Python Backend Engineer skill for FastAPI. Use when scaffolding production-ready APIs, enforcing clean architecture, optimizing async patterns, or auditing FastAPI codebases.",
"path": ".claude/skills/fastapi-senior-dev",
"files": 16,
"category": "backend",
"author": "George Khananaev"
},
{
"name": "file-converter",
"description": "Convert & transform files - images (resize, format, HEIC), markdown (PDF/HTML), data (CSV/JSON/YAML/TOML/XML), SVG, base64, text encoding. Cross-platform, single & batch mode. This skill should be used when converting file formats, resizing images, generating PDFs from markdown, or transforming data between formats.",
"path": ".claude/skills/file-converter",
"files": 19,
"category": "productivity",
"author": "George Khananaev"
},
{
"name": "firebase-cli",
"description": "Safety-first Firebase CLI (firebase-tools v15) skill for full project control — deploy, Hosting (sites/channels/rollback), Cloud Functions (+secrets), Firestore (databases/indexes/backups/delete), Realtime Database, Auth import/export, Remote Config, App Distribution, App Hosting, Extensions, Data Connect, Emulator Suite & MCP server. Classifies every command by risk tier via a deterministic classifier script and gates destructive/irreversible/cost-incurring ops behind AskUserQuestion confirmation; enforces the --non-interactive/--force contract so nothing hangs and nothing is auto-confirmed. Wrong-project preflight prevents deploying to prod by accident. Ships a 3-level self-test (static classifier battery, live read-only, guarded live-write w/ cleanup). Use when running, planning, or debugging any `firebase` command.",
"path": ".claude/skills/firebase-cli",
"files": 8,
"category": "security",
"author": "George Khananaev"
},
{
"name": "firecrawl",
"description": "Search, scrape, and interact with the web via the Firecrawl CLI. Use this skill whenever the user wants to search the web, find articles, research a topic, look something up online, scrape a webpage, grab content from a URL, get data from a website, crawl documentation, download a site, or interact with pages that need clicks or logins. Also use when they say \"fetch this page\", \"pull the content from\", \"get the page at https://\", or reference external websites. This provides real-time web search with full page content and interact capabilities — beyond what Claude can do natively with built-in tools. Do NOT trigger for local file operations, git commands, deployments, or code editing tasks.",
"path": ".claude/skills/firecrawl-cli",
"files": 3,
"category": "devops"
},
{
"name": "frontend-design",
"description": "Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",
"path": ".claude/skills/frontend-design",
"files": 1,
"category": "frontend"
},
{
"name": "gemini-cli",
"description": "Run Gemini CLI for AI queries. Use when user asks to \"run/ask/use gemini\", compare Claude vs Gemini, or delegate tasks to Gemini.",
"path": ".claude/skills/gemini-cli",
"files": 1,
"category": "devops"
},
{
"name": "github-cli",
"description": "Safety-first GitHub CLI skill wrapping `gh` (v2.86+). Use when performing GitHub operations — PRs, issues, releases, repos, Actions, API calls. Enforces risk classification with mandatory confirmation for destructive/forbidden operations.",
"path": ".claude/skills/github-cli",
"files": 2,
"category": "backend",
"author": "George Khananaev"
},
{
"name": "materialreacttable-mastery",
"description": "Material React Table V3 expert skill. Use when building feature-rich data tables w/ MUI styling, server-side ops, CRUD editing, virtualization, or complex filtering/sorting.",
"path": ".claude/skills/materialreacttable-mastery",
"files": 14,
"category": "frontend",
"author": "George Khananaev"
},
{
"name": "mcp-builder",
"description": "Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).",
"path": ".claude/skills/mcp-builder",
"files": 12,
"category": "ai"
},
{
"name": "mermaid-diagram",
"description": "Generate beautiful Mermaid diagrams — flowcharts, sequence, ER, class, state, pie, gantt, mindmap, timeline, gitgraph, C4, kanban, block, quadrant, sankey, XY charts. Renders to PNG locally and Markdown for GitHub. Use when the user asks for diagrams, visualizations, schemas, flowcharts, architecture overviews, database schemas, API flows, project timelines, git branching strategies, org charts, or any visual representation of systems, workflows, or data.",
"path": ".claude/skills/mermaid-diagram",
"files": 1,
"category": "backend",
"author": "George Khananaev"
},
{
"name": "monday-com",
"description": "\"Monday.com workspace management via official MCP server. This skill should be used when creating, updating, moving, archiving, or deleting items/boards/groups on Monday.com, managing columns, adding comments, or querying workspace data. Supports both hosted and local MCP deployment with interactive setup guidance.\"",
"path": ".claude/skills/monday-com",
"files": 5,
"category": "ai"
},
{
"name": "mongodb-atlas-cli",
"description": "Comprehensive MongoDB Atlas + mongosh skill for performance auditing, all index types (b-tree/text/2dsphere/hashed/TTL/partial/wildcard/Atlas-Search/Vector-Search), Performance Advisor analysis, query explain, schema advice, backup status, alerts, week-over-week diffs, and additive index creation. Read-only by default; create-index ops gated behind explicit `--confirm`. Hard-blocks any destructive op (delete, drop, restore, pause, terminate, kill, dbuser write, network change). Works against Atlas Cloud (full feature set) and self-hosted/local mongo (mongosh-based subset).",
"path": ".claude/skills/mongodb-atlas-cli",
"files": 32,
"category": "backend"
},
{
"name": "multi-agent-patterns",
"description": "\"Master orchestrator, peer-to-peer, and hierarchical multi-agent architectures\"",
"path": ".claude/skills/multi-agent-patterns",
"files": 1,
"category": "ai",
"source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/multi-agent-patterns",
"risk": "safe"
},
{
"name": "n8n-cli",
"description": "Safety-first n8n management skill — list/inspect workflows, executions, credentials, tags, projects, variables, source-control status; trigger runs (CLI/webhook); activate/deactivate; backup/restore; audit; diff. Two backends auto-detect: REST API (cloud + remote self-hosted, urllib stdlib) & `n8n` CLI (self-hosted only, full surface incl. encrypted/decrypted credential export). Read-only by default; mutations require `--confirm` + dry-run preview. Hard-blocks 14 destructive CLI prefixes (delete, reset, encryption-key, executionData, user-management role changes, mfa, ldap, db ops, license) and 22 DELETE/PUT/PATCH/POST API endpoints (workflows/credentials/executions/users/tags/variables/projects/source-control/license). CLI refusal guard uses flag-stripping + chain matching to block bypasses. URL paths validated against `/api/v1/` allowlist + traversal-resistant. Resource IDs regex-validated before URL interpolation. API key redacted from error output; HTTPS warning on http://. Decrypted credential export double-gated (--decrypted + --confirm-secrets). Output paths sanitized. n8n REST API uses `/activate`+`/deactivate` for both 1.x & 2.x — public API has no `run` endpoint, so trigger_workflow is CLI-only w/ webhook URL helper. Faster than n8n MCP for bulk reads, backups, exports, diffs, CI/cron; complements MCP which is better for workflow authoring.",
"path": ".claude/skills/n8n-cli",
"files": 29,
"category": "backend"
},
{
"name": "natural-language",
"description": "Shapes how every reply to the user gets written - plain everyday words instead of corporate or AI-sounding phrasing, real sentences instead of bullet-heavy formatting, no forced dash punctuation, and at most a rare bit of dry humor when it genuinely fits. Use this for every conversational response written to the user in this project, not only on special request - check it before replying, the same way a person reads over their own message before hitting send.",
"path": ".claude/skills/natural-language",
"files": 1,
"category": "productivity"
},
{
"name": "neon-postgres-agent-platforms",
"description": "Build and operate multi-tenant AI agent platforms on Neon. Use this skill whenever the user is designing an agent/app builder, provisioning a Neon project or database per user/app/agent run, managing thousands of tenant projects, separating sponsored free users from paid customers, moving projects between orgs, choosing personal vs organization vs project-scoped API keys, tracking fleet consumption or Agent Plan costs, creating compound checkpoints that combine DB snapshots with source revisions/secrets/deploy metadata, or orchestrating snapshot/restore flows for generated apps. Also use it for Neon Agent Program, Agent Plan, org/project limits, HIPAA, co-marketing, support, or neondatabase/neon-for-agent-platforms examples.",
"path": ".claude/skills/neon-postgres-agent-platforms",
"files": 27,
"category": "backend",
"source": "https://github.com/neondatabase/neon-for-agent-platforms"
},
{
"name": "next-cache-components",
"description": "Next.js 16 Cache Components - PPR, use cache directive, cacheLife, cacheTag, updateTag",
"path": ".claude/skills/next-cache-components",
"files": 1,
"category": "frontend"
},
{
"name": "next-upgrade",
"description": "Upgrade Next.js to the latest version following official migration guides and codemods",
"path": ".claude/skills/next-upgrade",
"files": 1,
"category": "frontend"
},
{
"name": "nextjs-senior-dev",
"description": "Senior Next.js 15+/16 Engineer skill for App Router. Use when scaffolding production apps, enforcing RSC patterns, auditing codebases, or optimizing performance.",
"path": ".claude/skills/nextjs-senior-dev",
"files": 35,
"category": "frontend",
"author": "George Khananaev"
},
{
"name": "notebooklm",
"description": "Use this skill to query your Google NotebookLM notebooks directly from Claude Code for source-grounded, citation-backed answers from Gemini. Browser automation, library management, persistent auth. Drastically reduced hallucinations through document-only responses.",
"path": ".claude/skills/notebooklm-skill",
"files": 4,
"category": "security"
},
{
"name": "obsidian-skills",
"description": "Obsidian vault management — CLI operations, Markdown extensions, JSON Canvas, Bases databases, and Defuddle content extraction. Use when interacting with Obsidian vaults, managing notes, searching content, or developing plugins.",
"path": ".claude/skills/obsidian-skills",
"files": 11,
"category": "devops",
"source": "https://github.com/kepano/obsidian-skills"
},
{
"name": "owasp-security",
"description": "Use when reviewing code for security vulnerabilities, implementing authentication/authorization, handling user input, or discussing web application security. Covers OWASP Top 10:2025, ASVS 5.0, and Agentic AI security (2026).",
"path": ".claude/skills/owasp-security",
"files": 1,
"category": "security"
},
{
"name": "parallel-agents",
"description": "Multi-agent orchestration patterns. Use when multiple independent tasks can run w/ different domain expertise or when comprehensive analysis requires multiple perspectives.",
"path": ".claude/skills/parallel-agents",
"files": 1,
"category": "ai"
},
{
"name": "plan-to-tdd",
"description": "Transform feature plans into test-driven implementation using Outside-In methodology. This skill should be used when converting documented plans from docs/plan/ into testable code w/ proper test structure (Unit, Integration, E2E).",
"path": ".claude/skills/plan-to-tdd",
"files": 3,
"category": "testing"
},
{
"name": "planning-with-files",
"description": "Implements Manus-style file-based planning to organize and track progress on complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when asked to plan out, break down, or organize a multi-step project, research task, or any work requiring 5+ tool calls. Supports automatic session recovery after /clear.",
"path": ".claude/skills/planning-with-files",
"files": 17,
"category": "productivity",
"invocable": true
},
{
"name": "project-change-log",
"description": "Maintain a CHANGELOG.md following the Keep a Changelog standard. Use after commits, on /commit, when the user asks to update the changelog, or when releasing a version — maps conventional-commit types to Added/Changed/Fixed/Security categories. Archives old releases into per-major files (changelog/CHANGELOG-1.x.md) so the main file stays small no matter how many versions accumulate.",
"path": ".claude/skills/project-change-log",
"files": 3,
"category": "security"
},
{
"name": "pydantic-model",
"description": "Pydantic v2 model patterns for req/res validation, MongoDB conversion, validation rules. Travel Panel conventions.",
"path": ".claude/skills/pydantic-model",
"files": 1,
"category": "backend"
},
{
"name": "react-best-practices",
"description": "React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.",
"path": ".claude/skills/react-best-practices",
"files": 74,
"category": "frontend"
},
{
"name": "salesforce-cli",
"description": "Safety-first Salesforce CLI skill wrapping `sf` (v2). This skill should be used when performing Salesforce operations — SOQL/SOSL queries, metadata deploy/retrieve, data import/export, Apex execution, org management, auth, and platform events. Enforces risk classification w/ mandatory confirmation for all write/destructive operations. Integrates w/ Salesforce MCP servers and file-converter skill for format conversion.",
"path": ".claude/skills/salesforce-cli",
"files": 10,
"category": "security",
"author": "George Khananaev"
},
{
"name": "semantic-coding",
"description": "Replace hardcoded styles with semantic design tokens (colors, typography, spacing, sizing) across a codebase. Use when refactoring inline hex colors/px values to a design system, migrating to CSS variables or Tailwind theme tokens, or enforcing token consistency.",
"path": ".claude/skills/semantic-coding",
"files": 2,
"category": "frontend"
},
{
"name": "senior-backend",
"description": "This skill should be used when the user asks to \"design REST APIs\", \"optimize database queries\", \"implement authentication\", \"build microservices\", \"review backend code\", \"set up GraphQL\", \"handle database migrations\", or \"load test APIs\". Use for Node.js/Express/Fastify development, PostgreSQL optimization, API security, and backend architecture patterns.",
"path": ".claude/skills/senior-backend",
"files": 7,
"category": "security"
},
{
"name": "skill-creator",
"description": "Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.",
"path": ".claude/skills/skill-creator",
"files": 8,
"category": "productivity"
},
{
"name": "stripe-best-practices",
"description": "Guides Stripe integration decisions — API selection (Checkout Sessions vs PaymentIntents), Connect platform setup (Accounts v2, controller properties), billing/subscriptions, Treasury financial accounts, integration surfaces (Checkout, Payment Element), migrating from deprecated Stripe APIs, and security best practices (API key management, restricted keys, webhooks, OAuth). Use when building, modifying, or reviewing any Stripe integration — including accepting payments, building marketplaces, integrating Stripe, processing payments, setting up subscriptions, creating connected accounts, or implementing secure key handling.",
"path": ".claude/skills/stripe-best-practices",
"files": 7,
"category": "security"
},
{
"name": "supabase-cli",
"description": "CLI automation for Supabase development workflows. Provides scripts for migrations, Edge Functions, secrets management, type generation, and SQL execution with safety checks.",
"path": ".claude/skills/supabase-cli",
"files": 17,
"category": "backend"
},
{
"name": "swift-concurrency-6-2",
"description": "Swift 6.2 Approachable Concurrency — single-threaded by default, @concurrent for explicit background offloading, isolated conformances for main actor types.",
"path": ".claude/skills/swift-concurrency6.2",
"files": 1,
"category": "mobile"
},
{
"name": "swiftui-patterns",
"description": "SwiftUI architecture patterns, state management with @Observable, view composition, navigation, performance optimization, and modern iOS/macOS UI best practices.",
"path": ".claude/skills/swiftui-patterns",
"files": 1,
"category": "mobile"
},
{
"name": "system-architect",
"description": "System architecture skill for designing scalable, maintainable software systems. Covers microservices/monolith decisions, API design, DB selection, caching, security, and scalability planning.",
"path": ".claude/skills/system-architect",
"files": 3,
"category": "security"
},
{
"name": "terraform",
"description": "Terraform infrastructure-as-code skills from HashiCorp. Covers HCL code generation with style conventions, testing with .tftest.hcl files, and module refactoring. Use when writing, reviewing, generating, or refactoring Terraform configurations, creating tests, or designing modules.",
"path": ".claude/skills/terraform",
"files": 4,
"category": "devops"
},
{
"name": "test-levels",
"description": "This skill explains the 3 test levels (Unit, Integration, E2E) using the \"Building a Car\" analogy and provides guidance on when to use each type. Includes project-specific Playwright examples.",
"path": ".claude/skills/test-levels",
"files": 1,
"category": "testing"
},
{
"name": "testing-automation-expert",
"description": "Production-grade testing strategies for robust, maintainable systems. Covers unit/integration/E2E testing, contract testing, accessibility, mutation testing, and CI/CD patterns. Supports Python (pytest) and TypeScript (Jest/Vitest/Playwright).",
"path": ".claude/skills/testing-automation-expert",
"files": 6,
"category": "testing",
"author": "George Khananaev"
},
{
"name": "token-optimizer",
"description": "Reduce token count in prompts, docs, and prose. Covers prompt compression (40-60% savings), doc formatting, TOON data serialization, and Strunk's prose clarity rules. Use when compressing prompts, optimizing docs for LLM context, or writing clear technical prose.",
"path": ".claude/skills/token-optimizer",
"files": 5,
"category": "ai",
"author": "George Khananaev"
},
{
"name": "trailofbits-security",
"description": "Security-focused static analysis and code auditing skills from Trail of Bits. Includes CodeQL deep analysis, Semgrep scanning, and SARIF result processing. Use when performing security audits, running static analysis, scanning for vulnerabilities, or processing scan results.",
"path": ".claude/skills/trailofbits-security",
"files": 4,
"category": "security"
},
{
"name": "ui-ux-pro-max",
"description": "\"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 9 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient. Integrations: shadcn/ui MCP for component search and examples.\"",
"path": ".claude/skills/ui-ux-pro-max",
"files": 27,
"category": "mobile"
},
{
"name": "uiux-toolkit",
"description": "Comprehensive UX/UI evaluation meta-skill combining design theory and UX methodology. Use when conducting UI/UX audits, visual design reviews, accessibility compliance (WCAG 2.2), user flow analysis, responsive testing, interaction design evaluation, or design system audits. Evaluates using Nielsen's heuristics, Gestalt principles, typography theory, color theory, and modern methodologies (OOUX, JTBD, Cognitive Walkthrough).",
"path": ".claude/skills/uiux-toolkit",
"files": 17,
"category": "frontend"
},
{
"name": "upgrade-packages-js",
"description": "Safely upgrade JavaScript packages with breaking change detection, migration guidance, and automated code migrations (npm/pnpm/yarn). Cross-platform with git safety branch enforcement.",
"path": ".claude/skills/upgrade-packages-js",
"files": 2,
"category": "devops",
"author": "Palakorn V. <palakorn@me.com>"
},
{
"name": "vercel-cli",
"description": "Safety-first Vercel CLI (`vercel`/`vc`) skill to fully manage projects from the terminal — deploys, env vars, domains, DNS, certs, projects, teams, logs, rollbacks, promotions, firewall, and `vercel api`. Classifies each command by risk tier and gates destructive/forbidden ops behind confirmation. Self-heals via embedded doc URIs.",
"path": ".claude/skills/vercel-cli",
"files": 3,
"category": "backend",
"author": "George Khananaev"
},
{
"name": "vercel-composition-patterns",
"description": "React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.",
"path": ".claude/skills/composition-patterns",
"files": 2,
"category": "backend"
},
{
"name": "vercel-react-native-skills",
"description": "React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.",
"path": ".claude/skills/vercel-react-native-skills",
"files": 38,
"category": "mobile"
},
{
"name": "web-quality",
"description": "Web quality optimization skills based on Google Lighthouse guidelines and Core Web Vitals. Use when asked to audit web quality, optimize performance, improve accessibility, fix SEO, apply best practices, or analyze Core Web Vitals (LCP, INP, CLS).",
"path": ".claude/skills/web-quality",
"files": 7,
"category": "productivity"
},
{
"name": "webapp-testing",
"description": "Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.",
"path": ".claude/skills/webapp-testing",
"files": 1,
"category": "frontend"
}
],
"commands": [
{
"name": "create-skill",
"description": "Create production-ready skills w/ validation, testing & optimization.",
"path": ".claude/commands/create-skill.md"
},
{
"name": "db-migrate",
"description": "You are a database migration expert specializing in zero-downtime deployments, data integrity, and multi-database environments.",
"path": ".claude/commands/db-migrate.md"
},
{
"name": "doc-generate",
"description": "You are a documentation expert specializing in creating comprehensive, maintainable documentation from code.",
"path": ".claude/commands/doc-generate.md"
},
{
"name": "docker-optimize",
"description": "You are a Docker optimization expert specializing in creating efficient, secure, and minimal container images.",
"path": ".claude/commands/docker-optimize.md"
},
{
"name": "find-name",
"description": "Generate short brand-name candidates, score each (length, memorability, brandability, cross-language safety, spelling clarity), check domain availability across multiple TLDs, and emit a ranked CSV containing ONLY names whose domains are actually available. Iterates generation until enough names pass the availability filter.",
"path": ".claude/commands/find-company-name.md"
},
{
"name": "git-commit",
"description": "Safe, attributed git commit for the configured git user.",
"path": ".claude/commands/git-commit.md"
},
{
"name": "git-npm-release",
"description": "Create a versioned release — bump CHANGELOG, regenerate manifest, commit, push, tag, and trigger npm publish via GitHub Actions.",
"path": ".claude/commands/git-npm-release.md"
},
{
"name": "git-push",
"description": "Safe git push with pre-push checks, commit integration, and changelog versioning.",
"path": ".claude/commands/git-push.md"
},
{
"name": "k8s-manifest",
"description": "You are a Kubernetes expert specializing in creating production-ready manifests, Helm charts, and cloud-native deployment configurations.",
"path": ".claude/commands/k8s-manifest.md"
},
{
"name": "plan-feature",
"description": "Production-grade feature planning with dual-AI validation (Claude + Antigravity/Gemini 3 via `agy`)",
"path": ".claude/commands/plan-feature.md"
},
{
"name": "pr",
"description": "Prepare GitHub Pull Request with essential details",
"path": ".claude/commands/create-pr.md"
},
{
"name": "review-pr",
"description": "Review PR for skills/commands/MCP - validates docs, quality, formatting",
"path": ".claude/commands/git-review-pr.md"
}
],
"mcp_servers": [
{
"name": "airtable",
"description": "Spreadsheet and database platform integration.",
"path": "mcp-servers/airtable"
},
{
"name": "atlassian",
"description": "Jira and Confluence integration for project management and documentation.",
"path": "mcp-servers/atlassian"
},
{
"name": "aws",
"description": "Official AWS MCP servers from AWS Labs - 64+ servers for AWS service integration.",
"path": "mcp-servers/aws"
},
{
"name": "canva",
"description": "Design platform integration for Canva.",
"path": "mcp-servers/canva"
},
{
"name": "chrome-devtools",
"description": "Chrome DevTools for coding agents - enables browser automation, performance analysis, and debugging capabilities.",
"path": "mcp-servers/chrome-devtools"
},
{
"name": "cloudflare",
"description": "Managed remote MCP servers for Cloudflare services.",
"path": "mcp-servers/cloudflare"
},
{
"name": "codex",
"description": "Integration with OpenAI's advanced Codex models for enhanced coding capabilities.",
"path": "mcp-servers/codex"
},
{
"name": "context7",
"description": "Resolve library IDs and fetch up-to-date documentation for libraries and frameworks.",
"path": "mcp-servers/context7"
},
{
"name": "everything",
"description": "Reference/test server demonstrating MCP capabilities with prompts, resources, and tools.",
"path": "mcp-servers/everything"
},
{
"name": "fetch",
"description": "Web content fetching and conversion optimized for LLM consumption.",
"path": "mcp-servers/fetch"
},
{
"name": "figma",
"description": "Access and inspect Figma designs directly from Claude.",
"path": "mcp-servers/figma"
},
{
"name": "filesystem",
"description": "Secure file operations with configurable access controls.",
"path": "mcp-servers/filesystem"
},
{
"name": "gcp",
"description": "Google Cloud Platform integration for managing GCP services.",
"path": "mcp-servers/gcp"
},
{
"name": "git",
"description": "Tools to read, search, and manipulate Git repositories.",
"path": "mcp-servers/git"
},
{
"name": "github",
"description": "Official GitHub MCP server for AI-powered repository management, issues, PRs, and workflows.",
"path": "mcp-servers/github"
},
{
"name": "kubernetes",
"description": "Manage Kubernetes clusters, pods, and deployments.",
"path": "mcp-servers/kubernetes"
},
{
"name": "linear",
"description": "Issue tracking and project management integration with Linear.",
"path": "mcp-servers/linear"
},
{
"name": "memory",
"description": "Knowledge graph-based persistent memory system for LLMs.",
"path": "mcp-servers/memory"
},
{
"name": "monday",
"description": "AI agent integration with the monday.com work operating system.",
"path": "mcp-servers/monday"
},
{
"name": "mui",
"description": "Access MUI component documentation, API references, and code snippets.",
"path": "mcp-servers/mui"
},
{
"name": "netlify",
"description": "Site deployment and management for Netlify platform.",
"path": "mcp-servers/netlify"
},
{
"name": "nextjs",
"description": "Real-time integration with Next.js development server for AI-powered debugging, error detection, and application insights.",
"path": "mcp-servers/nextjs"
},
{
"name": "notion",
"description": "Read, search, and update Notion pages and databases.",
"path": "mcp-servers/notion"
},
{
"name": "playwright",
"description": "Browser automation using Playwright's accessibility tree for fast, deterministic interactions.",
"path": "mcp-servers/playwright"
},
{
"name": "posthog",
"description": "Product analytics and observability platform integration.",
"path": "mcp-servers/posthog"
},
{
"name": "puppeteer",
"description": "Browser automation for web scraping, testing, and workflow automation.",
"path": "mcp-servers/puppeteer"
},
{
"name": "sdk-references",
"description": "Official SDKs for building Model Context Protocol servers and clients.",
"path": "mcp-servers/sdk-references"
},
{
"name": "sentry",
"description": "Error tracking and performance monitoring integration.",
"path": "mcp-servers/sentry"
},
{
"name": "sequential-thinking",
"description": "Dynamic and reflective problem-solving through thought sequences.",
"path": "mcp-servers/sequential-thinking"
},
{
"name": "slack",
"description": "Channel management and messaging capabilities for Slack workspaces.",
"path": "mcp-servers/slack"
},
{
"name": "sqlite",
"description": "Local SQLite database file access with schema inspection.",
"path": "mcp-servers/sqlite"
},
{
"name": "stripe",
"description": "Payments integration for handling payments, managing customers, and accessing payment data.",
"path": "mcp-servers/stripe"
},
{
"name": "time",
"description": "Time and timezone conversion capabilities.",
"path": "mcp-servers/time"
},
{
"name": "vercel",
"description": "Deployment platform integration for managing Vercel projects and deployments.",
"path": "mcp-servers/vercel"
}
]
}