-
-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathregistry.json
More file actions
5429 lines (5429 loc) · 206 KB
/
Copy pathregistry.json
File metadata and controls
5429 lines (5429 loc) · 206 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
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"schema_version": "1.0.0",
"generated_at": "2026-07-21T13:25:20+00:00",
"repository": "claude-skills",
"skill_count": 368,
"domain_count": 20,
"domains": [
"business-growth",
"business-operations",
"c-level-advisor",
"data-analytics",
"documents",
"engineering",
"finance",
"hr-operations",
"legal",
"markdown-html",
"marketing",
"personal-productivity",
"product-team",
"project-management",
"ra-qm-team",
"research",
"research-ops",
"sales-success",
"vertical-advisors",
"workflow"
],
"skills": [
{
"name": "a11y-audit",
"domain": "engineering",
"description": "This skill should be used when the user asks to \"check accessibility\", \"audit WCAG compliance\", \"scan HTML for a11y issues\", \"check color contrast\", or \"find accessibility violations in web pages\".",
"tags": [
"accessibility",
"a11y",
"wcag",
"contrast",
"html"
],
"version": "1.0.0",
"updated": "2026-04-02",
"path": "engineering/a11y-audit",
"has_scripts": true,
"has_references": true
},
{
"name": "agent-designer",
"domain": "engineering",
"description": "Designs multi-agent system architectures with orchestration patterns, tool schemas, and performance evaluation. Use when building AI agent systems, designing agent workflows, creating tool schemas, or evaluating agent performance.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/agent-designer",
"has_scripts": false,
"has_references": true
},
{
"name": "agent-harness",
"domain": "engineering",
"description": "Test and evaluation harness for AI agents — scenario suites, deterministic replay, regression diffing, cost and latency budgets. Use when agent quality is vibe-checked, before shipping a prompt or model change, or when evals drift.",
"tags": [
"agent-eval",
"regression-testing",
"harness",
"replay",
"llm-testing"
],
"version": "1.0.0",
"updated": "2026-07-21",
"path": "engineering/agent-harness",
"has_scripts": true,
"has_references": true
},
{
"name": "agent-protocol",
"domain": "engineering",
"description": "Design AI agent communication protocols: MCP tool schemas, A2A, function calling, and inter- agent messaging. Use when building multi-agent systems, defining tool interfaces, or implementing agent-to-agent communication.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-15",
"path": "engineering/agent-protocol",
"has_scripts": true,
"has_references": true
},
{
"name": "agent-workflow-designer",
"domain": "engineering",
"description": "Design multi-agent orchestration with workflow DAGs, routing, handoff protocols, and state management. Use when building pipelines of specialized agents, designing fan-out/fan-in patterns, or implementing fault-tolerant workflows.",
"tags": [],
"version": "1.2.0",
"updated": "2026-06-29",
"path": "engineering/agent-workflow-designer",
"has_scripts": true,
"has_references": true
},
{
"name": "agenthub",
"domain": "engineering",
"description": "Multi-agent DAG orchestration for workflows where AI agents collaborate via dependency graphs, covering agent spawning, output merging, and quality evaluation. Use when a task needs multiple specialized agents or to parallelize AI work.",
"tags": [
"multi-agent",
"orchestration",
"dag",
"workflow",
"parallel",
"agent-hub"
],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/agenthub",
"has_scripts": true,
"has_references": true
},
{
"name": "agentic-evaluation-framework",
"domain": "engineering",
"description": "This skill should be used when the user asks to \"evaluate LLM output quality\", \"set up LLM-as-judge\", \"build an eval rubric\", \"compare model outputs pairwise\", or \"measure agent quality\".",
"tags": [
"evaluation",
"llm-as-judge",
"rubrics",
"agents",
"quality"
],
"version": "1.0.0",
"updated": "2026-06-29",
"path": "engineering/agentic-evaluation-framework",
"has_scripts": true,
"has_references": true
},
{
"name": "ai-security",
"domain": "engineering",
"description": "This skill should be used when the user asks to \"scan AI systems for security threats\", \"check for prompt injection vulnerabilities\", \"assess model security posture\", \"detect data poisoning risks\", or \"audit AI/ML pipeline security\".",
"tags": [
"ai-security",
"prompt-injection",
"data-poisoning",
"model-extraction",
"adversarial-ml"
],
"version": "1.0.0",
"updated": "2026-04-02",
"path": "engineering/ai-security",
"has_scripts": true,
"has_references": true
},
{
"name": "api-design-reviewer",
"domain": "engineering",
"description": "Review REST API designs for quality, consistency, and breaking changes. Lints OpenAPI specs, generates scorecards, and detects breaking changes between versions. Use when designing APIs, reviewing contracts, or managing API versioning.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/api-design-reviewer",
"has_scripts": true,
"has_references": true
},
{
"name": "api-test-suite-builder",
"domain": "engineering",
"description": "Generate API test suites from route definitions across frameworks: auth, input validation, contract, k6 load testing, mocking, and OpenAPI-driven generation. Use when adding new APIs, auditing test coverage, or building regression suites.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/api-test-suite-builder",
"has_scripts": true,
"has_references": true
},
{
"name": "aws-solution-architect",
"domain": "engineering",
"description": "Design AWS serverless architectures for startups with IaC. Use when designing serverless architecture, writing CloudFormation, optimizing AWS costs, setting up CI/CD, or migrating to AWS across Lambda, API Gateway, and DynamoDB.",
"tags": [
"aws",
"serverless",
"cloudformation",
"cost-optimization"
],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/aws-solution-architect",
"has_scripts": true,
"has_references": true
},
{
"name": "azure-cloud-architect",
"domain": "engineering",
"description": "Design, review, and validate Azure cloud architectures. Use when choosing Azure compute, storage, networking, or identity services, or applying the Azure Well-Architected Framework to a workload.",
"tags": [
"azure",
"cloud-architecture",
"well-architected-framework",
"aks",
"app-service",
"entra-id",
"networking",
"cost-optimization"
],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/azure-cloud-architect",
"has_scripts": true,
"has_references": true
},
{
"name": "batch-api-orchestrator",
"domain": "engineering",
"description": "This skill should be used when the user asks to \"batch LLM requests\", \"should I use the batch API\", \"estimate batch vs realtime cost\", \"design a bulk LLM job\", or \"process thousands of prompts cheaply\".",
"tags": [
"batch-api",
"llm",
"cost-optimization",
"throughput",
"async"
],
"version": "1.0.0",
"updated": "2026-06-29",
"path": "engineering/batch-api-orchestrator",
"has_scripts": true,
"has_references": true
},
{
"name": "browser-automation",
"domain": "engineering",
"description": "This skill should be used when the user asks to \"build web automation scripts\", \"check browser automation for detection\", \"generate web scraping code\", \"create form filling automation\", or \"build anti-detection browser scripts\".",
"tags": [
"browser-automation",
"web-scraping",
"anti-detection",
"form-automation",
"selenium"
],
"version": "1.0.0",
"updated": "2026-04-02",
"path": "engineering/browser-automation",
"has_scripts": true,
"has_references": true
},
{
"name": "changelog-generator",
"domain": "engineering",
"description": "Generate changelogs and release notes from Conventional Commits with semver bump detection, Keep a Changelog formatting, and monorepo scopes. Use when preparing releases, enforcing commit standards, or automating release notes.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/changelog-generator",
"has_scripts": true,
"has_references": true
},
{
"name": "chaos-engineering",
"domain": "engineering",
"description": "Chaos engineering: hypothesis-driven fault injection to surface weakness before users do. Use when designing a chaos experiment, planning a gameday, choosing what to inject, computing blast radius, or building a chaos maturity model.",
"tags": [
"chaos-engineering",
"resilience",
"fault-injection",
"gameday",
"sre",
"reliability",
"blast-radius"
],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/chaos-engineering",
"has_scripts": true,
"has_references": true
},
{
"name": "ci-cd-pipeline-builder",
"domain": "engineering",
"description": "Design and generate CI/CD pipelines from project stack signals across GitHub Actions, GitLab CI, CircleCI, and Buildkite. Use when bootstrapping CI, migrating pipelines, adding deployment gates, or optimizing build times.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/ci-cd-pipeline-builder",
"has_scripts": true,
"has_references": true
},
{
"name": "claude-code-mastery",
"domain": "engineering",
"description": "",
"tags": [
"claude-code",
"skill-authoring",
"subagents",
"hooks"
],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/claude-code-mastery",
"has_scripts": true,
"has_references": true
},
{
"name": "cloud-security",
"domain": "engineering",
"description": "Cloud posture security across AWS, Azure, and GCP — IAM least privilege, public exposure, encryption, logging coverage, landing-zone guardrails. Use when auditing a cloud account, before a production launch, or after a scan.",
"tags": [
"cloud-security",
"iam",
"least-privilege",
"landing-zone",
"posture-management"
],
"version": "1.0.0",
"updated": "2026-07-21",
"path": "engineering/cloud-security",
"has_scripts": true,
"has_references": true
},
{
"name": "code-reviewer",
"domain": "engineering",
"description": "Code review automation for TypeScript, JavaScript, Python, Go, Swift, and Kotlin. Analyzes PRs for complexity, risk, SOLID violations, and code smells. Use when reviewing PRs, analyzing code quality, or generating review checklists.",
"tags": [
"code-review",
"pull-request",
"code-quality",
"best-practices"
],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/code-reviewer",
"has_scripts": true,
"has_references": true
},
{
"name": "code-tour",
"domain": "engineering",
"description": "Build ordered, annotated tours of an unfamiliar codebase and keep the anchors from rotting. Use when onboarding an engineer, handing off a service, or explaining a subsystem before a review.",
"tags": [
"onboarding",
"code-reading",
"documentation",
"developer-experience",
"handoff"
],
"version": "1.0.0",
"updated": "2026-07-21",
"path": "engineering/code-tour",
"has_scripts": true,
"has_references": true
},
{
"name": "codebase-onboarding",
"domain": "engineering",
"description": "Analyze a codebase and generate onboarding docs: architecture overviews, file maps, setup guides, runbooks, and debugging guides. Use when onboarding new team members, open-sourcing, or documenting after a major refactor.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/codebase-onboarding",
"has_scripts": true,
"has_references": true
},
{
"name": "codex-cli-specialist",
"domain": "engineering",
"description": "OpenAI Codex CLI and cross-platform skill authoring. Use when setting up Codex CLI, converting or syncing skills between Claude Code and Codex, configuring agents/openai.yaml, or validating cross-platform skill compatibility.",
"tags": [
"openai-codex",
"cross-platform",
"skill-conversion",
"cli"
],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/codex-cli-specialist",
"has_scripts": true,
"has_references": true
},
{
"name": "computer-use-automation",
"domain": "engineering",
"description": "This skill should be used when the user asks to \"build a computer-use agent\", \"automate a GUI with an AI agent\", \"when to use computer use vs an API\", \"make browser automation reliable\", or \"design screenshot-driven agent actions\".",
"tags": [
"computer-use",
"browser-automation",
"agents",
"gui",
"reliability"
],
"version": "1.0.0",
"updated": "2026-06-29",
"path": "engineering/computer-use-automation",
"has_scripts": true,
"has_references": true
},
{
"name": "context-engine",
"domain": "engineering",
"description": "Context management engine for AI coding agents. Use when building agent memory systems, optimizing context windows, allocating token budgets, designing RAG pipelines for code, or managing persistent multi-session agent state.",
"tags": [],
"version": "1.2.0",
"updated": "2026-06-29",
"path": "engineering/context-engine",
"has_scripts": true,
"has_references": true
},
{
"name": "data-quality-auditor",
"domain": "engineering",
"description": "Audit data quality across pipelines, warehouses, and stores. Use when designing a DQ program, defining DQ dimensions, building rule-based checks, detecting schema drift, monitoring freshness SLAs, or responding to a DQ incident.",
"tags": [
"data-quality",
"dq",
"freshness",
"schema-drift",
"great-expectations",
"dbt-tests",
"soda",
"data-observability",
"data-engineering"
],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/data-quality-auditor",
"has_scripts": true,
"has_references": true
},
{
"name": "database-designer",
"domain": "engineering",
"description": "Database design with schema analysis, index optimization, and migration generation for PostgreSQL, MySQL, MongoDB, and DynamoDB. Use when designing schemas, optimizing queries, planning migrations, or analyzing database performance.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/database-designer",
"has_scripts": false,
"has_references": true
},
{
"name": "database-schema-designer",
"domain": "engineering",
"description": "Design relational schemas from requirements with normalization, migrations, ERDs, RLS policies, and indexes for PostgreSQL, MySQL, and SQLite. Use when designing new features, reviewing schemas, or adding multi-tenancy.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/database-schema-designer",
"has_scripts": true,
"has_references": true
},
{
"name": "dependency-auditor",
"domain": "engineering",
"description": "Scan project dependencies for vulnerabilities, license issues, and upgrade opportunities across Python, Node.js, Go, and Rust. Use when auditing dependencies, checking licenses, planning upgrades, or assessing supply chain security.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/dependency-auditor",
"has_scripts": true,
"has_references": true
},
{
"name": "design-auditor",
"domain": "engineering",
"description": "Audit UI/UX designs for quality, AI-generated slop, and accessibility. Use when reviewing designs, detecting slop patterns, validating WCAG compliance, checking design-token adherence, or reviewing responsive design across breakpoints.",
"tags": [
"design-audit",
"ai-slop",
"color-contrast",
"accessibility"
],
"version": "2.2.0",
"updated": "2026-06-17",
"path": "engineering/design-auditor",
"has_scripts": true,
"has_references": true
},
{
"name": "devops-workflow-engineer",
"domain": "engineering",
"description": "Generate and optimize GitHub Actions CI/CD workflows. Use when designing workflows, planning multi-environment deployments, optimizing pipeline cost and runtime, or implementing blue- green, canary, or rolling deployment strategies.",
"tags": [
"github-actions",
"ci-cd",
"deployment",
"workflows"
],
"version": "1.2.0",
"updated": "2026-06-17",
"path": "engineering/devops-workflow-engineer",
"has_scripts": true,
"has_references": true
},
{
"name": "doc-drift-detector",
"domain": "engineering",
"description": "Detect documentation drift against code changes, score staleness, validate API docs via AST parsing, and audit link integrity. Use when docs fall out of sync with code, preparing releases, running CI doc gates, or auditing doc accuracy.",
"tags": [
"documentation",
"staleness",
"api-docs",
"drift-analysis"
],
"version": "2.1.0",
"updated": "2026-06-17",
"path": "engineering/doc-drift-detector",
"has_scripts": true,
"has_references": true
},
{
"name": "docker-development",
"domain": "engineering",
"description": "This skill should be used when the user asks to \"analyze a Dockerfile\", \"optimize Docker layers\", \"validate docker-compose\", \"check container best practices\", or \"audit Docker configurations\".",
"tags": [
"docker",
"containers",
"devops",
"compose",
"dockerfile"
],
"version": "1.0.0",
"updated": "2026-04-02",
"path": "engineering/docker-development",
"has_scripts": true,
"has_references": true
},
{
"name": "env-secrets-manager",
"domain": "engineering",
"description": "Environment and secrets management lifecycle: .env scaffolding, validation, leak detection, and rotation across Vault, AWS SSM, 1Password, and Doppler. Use when setting up projects, scanning for leaked secrets, or rotating credentials.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/env-secrets-manager",
"has_scripts": true,
"has_references": true
},
{
"name": "extended-thinking-architect",
"domain": "engineering",
"description": "This skill should be used when the user asks to \"decide reasoning effort\", \"set a thinking budget\", \"when to use extended thinking\", \"tune reasoning vs cost\", or \"should this task use a reasoning model\".",
"tags": [
"extended-thinking",
"reasoning-effort",
"llm",
"cost-optimization",
"agents"
],
"version": "1.0.0",
"updated": "2026-06-29",
"path": "engineering/extended-thinking-architect",
"has_scripts": true,
"has_references": true
},
{
"name": "feature-flags-architect",
"domain": "engineering",
"description": "Feature flag strategy, lifecycle, and operations. Use when designing a flag taxonomy, planning a gradual rollout, building kill switches, auditing flag debt, defining governance, running progressive delivery, or rolling back via flags.",
"tags": [
"feature-flags",
"progressive-delivery",
"rollouts",
"kill-switches",
"release-engineering",
"experimentation",
"flag-governance"
],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/feature-flags-architect",
"has_scripts": true,
"has_references": true
},
{
"name": "focused-fix",
"domain": "engineering",
"description": "This skill should be used when the user asks to \"fix a bug with minimal changes\", \"analyze change scope for a bugfix\", \"find the minimal set of files to change\", \"do a focused bugfix\", or \"scope a minimal repair\".",
"tags": [
"bugfix",
"minimal-change",
"scope-analysis",
"debugging",
"focused-fix"
],
"version": "1.0.0",
"updated": "2026-04-02",
"path": "engineering/focused-fix",
"has_scripts": true,
"has_references": true
},
{
"name": "gcp-cloud-architect",
"domain": "engineering",
"description": "Design, review, and validate Google Cloud (GCP) architectures. Use when choosing GCP compute, storage, networking, or identity services, or applying the Google Cloud Architecture Framework (reliability, security, cost, performance).",
"tags": [
"gcp",
"google-cloud",
"architecture",
"cloud-architecture-framework",
"gke",
"cloud-run",
"bigquery",
"iam",
"networking",
"cost-optimization"
],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/gcp-cloud-architect",
"has_scripts": true,
"has_references": true
},
{
"name": "git-worktree-manager",
"domain": "engineering",
"description": "Manage parallel development with Git worktrees: creation with port allocation, environment sync, branch isolation, and cleanup. Use when working multiple branches at once, running parallel CI validations, or isolating agent workspaces.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/git-worktree-manager",
"has_scripts": true,
"has_references": true
},
{
"name": "google-workspace-cli",
"domain": "engineering",
"description": "This skill should be used when the user asks to \"audit Google Workspace\", \"check GWS security settings\", \"set up Google Workspace authentication\", \"diagnose Workspace issues\", or \"review Google admin configurations\".",
"tags": [
"google-workspace",
"gws",
"admin",
"security",
"audit"
],
"version": "1.0.0",
"updated": "2026-04-02",
"path": "engineering/google-workspace-cli",
"has_scripts": true,
"has_references": true
},
{
"name": "helm-chart-builder",
"domain": "engineering",
"description": "This skill should be used when the user asks to \"analyze Helm charts\", \"validate Helm values\", \"review chart structure\", \"check Kubernetes Helm templates\", or \"audit chart dependencies and configuration\".",
"tags": [
"helm",
"kubernetes",
"k8s",
"charts",
"devops"
],
"version": "1.0.0",
"updated": "2026-04-02",
"path": "engineering/helm-chart-builder",
"has_scripts": true,
"has_references": true
},
{
"name": "incident-commander",
"domain": "engineering",
"description": "Production incident response. Use when handling incidents, classifying severity, reconstructing timelines, writing postmortems, generating comms templates, or building response playbooks with severity scoring and RCA frameworks.",
"tags": [
"incident-response",
"severity-classification",
"rca",
"postmortem"
],
"version": "1.2.0",
"updated": "2026-06-17",
"path": "engineering/incident-commander",
"has_scripts": true,
"has_references": true
},
{
"name": "interview-system-designer",
"domain": "engineering",
"description": "Design calibrated interview loops, competency-based question banks, and hiring calibration. Use when designing interview processes, creating hiring pipelines, generating scoring rubrics, analyzing interviewer bias, or building question banks.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/interview-system-designer",
"has_scripts": false,
"has_references": true
},
{
"name": "kubernetes-operator",
"domain": "engineering",
"description": "Design, build, and operate Kubernetes operators. Use when extending Kubernetes with a custom controller, choosing a framework, designing CRDs, implementing reconciliation loops, or auditing an operator for anti-patterns.",
"tags": [
"kubernetes",
"operator-pattern",
"crd",
"controller-runtime",
"kubebuilder",
"platform-engineering",
"sre"
],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/kubernetes-operator",
"has_scripts": true,
"has_references": true
},
{
"name": "llm-cost-optimizer",
"domain": "engineering",
"description": "This skill should be used when the user asks to \"estimate LLM costs\", \"count tokens in prompts\", \"optimize prompt token usage\", \"compare model pricing\", or \"reduce LLM API costs\".",
"tags": [
"llm",
"tokens",
"cost-optimization",
"prompt-engineering",
"pricing"
],
"version": "1.1.0",
"updated": "2026-06-29",
"path": "engineering/llm-cost-optimizer",
"has_scripts": true,
"has_references": true
},
{
"name": "mcp-server-builder",
"domain": "engineering",
"description": "Build MCP (Model Context Protocol) servers with tool definitions, resource providers, prompt templates, and transports. Use when exposing APIs to AI agents, building tool servers, converting OpenAPI to MCP, or creating MCP integrations.",
"tags": [],
"version": "1.2.0",
"updated": "2026-06-29",
"path": "engineering/mcp-server-builder",
"has_scripts": true,
"has_references": true
},
{
"name": "migration-architect",
"domain": "engineering",
"description": "Plans zero-downtime migrations with compatibility validation, rollback strategies, and phased execution plans. Use when migrating databases, APIs, infrastructure, or services between platforms or versions.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/migration-architect",
"has_scripts": true,
"has_references": true
},
{
"name": "monorepo-navigator",
"domain": "engineering",
"description": "Manage and optimize monorepos with Turborepo, Nx, pnpm workspaces, and Changesets. Use when working in monorepos, running impact analysis, optimizing build times with remote caching, migrating from multi-repo, or coordinating publishing.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/monorepo-navigator",
"has_scripts": true,
"has_references": true
},
{
"name": "ms365-tenant-manager",
"domain": "engineering",
"description": "Microsoft 365 tenant administration for Global Administrators. Use for tenant setup, Azure AD user management, Exchange Online and Teams config, Conditional Access policies, license management, and PowerShell bulk-operation scripts.",
"tags": [
"microsoft-365",
"azure-ad",
"office-365",
"administration"
],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/ms365-tenant-manager",
"has_scripts": true,
"has_references": true
},
{
"name": "observability-designer",
"domain": "engineering",
"description": "Design observability strategies: SLI/SLO frameworks, alerting, and dashboards. Use when instrumenting a production service, tuning alert rules, designing Grafana dashboards, defining SLOs and error budgets, or reducing alert fatigue.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/observability-designer",
"has_scripts": true,
"has_references": true
},
{
"name": "performance-profiler",
"domain": "engineering",
"description": "Performance profiling for Node.js, Python, and Go: CPU flamegraphs, memory leak detection, bundle analysis, query optimization, and k6 load testing. Use when diagnosing slow endpoints, memory growth, large bundles, or traffic spikes.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/performance-profiler",
"has_scripts": true,
"has_references": true
},
{
"name": "playwright-pro",
"domain": "engineering",
"description": "End-to-end testing with Playwright: test generation, page objects, locator strategy, flaky- test diagnosis, visual regression, and CI integration. Use when writing E2E tests, fixing flaky tests, or migrating from Cypress/Selenium.",
"tags": [
"playwright",
"e2e-testing",
"page-objects",
"flaky-tests",
"migration",
"ci-integration",
"visual-regression",
"accessibility"
],
"version": "2.1.0",
"updated": "2026-06-17",
"path": "engineering/playwright-pro",
"has_scripts": true,
"has_references": true
},
{
"name": "pr-review-expert",
"domain": "engineering",
"description": "Systematic PR review with blast-radius analysis, security scanning, and breaking-change and test-coverage deltas. Use when reviewing PRs that touch shared libraries, APIs, database schemas, auth, or security-sensitive code.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/pr-review-expert",
"has_scripts": true,
"has_references": true
},
{
"name": "prompt-engineer-toolkit",
"domain": "engineering",
"description": "Prompt engineering frameworks for building, testing, versioning, and evaluating prompts: chain-of-thought, few-shot, regression testing, and rubrics. Use when designing production prompts, running A/B tests, or building prompt libraries.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/prompt-engineer-toolkit",
"has_scripts": true,
"has_references": true
},
{
"name": "prompt-governance",
"domain": "engineering",
"description": "This skill should be used when the user asks to \"audit prompts for safety\", \"check prompts for injection vulnerabilities\", \"manage a prompt catalog\", \"version control prompts\", or \"review prompt quality and compliance\".",
"tags": [
"prompt-governance",
"prompt-safety",
"prompt-audit",
"prompt-catalog",
"ai-compliance"
],
"version": "1.0.0",
"updated": "2026-04-02",
"path": "engineering/prompt-governance",
"has_scripts": true,
"has_references": true
},
{
"name": "qa-browser-automation",
"domain": "engineering",
"description": "Browser-based QA combining Chrome MCP control with Python analysis tools. Use when performing browser QA testing, visual regression tracking, WCAG accessibility auditing, performance profiling, or health-scoring web applications.",
"tags": [
"browser-qa",
"wcag",
"visual-regression",
"health-scoring"
],
"version": "2.1.0",
"updated": "2026-04-02",
"path": "engineering/qa-browser-automation",
"has_scripts": true,
"has_references": true
},
{
"name": "rag-architect",
"domain": "engineering",
"description": "Design RAG pipelines: chunking, retrieval evaluation, and architecture. Use when building a RAG system, selecting a chunking strategy, choosing a vector database, optimizing retrieval quality, or evaluating with RAGAS metrics.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/rag-architect",
"has_scripts": false,
"has_references": true
},
{
"name": "red-team",
"domain": "engineering",
"description": "This skill should be used when the user asks to \"plan a red team engagement\", \"scope a penetration test\", \"design a security assessment methodology\", \"create rules of engagement\", or \"plan an adversary simulation\".",
"tags": [
"red-team",
"penetration-testing",
"security-assessment",
"adversary-simulation",
"engagement-planning"
],
"version": "1.0.0",
"updated": "2026-04-02",
"path": "engineering/red-team",
"has_scripts": true,
"has_references": true
},
{
"name": "release-manager",
"domain": "engineering",
"description": "Automates release management with changelog generation, semantic versioning, and release readiness checks. Use when preparing releases, generating changelogs, bumping versions, or validating release candidates.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/release-manager",
"has_scripts": false,
"has_references": true
},
{
"name": "release-orchestrator",
"domain": "engineering",
"description": "Orchestrate end-to-end release pipelines. Use when running pre-release validation, generating changelogs, bumping semantic versions, scoring deployment readiness, or gating releases with secret scanning and GO/NO-GO checks.",
"tags": [
"release-pipeline",
"versioning",
"pre-flight",
"readiness"
],
"version": "2.2.0",
"updated": "2026-06-17",
"path": "engineering/release-orchestrator",
"has_scripts": true,
"has_references": true
},
{
"name": "runbook-generator",
"domain": "engineering",
"description": "Generate operational runbooks from codebase analysis covering deployment, incident response, scaling, and monitoring, with copy-paste commands and rollback steps. Use when bootstrapping ops docs, preparing for on-call, or post-incident.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/runbook-generator",
"has_scripts": true,
"has_references": true
},
{
"name": "saas-scaffolder",
"domain": "engineering",
"description": "Generate SaaS boilerplate with auth, database schemas, Stripe billing, multi-tenancy, API routes, and dashboard UI on a Next.js/TypeScript/Tailwind stack. Use when starting a new SaaS product, subscription app, or multi-tenant platform.",
"tags": [],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/saas-scaffolder",
"has_scripts": true,
"has_references": true
},
{
"name": "secrets-vault-manager",
"domain": "engineering",
"description": "This skill should be used when the user asks to \"generate Vault configurations\", \"plan secret rotation\", \"analyze vault audit logs\", \"manage secrets lifecycle\", or \"set up HashiCorp Vault\".",
"tags": [
"secrets",
"vault",
"hashicorp",
"rotation",
"audit",
"security"
],
"version": "1.0.0",
"updated": "2026-04-02",
"path": "engineering/secrets-vault-manager",
"has_scripts": true,
"has_references": true
},
{
"name": "self-improving-agent",
"domain": "engineering",
"description": "Patterns for AI agents that learn from their own execution, detect failure modes, and improve autonomously. Use when building agents that get better over time, managing auto- memory, or designing self-correcting feedback loops.",
"tags": [
"self-improvement",
"ai-agents",
"feedback-loops",
"auto-memory",
"meta-learning",
"memory-curation"
],
"version": "2.1.0",
"updated": "2026-06-17",
"path": "engineering/self-improving-agent",
"has_scripts": true,
"has_references": true
},
{
"name": "senior-architect",
"domain": "engineering",
"description": "System architecture design and review. Use when designing architecture, evaluating microservices vs monolith, writing ADRs, choosing a database, planning for scalability, reviewing system design, or generating architecture diagrams.",
"tags": [
"system-design",
"distributed-systems",
"architecture",
"adr",
"scalability"
],
"version": "1.1.0",
"updated": "2026-06-17",
"path": "engineering/senior-architect",
"has_scripts": true,
"has_references": true
},
{
"name": "senior-backend",
"domain": "engineering",
"description": "Backend development with Node.js/Express/Fastify and PostgreSQL. Use when designing REST or GraphQL APIs, optimizing database queries, implementing authentication, building microservices, handling migrations, or reviewing backend code.",
"tags": [
"api-design",
"microservices",
"databases",
"caching",