-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathagent-registry.json
More file actions
1303 lines (1303 loc) · 45.2 KB
/
agent-registry.json
File metadata and controls
1303 lines (1303 loc) · 45.2 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
{
"name": "devteam",
"version": "4.0.0",
"description": "127-agent automated development system with Agent Teams support, native subagent configuration (tools/model/memory), Skills-based commands, prompt/agent hooks, native worktree isolation, path-specific CLAUDE.md rules, and split model strategy for dynamic escalation",
"author": "Multi-Agent Development Team",
"repository": "https://github.com/michael-harris/devteam",
"agents": [
{
"id": "planning:prd-generator",
"name": "PRD Generator",
"description": "Interactive PRD creation through structured Q&A with technology stack selection",
"file": "agents/planning/prd-generator.md",
"model": "sonnet",
"category": "planning",
"model_strategy": "fixed"
},
{
"id": "planning:task-graph-analyzer",
"name": "Task Graph Analyzer",
"description": "Analyzes PRD and creates task breakdown with dependency graph",
"file": "agents/planning/task-graph-analyzer.md",
"model": "sonnet",
"category": "planning",
"model_strategy": "fixed"
},
{
"id": "planning:sprint-planner",
"name": "Sprint Planner",
"description": "Organizes tasks into sprints based on dependencies and capacity",
"file": "agents/planning/sprint-planner.md",
"model": "sonnet",
"category": "planning",
"model_strategy": "fixed"
},
{
"id": "research:research-agent",
"name": "Research Agent",
"description": "Investigates codebase, technologies, and implementation approaches before planning",
"file": "agents/research/research-agent.md",
"model": "opus",
"category": "research",
"model_strategy": "fixed"
},
{
"id": "orchestration:task-loop",
"name": "Task Loop",
"description": "Manages iterative quality loop for single task execution with model escalation",
"file": "agents/orchestration/task-loop.md",
"model": "opus",
"category": "orchestration",
"model_strategy": "fixed"
},
{
"id": "orchestration:sprint-loop",
"name": "Sprint Loop",
"description": "Sprint-level quality validation after all tasks complete",
"file": "agents/orchestration/sprint-loop.md",
"model": "opus",
"category": "orchestration",
"model_strategy": "fixed"
},
{
"id": "orchestration:quality-gate-enforcer",
"name": "Quality Gate Enforcer",
"description": "Runs all quality gates (tests, lint, types, security) and reports results",
"file": "agents/orchestration/quality-gate-enforcer.md",
"model": "opus",
"category": "orchestration",
"model_strategy": "fixed"
},
{
"id": "orchestration:code-review-coordinator",
"name": "Code Review Coordinator",
"description": "Coordinates code reviews across language-specific reviewers",
"file": "agents/orchestration/code-review-coordinator.md",
"model": "opus",
"category": "orchestration",
"model_strategy": "fixed"
},
{
"id": "orchestration:autonomous-controller",
"name": "Autonomous Controller",
"description": "Controls autonomous execution mode with stop hooks and persistence",
"file": "agents/orchestration/autonomous-controller.md",
"model": "opus",
"category": "orchestration",
"model_strategy": "fixed"
},
{
"id": "orchestration:bug-council-orchestrator",
"name": "Bug Council Orchestrator",
"description": "Activates and coordinates 5-member bug diagnosis team for complex issues",
"file": "agents/orchestration/bug-council-orchestrator.md",
"model": "opus",
"category": "orchestration",
"model_strategy": "fixed"
},
{
"id": "orchestration:scope-validator",
"name": "Scope Validator",
"description": "Enforces 6-layer scope compliance with VETO power",
"file": "agents/orchestration/scope-validator.md",
"model": "haiku",
"category": "orchestration",
"model_strategy": "fixed"
},
{
"id": "orchestration:sprint-orchestrator",
"name": "Sprint Orchestrator",
"description": "Manages entire sprint execution and coordinates task loop",
"file": "agents/orchestration/sprint-orchestrator.md",
"model": "opus",
"category": "orchestration",
"model_strategy": "fixed"
},
{
"id": "orchestration:requirements-validator",
"name": "Requirements Validator",
"description": "Quality gate with strict acceptance criteria validation",
"file": "agents/orchestration/requirements-validator.md",
"model": "opus",
"category": "orchestration",
"model_strategy": "fixed"
},
{
"id": "orchestration:track-merger",
"name": "Track Merger",
"description": "Intelligently merges parallel development tracks using git worktrees",
"file": "agents/orchestration/track-merger.md",
"model": "opus",
"category": "orchestration",
"model_strategy": "fixed"
},
{
"id": "orchestration:workflow-compliance",
"name": "Workflow Compliance",
"description": "Validates that orchestrators followed their required workflows and generated all mandatory artifacts",
"file": "agents/orchestration/workflow-compliance.md",
"model": "opus",
"category": "orchestration",
"model_strategy": "fixed"
},
{
"id": "diagnosis:root-cause-analyst",
"name": "Root Cause Analyst",
"description": "Bug Council member - Error analysis, hypothesis generation, causal chains",
"file": "agents/diagnosis/root-cause-analyst.md",
"model": "opus",
"category": "diagnosis",
"model_strategy": "fixed"
},
{
"id": "diagnosis:code-archaeologist",
"name": "Code Archaeologist",
"description": "Bug Council member - Git history, regression detection, blame analysis",
"file": "agents/diagnosis/code-archaeologist.md",
"model": "opus",
"category": "diagnosis",
"model_strategy": "fixed"
},
{
"id": "diagnosis:pattern-matcher",
"name": "Pattern Matcher",
"description": "Bug Council member - Similar bugs, anti-pattern identification, codebase search",
"file": "agents/diagnosis/pattern-matcher.md",
"model": "opus",
"category": "diagnosis",
"model_strategy": "fixed"
},
{
"id": "diagnosis:systems-thinker",
"name": "Systems Thinker",
"description": "Bug Council member - Dependencies, architectural issues, integration problems",
"file": "agents/diagnosis/systems-thinker.md",
"model": "opus",
"category": "diagnosis",
"model_strategy": "fixed"
},
{
"id": "diagnosis:adversarial-tester",
"name": "Adversarial Tester",
"description": "Bug Council member - Edge cases, security vulnerabilities, attack vectors",
"file": "agents/diagnosis/adversarial-tester.md",
"model": "opus",
"category": "diagnosis",
"model_strategy": "fixed"
},
{
"id": "database:designer",
"name": "Database Designer",
"description": "Designs normalized database schemas (language-agnostic)",
"file": "agents/database/database-designer.md",
"category": "database",
"model_strategy": "dynamic"
},
{
"id": "database:developer-python",
"name": "Database Developer Python",
"description": "Implements SQLAlchemy models and Alembic migrations",
"file": "agents/database/database-developer-python.md",
"category": "database",
"model_strategy": "dynamic"
},
{
"id": "database:developer-typescript",
"name": "Database Developer TypeScript",
"description": "Implements Prisma/TypeORM models and migrations",
"file": "agents/database/database-developer-typescript.md",
"category": "database",
"model_strategy": "dynamic"
},
{
"id": "database:developer-java",
"name": "Database Developer Java",
"description": "Implements JPA/Hibernate models and Flyway migrations",
"file": "agents/database/database-developer-java.md",
"category": "database",
"model_strategy": "dynamic"
},
{
"id": "database:developer-csharp",
"name": "Database Developer C#",
"description": "Implements Entity Framework models and migrations",
"file": "agents/database/database-developer-csharp.md",
"category": "database",
"model_strategy": "dynamic"
},
{
"id": "database:developer-go",
"name": "Database Developer Go",
"description": "Implements GORM models and migrations",
"file": "agents/database/database-developer-go.md",
"category": "database",
"model_strategy": "dynamic"
},
{
"id": "database:developer-ruby",
"name": "Database Developer Ruby",
"description": "Implements ActiveRecord models and migrations",
"file": "agents/database/database-developer-ruby.md",
"category": "database",
"model_strategy": "dynamic"
},
{
"id": "database:developer-php",
"name": "Database Developer PHP",
"description": "Implements Doctrine/Eloquent models and migrations",
"file": "agents/database/database-developer-php.md",
"category": "database",
"model_strategy": "dynamic"
},
{
"id": "database:developer-ios",
"name": "Database Developer iOS",
"description": "Implements Core Data and SwiftData persistence for iOS apps",
"file": "agents/database/database-developer-ios.md",
"category": "database",
"model_strategy": "dynamic"
},
{
"id": "database:developer-android",
"name": "Database Developer Android",
"description": "Implements Room database persistence for Android apps",
"file": "agents/database/database-developer-android.md",
"category": "database",
"model_strategy": "dynamic"
},
{
"id": "database:sql-code-reviewer",
"name": "SQL Code Reviewer",
"description": "Reviews SQL database code for relational databases (PostgreSQL, MySQL, SQLite)",
"file": "agents/database/sql-code-reviewer.md",
"model": "sonnet",
"category": "database",
"model_strategy": "fixed"
},
{
"id": "database:nosql-code-reviewer",
"name": "NoSQL Code Reviewer",
"description": "Reviews NoSQL database code (MongoDB, Redis, DynamoDB, Elasticsearch)",
"file": "agents/database/nosql-code-reviewer.md",
"model": "sonnet",
"category": "database",
"model_strategy": "fixed"
},
{
"id": "backend:api-designer",
"name": "API Designer",
"description": "Designs RESTful API specifications with OpenAPI",
"file": "agents/backend/api-designer.md",
"category": "backend",
"model_strategy": "dynamic"
},
{
"id": "backend:api-design-reviewer",
"name": "API Design Reviewer",
"description": "Reviews API designs for consistency, usability, security, and best practices",
"file": "agents/backend/api-design-reviewer.md",
"model": "sonnet",
"category": "backend",
"model_strategy": "fixed"
},
{
"id": "backend:api-developer-python",
"name": "API Developer Python",
"description": "Implements FastAPI/Django endpoints",
"file": "agents/backend/api-developer-python.md",
"category": "backend",
"model_strategy": "dynamic"
},
{
"id": "backend:api-developer-typescript",
"name": "API Developer TypeScript",
"description": "Implements Express/NestJS endpoints",
"file": "agents/backend/api-developer-typescript.md",
"category": "backend",
"model_strategy": "dynamic"
},
{
"id": "backend:api-developer-java",
"name": "API Developer Java",
"description": "Implements Spring Boot REST APIs",
"file": "agents/backend/api-developer-java.md",
"category": "backend",
"model_strategy": "dynamic"
},
{
"id": "backend:api-developer-csharp",
"name": "API Developer C#",
"description": "Implements ASP.NET Core REST APIs",
"file": "agents/backend/api-developer-csharp.md",
"category": "backend",
"model_strategy": "dynamic"
},
{
"id": "backend:api-developer-go",
"name": "API Developer Go",
"description": "Implements Go REST APIs with Gin/Echo",
"file": "agents/backend/api-developer-go.md",
"category": "backend",
"model_strategy": "dynamic"
},
{
"id": "backend:api-developer-ruby",
"name": "API Developer Ruby",
"description": "Implements Ruby on Rails REST APIs",
"file": "agents/backend/api-developer-ruby.md",
"category": "backend",
"model_strategy": "dynamic"
},
{
"id": "backend:api-developer-php",
"name": "API Developer PHP",
"description": "Implements Laravel/Symfony REST APIs",
"file": "agents/backend/api-developer-php.md",
"category": "backend",
"model_strategy": "dynamic"
},
{
"id": "backend:code-reviewer-python",
"name": "Backend Code Reviewer Python",
"description": "Reviews Python backend code for quality and security",
"file": "agents/backend/backend-code-reviewer-python.md",
"model": "sonnet",
"category": "backend",
"model_strategy": "fixed"
},
{
"id": "backend:code-reviewer-typescript",
"name": "Backend Code Reviewer TypeScript",
"description": "Reviews TypeScript backend code for quality and security",
"file": "agents/backend/backend-code-reviewer-typescript.md",
"model": "sonnet",
"category": "backend",
"model_strategy": "fixed"
},
{
"id": "backend:code-reviewer-java",
"name": "Backend Code Reviewer Java",
"description": "Reviews Java backend code for quality and security",
"file": "agents/backend/backend-code-reviewer-java.md",
"model": "sonnet",
"category": "backend",
"model_strategy": "fixed"
},
{
"id": "backend:code-reviewer-csharp",
"name": "Backend Code Reviewer C#",
"description": "Reviews C# backend code for quality and security",
"file": "agents/backend/backend-code-reviewer-csharp.md",
"model": "sonnet",
"category": "backend",
"model_strategy": "fixed"
},
{
"id": "backend:code-reviewer-go",
"name": "Backend Code Reviewer Go",
"description": "Reviews Go backend code for quality and security",
"file": "agents/backend/backend-code-reviewer-go.md",
"model": "sonnet",
"category": "backend",
"model_strategy": "fixed"
},
{
"id": "backend:code-reviewer-ruby",
"name": "Backend Code Reviewer Ruby",
"description": "Reviews Ruby backend code for quality and security",
"file": "agents/backend/backend-code-reviewer-ruby.md",
"model": "sonnet",
"category": "backend",
"model_strategy": "fixed"
},
{
"id": "backend:code-reviewer-php",
"name": "Backend Code Reviewer PHP",
"description": "Reviews PHP backend code for quality and security",
"file": "agents/backend/backend-code-reviewer-php.md",
"model": "sonnet",
"category": "backend",
"model_strategy": "fixed"
},
{
"id": "frontend:designer",
"name": "Frontend Designer",
"description": "Designs UI/UX with component specifications",
"file": "agents/frontend/frontend-designer.md",
"category": "frontend",
"model_strategy": "dynamic"
},
{
"id": "frontend:developer",
"name": "Frontend Developer",
"description": "Implements React/Vue components",
"file": "agents/frontend/frontend-developer.md",
"category": "frontend",
"model_strategy": "dynamic"
},
{
"id": "frontend:code-reviewer",
"name": "Frontend Code Reviewer",
"description": "Reviews frontend code for quality, accessibility, and performance",
"file": "agents/frontend/frontend-code-reviewer.md",
"model": "sonnet",
"category": "frontend",
"model_strategy": "fixed"
},
{
"id": "python:developer-generic",
"name": "Python Developer Generic",
"description": "Implements Python utilities, scripts, CLI tools",
"file": "agents/python/python-developer-generic.md",
"category": "python",
"model_strategy": "dynamic"
},
{
"id": "scripting:powershell-developer",
"name": "PowerShell Developer",
"description": "Implements PowerShell scripts and automation",
"file": "agents/scripting/powershell-developer.md",
"category": "scripting",
"model_strategy": "dynamic"
},
{
"id": "scripting:shell-developer",
"name": "Shell Developer",
"description": "Implements Bash/shell scripts and automation",
"file": "agents/scripting/shell-developer.md",
"category": "scripting",
"model_strategy": "dynamic"
},
{
"id": "infrastructure:configuration-manager",
"name": "Configuration Manager",
"description": "Manages configuration files and environment setup",
"file": "agents/infrastructure/configuration-manager.md",
"category": "infrastructure",
"model_strategy": "dynamic"
},
{
"id": "mobile:ios-developer",
"name": "iOS Developer",
"description": "Implements iOS apps with Swift/SwiftUI",
"file": "agents/mobile/ios-developer.md",
"category": "mobile",
"model_strategy": "dynamic"
},
{
"id": "mobile:android-developer",
"name": "Android Developer",
"description": "Implements Android apps with Kotlin/Jetpack Compose",
"file": "agents/mobile/android-developer.md",
"category": "mobile",
"model_strategy": "dynamic"
},
{
"id": "mobile:ios-code-reviewer",
"name": "iOS Code Reviewer",
"description": "Reviews Swift/SwiftUI code for quality, security, and best practices",
"file": "agents/mobile/ios-code-reviewer.md",
"model": "sonnet",
"category": "mobile",
"model_strategy": "fixed"
},
{
"id": "mobile:android-code-reviewer",
"name": "Android Code Reviewer",
"description": "Reviews Kotlin/Jetpack Compose code for quality, security, and best practices",
"file": "agents/mobile/android-code-reviewer.md",
"model": "sonnet",
"category": "mobile",
"model_strategy": "fixed"
},
{
"id": "mobile:ios-designer",
"name": "iOS Designer",
"description": "iOS UI/UX design following Apple Human Interface Guidelines",
"file": "agents/mobile/ios-designer.md",
"category": "mobile",
"model_strategy": "dynamic"
},
{
"id": "mobile:android-designer",
"name": "Android Designer",
"description": "Android UI/UX design following Material Design 3 guidelines",
"file": "agents/mobile/android-designer.md",
"category": "mobile",
"model_strategy": "dynamic"
},
{
"id": "mobile:react-native-developer",
"name": "React Native Developer",
"description": "Cross-platform mobile development with React Native",
"file": "agents/mobile/react-native-developer.md",
"category": "mobile",
"model_strategy": "dynamic"
},
{
"id": "mobile:flutter-developer",
"name": "Flutter Developer",
"description": "Cross-platform mobile development with Flutter/Dart",
"file": "agents/mobile/flutter-developer.md",
"category": "mobile",
"model_strategy": "dynamic"
},
{
"id": "devops:docker-specialist",
"name": "Docker Specialist",
"description": "Creates and optimizes Docker containers and compose files",
"file": "agents/devops/docker-specialist.md",
"category": "devops",
"model_strategy": "dynamic"
},
{
"id": "devops:kubernetes-specialist",
"name": "Kubernetes Specialist",
"description": "Creates and manages Kubernetes deployments and manifests",
"file": "agents/devops/kubernetes-specialist.md",
"category": "devops",
"model_strategy": "dynamic"
},
{
"id": "devops:cicd-specialist",
"name": "CI/CD Specialist",
"description": "Creates and optimizes CI/CD pipelines for various platforms",
"file": "agents/devops/cicd-specialist.md",
"category": "devops",
"model_strategy": "dynamic"
},
{
"id": "devops:terraform-specialist",
"name": "Terraform Specialist",
"description": "Creates and manages infrastructure as code with Terraform",
"file": "agents/devops/terraform-specialist.md",
"category": "devops",
"model_strategy": "dynamic"
},
{
"id": "devops:mobile-cicd-specialist",
"name": "Mobile CI/CD Specialist",
"description": "CI/CD pipelines for iOS and Android (Fastlane, TestFlight, Play Store)",
"file": "agents/devops/mobile-cicd-specialist.md",
"category": "devops",
"model_strategy": "dynamic"
},
{
"id": "quality:refactoring-coordinator",
"name": "Refactoring Coordinator",
"description": "Plans and coordinates refactoring activities, delegates to specialists",
"file": "agents/quality/refactoring-coordinator.md",
"model": "opus",
"category": "quality",
"model_strategy": "fixed"
},
{
"id": "quality:test-coordinator",
"name": "Test Coordinator",
"description": "Coordinates testing activities across language-specific test writers",
"file": "agents/quality/test-coordinator.md",
"model": "opus",
"category": "quality",
"model_strategy": "fixed"
},
{
"id": "quality:unit-test-writer-python",
"name": "Unit Test Writer Python",
"description": "Writes Python unit tests with pytest, unittest, and mocking",
"file": "agents/quality/unit-test-writer-python.md",
"category": "quality",
"model_strategy": "dynamic"
},
{
"id": "quality:unit-test-writer-typescript",
"name": "Unit Test Writer TypeScript",
"description": "Writes TypeScript unit tests with Jest, Vitest, and testing-library",
"file": "agents/quality/unit-test-writer-typescript.md",
"category": "quality",
"model_strategy": "dynamic"
},
{
"id": "quality:unit-test-writer-java",
"name": "Unit Test Writer Java",
"description": "Writes Java unit tests with JUnit 5, Mockito, and AssertJ",
"file": "agents/quality/unit-test-writer-java.md",
"category": "quality",
"model_strategy": "dynamic"
},
{
"id": "quality:unit-test-writer-go",
"name": "Unit Test Writer Go",
"description": "Writes Go unit tests with testing package, testify, and gomock",
"file": "agents/quality/unit-test-writer-go.md",
"category": "quality",
"model_strategy": "dynamic"
},
{
"id": "quality:unit-test-writer-csharp",
"name": "Unit Test Writer C#",
"description": "Writes C# unit tests with xUnit, NUnit, MSTest, and Moq",
"file": "agents/quality/unit-test-writer-csharp.md",
"category": "quality",
"model_strategy": "dynamic"
},
{
"id": "quality:unit-test-writer-ruby",
"name": "Unit Test Writer Ruby",
"description": "Writes Ruby unit tests with RSpec, Minitest, and mocking",
"file": "agents/quality/unit-test-writer-ruby.md",
"category": "quality",
"model_strategy": "dynamic"
},
{
"id": "quality:unit-test-writer-php",
"name": "Unit Test Writer PHP",
"description": "Writes PHP unit tests with PHPUnit, Mockery, and Pest",
"file": "agents/quality/unit-test-writer-php.md",
"category": "quality",
"model_strategy": "dynamic"
},
{
"id": "quality:test-writer",
"name": "Test Writer",
"description": "Creates comprehensive test suites (unit, integration, e2e)",
"file": "agents/quality/test-writer.md",
"category": "quality",
"model_strategy": "dynamic"
},
{
"id": "quality:security-auditor",
"name": "Security Auditor",
"description": "Performs security audits and vulnerability scanning",
"file": "agents/quality/security-auditor.md",
"model": "opus",
"category": "quality",
"model_strategy": "fixed"
},
{
"id": "quality:documentation-coordinator",
"name": "Documentation Coordinator",
"description": "Creates and maintains technical documentation",
"file": "agents/quality/documentation-coordinator.md",
"model": "haiku",
"category": "quality",
"model_strategy": "fixed"
},
{
"id": "quality:runtime-verifier",
"name": "Runtime Verifier",
"description": "Verifies applications launch successfully and documents manual runtime testing steps",
"file": "agents/quality/runtime-verifier.md",
"category": "quality",
"model_strategy": "dynamic"
},
{
"id": "quality:e2e-tester",
"name": "E2E Tester",
"description": "End-to-end testing with Playwright and Puppeteer MCP for hybrid testing pipeline",
"file": "agents/quality/e2e-tester.md",
"category": "quality",
"model_strategy": "dynamic"
},
{
"id": "quality:visual-verification",
"name": "Visual Verification Agent",
"description": "Visual verification using Claude Computer Use for human-like UI inspection",
"file": "agents/quality/visual-verification-agent.md",
"model": "opus",
"category": "quality",
"model_strategy": "fixed"
},
{
"id": "quality:performance-auditor-python",
"name": "Performance Auditor (Python)",
"description": "Python-specific performance analysis and optimization",
"file": "agents/quality/performance-auditor-python.md",
"model": "sonnet",
"category": "quality",
"model_strategy": "fixed"
},
{
"id": "quality:performance-auditor-typescript",
"name": "Performance Auditor (TypeScript)",
"description": "TypeScript/Node.js-specific performance analysis",
"file": "agents/quality/performance-auditor-typescript.md",
"model": "sonnet",
"category": "quality",
"model_strategy": "fixed"
},
{
"id": "quality:performance-auditor-java",
"name": "Performance Auditor (Java)",
"description": "Java/Spring Boot-specific performance analysis",
"file": "agents/quality/performance-auditor-java.md",
"model": "sonnet",
"category": "quality",
"model_strategy": "fixed"
},
{
"id": "quality:performance-auditor-csharp",
"name": "Performance Auditor (C#)",
"description": "C#/.NET-specific performance analysis",
"file": "agents/quality/performance-auditor-csharp.md",
"model": "sonnet",
"category": "quality",
"model_strategy": "fixed"
},
{
"id": "quality:performance-auditor-go",
"name": "Performance Auditor (Go)",
"description": "Go-specific performance analysis",
"file": "agents/quality/performance-auditor-go.md",
"model": "sonnet",
"category": "quality",
"model_strategy": "fixed"
},
{
"id": "quality:performance-auditor-ruby",
"name": "Performance Auditor (Ruby)",
"description": "Ruby/Rails-specific performance analysis",
"file": "agents/quality/performance-auditor-ruby.md",
"model": "sonnet",
"category": "quality",
"model_strategy": "fixed"
},
{
"id": "quality:performance-auditor-php",
"name": "Performance Auditor (PHP)",
"description": "PHP/Laravel-specific performance analysis",
"file": "agents/quality/performance-auditor-php.md",
"model": "sonnet",
"category": "quality",
"model_strategy": "fixed"
},
{
"id": "quality:performance-auditor-ios",
"name": "Performance Auditor (iOS)",
"description": "iOS-specific performance analysis (memory, battery, animations)",
"file": "agents/quality/performance-auditor-ios.md",
"model": "sonnet",
"category": "quality",
"model_strategy": "fixed"
},
{
"id": "quality:performance-auditor-android",
"name": "Performance Auditor (Android)",
"description": "Android-specific performance analysis (ANR, memory, battery)",
"file": "agents/quality/performance-auditor-android.md",
"model": "sonnet",
"category": "quality",
"model_strategy": "fixed"
},
{
"id": "quality:mobile-test-writer",
"name": "Mobile Test Writer",
"description": "Native mobile testing for iOS (XCTest) and Android (JUnit/Espresso)",
"file": "agents/quality/mobile-test-writer.md",
"category": "quality",
"model_strategy": "dynamic"
},
{
"id": "quality:mobile-e2e-tester",
"name": "Mobile E2E Tester",
"description": "End-to-end testing for mobile apps (XCUITest, Espresso, Detox, Appium)",
"file": "agents/quality/mobile-e2e-tester.md",
"category": "quality",
"model_strategy": "dynamic"
},
{
"id": "architecture:architect",
"name": "Architect",
"description": "High-level system architecture and design decisions",
"file": "agents/architecture/architect.md",
"model": "opus",
"category": "architecture",
"model_strategy": "fixed"
},
{
"id": "data-ai:data-engineer",
"name": "Data Engineer",
"description": "Data pipelines, ETL processes, and data architecture",
"file": "agents/data-ai/data-engineer.md",
"category": "data-ai",
"model_strategy": "dynamic"
},
{
"id": "data-ai:ml-engineer",
"name": "ML Engineer",
"description": "Machine learning models, training pipelines, and ML infrastructure",
"file": "agents/data-ai/ml-engineer.md",
"category": "data-ai",
"model_strategy": "dynamic"
},
{
"id": "security:compliance-engineer",
"name": "Compliance Engineer",
"description": "Security compliance, auditing, and regulatory requirements",
"file": "agents/security/compliance-engineer.md",
"model": "opus",
"category": "security",
"model_strategy": "fixed"
},
{
"id": "security:penetration-tester",
"name": "Penetration Tester",
"description": "Security testing, vulnerability assessment, and ethical hacking",
"file": "agents/security/penetration-tester.md",
"model": "opus",
"category": "security",
"model_strategy": "fixed"
},
{
"id": "security:mobile-security-auditor",
"name": "Mobile Security Auditor",
"description": "OWASP Mobile Top 10 security auditing for iOS and Android apps",
"file": "agents/security/mobile-security-auditor.md",
"model": "opus",
"category": "security",
"model_strategy": "fixed"
},
{
"id": "security:security-auditor-python",
"name": "Security Auditor Python",
"description": "Python-specific security auditing with Bandit, Safety, and SAST",
"file": "agents/security/security-auditor-python.md",
"model": "opus",
"category": "security",
"model_strategy": "fixed"
},
{
"id": "security:security-auditor-typescript",
"name": "Security Auditor TypeScript",
"description": "TypeScript/JavaScript security auditing with ESLint security plugins",
"file": "agents/security/security-auditor-typescript.md",
"model": "opus",
"category": "security",
"model_strategy": "fixed"
},
{
"id": "security:security-auditor-java",
"name": "Security Auditor Java",
"description": "Java security auditing with SpotBugs, FindSecBugs, and OWASP checks",
"file": "agents/security/security-auditor-java.md",
"model": "opus",
"category": "security",
"model_strategy": "fixed"
},
{
"id": "security:security-auditor-go",
"name": "Security Auditor Go",
"description": "Go security auditing with gosec and Go-specific vulnerability patterns",
"file": "agents/security/security-auditor-go.md",
"model": "opus",
"category": "security",
"model_strategy": "fixed"
},
{
"id": "security:security-auditor-csharp",
"name": "Security Auditor C#",
"description": "C#/.NET security auditing with Security Code Scan and Roslyn analyzers",
"file": "agents/security/security-auditor-csharp.md",
"model": "opus",
"category": "security",
"model_strategy": "fixed"
},
{
"id": "security:security-auditor-ruby",
"name": "Security Auditor Ruby",
"description": "Ruby security auditing with Brakeman and bundler-audit",
"file": "agents/security/security-auditor-ruby.md",
"model": "opus",
"category": "security",
"model_strategy": "fixed"
},
{
"id": "security:security-auditor-php",
"name": "Security Auditor PHP",
"description": "PHP security auditing with Psalm, PHPStan, and RIPS",
"file": "agents/security/security-auditor-php.md",
"model": "opus",
"category": "security",
"model_strategy": "fixed"
},
{
"id": "sre:site-reliability-engineer",
"name": "Site Reliability Engineer",
"description": "System reliability, monitoring, and incident response",
"file": "agents/sre/site-reliability-engineer.md",
"category": "sre",
"model_strategy": "dynamic"
},
{
"id": "sre:platform-engineer",
"name": "Platform Engineer",
"description": "Platform infrastructure, developer experience, and tooling",
"file": "agents/sre/platform-engineer.md",
"category": "sre",
"model_strategy": "dynamic"
},
{
"id": "specialized:observability-engineer",
"name": "Observability Engineer",
"description": "Logging, monitoring, tracing, and observability infrastructure",
"file": "agents/specialized/observability-engineer.md",
"category": "specialized",
"model_strategy": "dynamic"
},
{
"id": "accessibility:accessibility-specialist",
"name": "Accessibility Specialist",
"description": "WCAG compliance, accessibility auditing, and inclusive design",
"file": "agents/accessibility/accessibility-specialist.md",
"category": "accessibility",
"model_strategy": "dynamic"
},
{
"id": "accessibility:mobile-accessibility-specialist",
"name": "Mobile Accessibility Specialist",
"description": "VoiceOver, TalkBack, and mobile accessibility auditing",
"file": "agents/accessibility/mobile-accessibility-specialist.md",
"category": "accessibility",
"model_strategy": "dynamic"
},
{
"id": "product:product-manager",
"name": "Product Manager",
"description": "Product strategy, requirements gathering, and stakeholder communication",
"file": "agents/product/product-manager.md",
"model": "opus",
"category": "product",
"model_strategy": "fixed"
},
{
"id": "devrel:developer-advocate",
"name": "Developer Advocate",
"description": "Developer documentation, tutorials, and community engagement",
"file": "agents/devrel/developer-advocate.md",
"category": "devrel",
"model_strategy": "dynamic"
},
{
"id": "support:dependency-manager",
"name": "Dependency Manager",
"description": "Dependency updates, security patches, and version management",
"file": "agents/support/dependency-manager.md",
"category": "support",
"model_strategy": "dynamic"
},
{
"id": "ux:ux-system-coordinator",
"name": "UX System Coordinator",
"description": "Coordinates UX work across platform-specific specialists",
"file": "agents/ux/ux-system-coordinator.md",
"model": "opus",
"category": "ux",
"model_strategy": "fixed"
},
{
"id": "ux:ux-specialist-web",
"name": "UX Specialist Web",
"description": "Specialized UX design for web applications and responsive design",
"file": "agents/ux/ux-specialist-web.md",