-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathagents.json
More file actions
1759 lines (1759 loc) · 72.8 KB
/
agents.json
File metadata and controls
1759 lines (1759 loc) · 72.8 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
{
"version": "2.0.0",
"description": "Comprehensive Unified Agent System for Claude Code with 108 specialized agents across 16 categories",
"agents": [
{
"name": "computer-vision-specialist",
"file": ".claude/agents/ai/computer-vision-specialist.md",
"description": "Computer Vision Specialist specialist",
"category": "ai",
"proactive": false,
"triggers": [
"computer vision specialist",
"computer-vision-specialist",
"computer",
"vision",
"specialist"
],
"dependencies": []
},
{
"name": "machine-learning-engineer",
"file": ".claude/agents/ai/machine-learning-engineer.md",
"description": "Machine Learning Engineer specialist",
"category": "ai",
"proactive": false,
"triggers": [
"machine learning engineer",
"machine-learning-engineer",
"machine",
"learning",
"engineer"
],
"dependencies": []
},
{
"name": "nlp-llm-integration-expert",
"file": ".claude/agents/ai/nlp-llm-integration-expert.md",
"description": "Nlp Llm Integration Expert specialist",
"category": "ai",
"proactive": false,
"triggers": [
"nlp llm integration expert",
"nlp-llm-integration-expert",
"integration",
"expert"
],
"dependencies": []
},
{
"name": "error-detective",
"file": ".claude/agents/ai-analysis/error-detective.md",
"description": "Log analysis and error pattern detection specialist focused on identifying complex error patterns, investigating system anomalies, and providing actionable insights for debugging.",
"category": "ai-analysis",
"proactive": false,
"triggers": [
"error detective",
"error-detective",
"error",
"detective"
],
"dependencies": []
},
{
"name": "graphql-architect",
"file": ".claude/agents/ai-analysis/graphql-architect.md",
"description": "GraphQL schema design and architecture specialist focused on creating scalable, efficient, and maintainable GraphQL APIs with federation and advanced query optimization.",
"category": "ai-analysis",
"proactive": false,
"triggers": [
"graphql architect",
"graphql-architect",
"graphql",
"architect"
],
"dependencies": []
},
{
"name": "prompt-engineer",
"file": ".claude/agents/ai-analysis/prompt-engineer.md",
"description": "AI prompt optimization and LLM integration specialist focused on designing effective prompts, optimizing model performance, and implementing best practices for AI-powered applications.",
"category": "ai-analysis",
"proactive": false,
"triggers": [
"prompt engineer",
"prompt-engineer",
"prompt",
"engineer"
],
"dependencies": []
},
{
"name": "cicd-pipeline-engineer",
"file": ".claude/agents/automation/cicd-pipeline-engineer.md",
"description": "Cicd Pipeline Engineer specialist",
"category": "automation",
"proactive": false,
"triggers": [
"cicd pipeline engineer",
"cicd-pipeline-engineer",
"cicd",
"pipeline",
"engineer"
],
"dependencies": []
},
{
"name": "qa-automation-engineer",
"file": ".claude/agents/automation/qa-automation-engineer.md",
"description": "Qa Automation Engineer specialist",
"category": "automation",
"proactive": false,
"triggers": [
"qa automation engineer",
"qa-automation-engineer",
"automation",
"engineer"
],
"dependencies": []
},
{
"name": "release-manager",
"file": ".claude/agents/automation/release-manager.md",
"description": "Release Manager specialist",
"category": "automation",
"proactive": false,
"triggers": [
"release manager",
"release-manager",
"release",
"manager"
],
"dependencies": []
},
{
"name": "django-expert",
"file": ".claude/agents/backend/django-expert.md",
"description": "Comprehensive Django specialist with deep expertise in Django framework, ORM optimization, REST API development, resilience engineering, structured logging, and enterprise-grade Django applications. Expert in scalable Django applications, modern Python development, and Django ecosystem best practices. Use when: - Building Django applications or APIs - Django ORM modeling and database optimization - Django REST Framework development - Authentication and permissions in Django - Django testing and deployment - Implementing resilience patterns and structured logging - Enterprise Django application architecture",
"category": "backend",
"proactive": false,
"triggers": [
"django expert",
"django-expert",
"django",
"expert"
],
"dependencies": []
},
{
"name": "fastapi-expert",
"file": ".claude/agents/backend/fastapi-expert.md",
"description": "FastAPI specialist focused on high-performance Python APIs with automatic documentation and modern async patterns. Expert in FastAPI's ecosystem, Pydantic models, dependency injection, and production-ready service architecture. Use when: - Building high-performance async Python APIs with FastAPI - Type-safe API development with automatic OpenAPI documentation - Modern Python development with async/await patterns - Dependency injection and middleware architecture - Database integration with SQLAlchemy and async patterns",
"category": "backend",
"proactive": false,
"triggers": [
"fastapi expert",
"fastapi-expert",
"fastapi",
"expert"
],
"dependencies": []
},
{
"name": "fastify-expert",
"file": ".claude/agents/backend/fastify-expert.md",
"description": "Fastify specialist focused on high-performance Node.js/TypeScript APIs, plugin architecture, and modern async patterns. Expert in Fastify's ecosystem, schema validation, and performance optimization. Use when: - Building high-performance Node.js APIs with Fastify - TypeScript-first API development - Plugin-based architecture and reusable components - Schema validation and serialization optimization - Real-time applications with WebSocket support",
"category": "backend",
"proactive": false,
"triggers": [
"fastify expert",
"fastify-expert",
"fastify",
"expert"
],
"dependencies": []
},
{
"name": "fiber-expert",
"file": ".claude/agents/backend/fiber-expert.md",
"description": "Golang Fiber framework specialist focused on Express-inspired high-performance web APIs with modern Go patterns. Expert in Fiber's ecosystem, middleware architecture, and lightning-fast HTTP service development. Use when: - Building ultra-fast HTTP APIs with Fiber - Express.js-like development experience in Go - High-throughput web services and microservices - WebSocket integration and real-time applications - Modern Go development with performance optimization",
"category": "backend",
"proactive": false,
"triggers": [
"fiber expert",
"fiber-expert",
"fiber",
"expert"
],
"dependencies": []
},
{
"name": "gin-expert",
"file": ".claude/agents/backend/gin-expert.md",
"description": "Golang Gin framework specialist focused on high-performance HTTP APIs, middleware patterns, and idiomatic Go development. Expert in Gin's ecosystem, request handling, authentication, and production-ready service architecture. Use when: - Building high-performance REST APIs with Gin - Golang web service development - Middleware-based architecture and request processing - Authentication, authorization, and security in Go APIs - Database integration with GORM and other Go ORMs",
"category": "backend",
"proactive": false,
"triggers": [
"gin expert",
"gin-expert",
"expert"
],
"dependencies": []
},
{
"name": "go-resilience-engineer",
"file": ".claude/agents/backend/go-resilience-engineer.md",
"description": "A specialized Go resilience engineering agent focused on implementing fault-tolerant systems using Sony GoBreaker, native Go concurrency patterns, and comprehensive resilience libraries for circuit breaking, retries, timeouts, bulkheads, and rate limiting.",
"category": "backend",
"proactive": false,
"triggers": [
"go resilience engineer",
"go-resilience-engineer",
"resilience",
"engineer"
],
"dependencies": []
},
{
"name": "go-zap-logging",
"file": ".claude/agents/backend/go-zap-logging.md",
"description": "A specialized Go logging agent focused on implementing high-performance, structured logging using Zap with Google Cloud integration, comprehensive contextual logging patterns, and distributed tracing support.",
"category": "backend",
"proactive": false,
"triggers": [
"go zap logging",
"go-zap-logging",
"logging"
],
"dependencies": []
},
{
"name": "laravel-expert",
"file": ".claude/agents/backend/laravel-expert.md",
"description": "Laravel specialist focused on PHP web development, Eloquent ORM, API development, and Laravel ecosystem mastery. Expert in modern PHP development and Laravel best practices. Use when: - Building Laravel applications or APIs - Eloquent relationships and database design - Laravel authentication and authorization - Package development and Laravel ecosystem - Laravel testing and deployment strategies",
"category": "backend",
"proactive": false,
"triggers": [
"laravel expert",
"laravel-expert",
"laravel",
"expert"
],
"dependencies": []
},
{
"name": "nodejs-expert",
"file": ".claude/agents/backend/nodejs-expert.md",
"description": "Enterprise-grade Node.js specialist with comprehensive expertise in modern JavaScript, Express.js, resilience engineering, structured logging, and scalable backend architecture. Expert in async programming, performance optimization, microservices, and production-ready Node.js applications with Context7 MCP integration for live documentation access. Use when: - Building Node.js applications or APIs - Express.js server development with resilience patterns - Database integration with Node.js - Real-time applications with WebSockets - Node.js performance optimization and scaling - Implementing circuit breakers and retry mechanisms - Structured logging and observability - Enterprise-grade backend architecture",
"category": "backend",
"proactive": false,
"triggers": [
"nodejs expert",
"nodejs-expert",
"nodejs",
"expert"
],
"dependencies": []
},
{
"name": "prisma-expert",
"file": ".claude/agents/backend/prisma-expert.md",
"description": "Prisma ORM specialist focused on modern TypeScript database development with type-safe queries and schema management. Expert in Prisma's ecosystem, schema design, migrations, and production-ready database architecture. Use when: - Building type-safe database layers with Prisma - Database schema design and migrations - TypeScript/Node.js applications with complex data relationships - Real-time data with Prisma subscriptions - Database performance optimization and query analysis",
"category": "backend",
"proactive": false,
"triggers": [
"prisma expert",
"prisma-expert",
"prisma",
"expert"
],
"dependencies": []
},
{
"name": "python-hyx-resilience",
"file": ".claude/agents/backend/python-hyx-resilience.md",
"description": "Elite Python Professional specializing in advanced resilience engineering with Hyx. Expert in async programming, fault-tolerant systems, and Pythonic design patterns. Combines resilience patterns with modern Python idioms, performance optimization, and comprehensive testing strategies. Enhanced with deep Python specialization. Use when: - Implementing fault-tolerant Python systems with async patterns - Building resilient microservices with Hyx and complementary libraries - Optimizing Python performance with async/await and proper resource management - Creating production-ready Python applications with comprehensive error handling - Designing scalable Python architectures with resilience patterns",
"category": "backend",
"proactive": true,
"triggers": [
"python hyx resilience",
"python-hyx-resilience",
"python",
"resilience"
],
"dependencies": []
},
{
"name": "rails-expert",
"file": ".claude/agents/backend/rails-expert.md",
"description": "Comprehensive Ruby on Rails specialist with expertise in backend development, ActiveRecord, API design, resilience engineering, and structured logging. Combines deep Rails knowledge with enterprise-grade practices and modern MCP integrations. Use when: - Building Rails applications or APIs with resilience patterns - ActiveRecord modeling and database optimization - Rails performance optimization and enterprise architecture - Authentication, authorization, and security implementation - Structured logging and observability implementation - Rails testing with comprehensive coverage - Integrating external services with fault tolerance",
"category": "backend",
"proactive": false,
"triggers": [
"rails expert",
"rails-expert",
"rails",
"expert"
],
"dependencies": []
},
{
"name": "resilience-engineer",
"file": ".claude/agents/backend/resilience-engineer.md",
"description": "A language-agnostic resilience engineering agent that helps implement fault-tolerant, self-healing systems with proper circuit breakers, retry mechanisms, and graceful degradation patterns.",
"category": "backend",
"proactive": false,
"triggers": [
"resilience engineer",
"resilience-engineer",
"resilience",
"engineer"
],
"dependencies": []
},
{
"name": "typescript-cockatiel-resilience",
"file": ".claude/agents/backend/typescript-cockatiel-resilience.md",
"description": "A specialized TypeScript resilience engineering agent focused on implementing fault-tolerant systems using the Cockatiel library with comprehensive patterns for circuit breakers, retries, timeouts, bulkheads, and rate limiting.",
"category": "backend",
"proactive": false,
"triggers": [
"typescript cockatiel resilience",
"typescript-cockatiel-resilience",
"typescript",
"cockatiel",
"resilience"
],
"dependencies": []
},
{
"name": "typescript-pino-logging",
"file": ".claude/agents/backend/typescript-pino-logging.md",
"description": "A specialized TypeScript logging agent focused on implementing high-performance, structured logging using Pino with Fastify integration, Google Cloud compatibility, and comprehensive contextual logging patterns.",
"category": "backend",
"proactive": false,
"triggers": [
"typescript pino logging",
"typescript-pino-logging",
"typescript",
"pino",
"logging"
],
"dependencies": []
},
{
"name": "business-analyst",
"file": ".claude/agents/business/business-analyst.md",
"description": "Business Analyst specialist",
"category": "business",
"proactive": false,
"triggers": [
"business analyst",
"business-analyst",
"business",
"analyst"
],
"dependencies": []
},
{
"name": "financial-modeling-agent",
"file": ".claude/agents/business/financial-modeling-agent.md",
"description": "Quantitative financial modeling specialist focused on financial analysis, risk assessment, algorithmic trading, and financial technology implementation. Expert in financial mathematics, statistical modeling, and fintech applications. Inspired by wshobson/agents quant analyst. Use when: - Building financial models and quantitative analysis systems - Implementing risk management and portfolio optimization algorithms - Developing algorithmic trading strategies and backtesting systems - Creating financial dashboards and reporting systems - Designing fintech applications and payment processing systems - Performing financial data analysis and market research",
"category": "business",
"proactive": true,
"triggers": [
"financial modeling agent",
"financial-modeling-agent",
"financial",
"modeling",
"agent"
],
"dependencies": []
},
{
"name": "healthcare-compliance-agent",
"file": ".claude/agents/business/healthcare-compliance-agent.md",
"description": "Healthcare Compliance Agent specialist",
"category": "business",
"proactive": false,
"triggers": [
"healthcare compliance agent",
"healthcare-compliance-agent",
"healthcare",
"compliance",
"agent"
],
"dependencies": []
},
{
"name": "payment-integration-agent",
"file": ".claude/agents/business/payment-integration-agent.md",
"description": "Payment Integration Agent specialist",
"category": "business",
"proactive": false,
"triggers": [
"payment integration agent",
"payment-integration-agent",
"payment",
"integration",
"agent"
],
"dependencies": []
},
{
"name": "product-manager",
"file": ".claude/agents/business/product-manager.md",
"description": "Product Manager specialist",
"category": "business",
"proactive": false,
"triggers": [
"product manager",
"product-manager",
"product",
"manager"
],
"dependencies": []
},
{
"name": "bug-hunting-tango",
"file": ".claude/agents/choreography/bug-hunting-tango.md",
"description": "Bug Hunting Tango specialist",
"category": "choreography",
"proactive": false,
"triggers": [],
"dependencies": []
},
{
"name": "code-review-waltz",
"file": ".claude/agents/choreography/code-review-waltz.md",
"description": "Code Review Waltz specialist",
"category": "choreography",
"proactive": false,
"triggers": [],
"dependencies": []
},
{
"name": "feature-development-dance",
"file": ".claude/agents/choreography/feature-development-dance.md",
"description": "Feature Development Dance specialist",
"category": "choreography",
"proactive": false,
"triggers": [],
"dependencies": []
},
{
"name": "exponential-planner",
"file": ".claude/agents/context-orchestrators/exponential-planner.md",
"description": "Exponential Planner specialist",
"category": "orchestration",
"proactive": false,
"triggers": [],
"dependencies": []
},
{
"name": "session-manager",
"file": ".claude/agents/context-orchestrators/session-manager.md",
"description": "Session Manager specialist",
"category": "orchestration",
"proactive": false,
"triggers": [],
"dependencies": []
},
{
"name": "vibe-coding-coordinator",
"file": ".claude/agents/context-orchestrators/vibe-coding-coordinator.md",
"description": "Vibe Coding Coordinator specialist",
"category": "orchestration",
"proactive": false,
"triggers": [],
"dependencies": []
},
{
"name": "code-archaeologist-time-traveler",
"file": ".claude/agents/creative/code-archaeologist-time-traveler.md",
"description": "A mystical code archaeologist who can see through time itself. You analyze git history not just as data, but as epic stories of human struggle, triumph, and evolution. Every commit tells a tale, every refactor marks an era, and every bug fix represents a battle won against chaos.",
"category": "creative",
"proactive": false,
"triggers": [
"code archaeologist time traveler",
"code-archaeologist-time-traveler",
"code",
"archaeologist",
"time",
"traveler"
],
"dependencies": []
},
{
"name": "rubber-duck-debugger",
"file": ".claude/agents/creative/rubber-duck-debugger.md",
"description": "The world's most effective rubber duck debugger that guides developers to breakthroughs through strategic questioning using the Socratic method. Asks the perfect question at the perfect moment to create \"aha!\" moments.",
"category": "creative",
"proactive": false,
"triggers": [
"rubber duck debugger",
"rubber-duck-debugger",
"rubber",
"duck",
"debugger"
],
"dependencies": []
},
{
"name": "technical-debt-collector",
"file": ".claude/agents/creative/technical-debt-collector.md",
"description": "A friendly but firm Technical Debt Collector who works for the Code Quality Family. Tracks every shortcut, TODO comment, and \"temporary\" workaround with meticulous attention, offering protection plans and structured refactoring to help developers pay down technical debt before it becomes a problem.",
"category": "creative",
"proactive": false,
"triggers": [
"technical debt collector",
"technical-debt-collector",
"technical",
"debt",
"collector"
],
"dependencies": []
},
{
"name": "analytics-implementation-specialist",
"file": ".claude/agents/data/analytics-implementation-specialist.md",
"description": "Analytics Implementation Specialist specialist",
"category": "data",
"proactive": false,
"triggers": [
"analytics implementation specialist",
"analytics-implementation-specialist",
"analytics",
"implementation",
"specialist"
],
"dependencies": []
},
{
"name": "business-intelligence-developer",
"file": ".claude/agents/data/business-intelligence-developer.md",
"description": "Business Intelligence Developer specialist",
"category": "data",
"proactive": false,
"triggers": [
"business intelligence developer",
"business-intelligence-developer",
"business",
"intelligence",
"developer"
],
"dependencies": []
},
{
"name": "data-engineer",
"file": ".claude/agents/data/data-engineer.md",
"description": "Data Engineer specialist",
"category": "data",
"proactive": false,
"triggers": [
"data engineer",
"data-engineer",
"data",
"engineer"
],
"dependencies": []
},
{
"name": "search-specialist",
"file": ".claude/agents/data/search-specialist.md",
"description": "Search engine and information retrieval specialist focused on Elasticsearch, OpenSearch, Solr, and modern search technologies. Expert in search relevance, performance optimization, and search-driven applications. Inspired by wshobson/agents search expertise. Use when: - Implementing search functionality and full-text search capabilities - Optimizing search relevance, performance, and user experience - Building search-driven applications and recommendation systems - Designing search architectures and data indexing strategies - Troubleshooting search performance and relevance issues - Implementing advanced search features like faceting, autocomplete, and personalization",
"category": "data",
"proactive": true,
"triggers": [
"search specialist",
"search-specialist",
"search",
"specialist"
],
"dependencies": []
},
{
"name": "database-architect",
"file": ".claude/agents/database/database-architect.md",
"description": "Database specialist focused on schema design, query optimization, performance tuning, and database architecture. Expert in SQL, NoSQL, data modeling, and database scaling strategies. Use when: - Database schema design and optimization - Query performance tuning and indexing - Database scaling and sharding strategies - Data migration and ETL processes - Database security and backup strategies",
"category": "data",
"proactive": false,
"triggers": [
"database architect",
"database-architect",
"database",
"architect"
],
"dependencies": []
},
{
"name": "ux-designer",
"file": ".claude/agents/design/ux-designer.md",
"description": "UX/UI design specialist focused on user experience, interface design, and design systems. Expert in user research, wireframing, prototyping, and accessibility design. Use when: - Designing user interfaces and experiences - Creating design systems and component libraries - Conducting user research and usability testing - Planning information architecture - Accessibility and inclusive design guidance",
"category": "design",
"proactive": false,
"triggers": [
"ux designer",
"ux-designer",
"designer"
],
"dependencies": []
},
{
"name": "deployment-specialist",
"file": ".claude/agents/devops/deployment-specialist.md",
"description": "DevOps specialist focused on deployment automation, CI/CD pipelines, infrastructure as code, and production reliability. Expert in cloud platforms, containerization, and monitoring systems. Use when: - Setting up CI/CD pipelines - Deployment automation and orchestration - Infrastructure provisioning and management - Production monitoring and alerting - Performance optimization and scaling",
"category": "infrastructure",
"proactive": false,
"triggers": [
"deployment specialist",
"deployment-specialist",
"deployment",
"specialist"
],
"dependencies": []
},
{
"name": "angular-expert",
"file": ".claude/agents/frontend/angular-expert.md",
"description": "Angular specialist focused on modern Angular development, TypeScript, RxJS, and Angular ecosystem mastery. Expert in enterprise-scale applications, dependency injection, and Angular best practices. Use when: - Building Angular applications or components - Angular architecture and dependency injection - RxJS reactive programming patterns - NgRx state management implementation - Angular testing with Jasmine and Karma",
"category": "frontend",
"proactive": false,
"triggers": [
"angular expert",
"angular-expert",
"angular",
"expert"
],
"dependencies": []
},
{
"name": "design-system-architect",
"file": ".claude/agents/frontend/design-system-architect.md",
"description": "Design System Architect specialist",
"category": "frontend",
"proactive": false,
"triggers": [
"design system architect",
"design-system-architect",
"design",
"system",
"architect"
],
"dependencies": []
},
{
"name": "micro-frontend-architect",
"file": ".claude/agents/frontend/micro-frontend-architect.md",
"description": "Micro Frontend Architect specialist",
"category": "frontend",
"proactive": false,
"triggers": [
"micro frontend architect",
"micro-frontend-architect",
"micro",
"frontend",
"architect"
],
"dependencies": []
},
{
"name": "mobile-developer",
"file": ".claude/agents/frontend/mobile-developer.md",
"description": "Mobile Developer specialist",
"category": "frontend",
"proactive": false,
"triggers": [
"mobile developer",
"mobile-developer",
"mobile",
"developer"
],
"dependencies": []
},
{
"name": "nextjs-expert",
"file": ".claude/agents/frontend/nextjs-expert.md",
"description": "Next.js specialist focused on React full-stack development, SSR/SSG, API routes, and modern Next.js features. Expert in performance optimization, deployment, and the Next.js ecosystem. Use when: - Building Next.js applications with SSR/SSG - API routes and full-stack Next.js development - Next.js 13+ App Router and Server Components - Performance optimization and Core Web Vitals - Next.js deployment and production optimization",
"category": "frontend",
"proactive": false,
"triggers": [
"nextjs expert",
"nextjs-expert",
"nextjs",
"expert"
],
"dependencies": []
},
{
"name": "pwa-specialist",
"file": ".claude/agents/frontend/pwa-specialist.md",
"description": "Pwa Specialist specialist",
"category": "frontend",
"proactive": false,
"triggers": [
"pwa specialist",
"pwa-specialist",
"specialist"
],
"dependencies": []
},
{
"name": "react-expert",
"file": ".claude/agents/frontend/react-expert.md",
"description": "React specialist focused on modern component architecture, state management, performance optimization, and React ecosystem. Expert in hooks, context, and advanced React patterns. Use when: - Building React applications or components - State management with Redux, Zustand, or Context - React performance optimization - Modern React patterns and hooks - React testing with Jest and Testing Library",
"category": "frontend",
"proactive": false,
"triggers": [
"react expert",
"react-expert",
"react",
"expert"
],
"dependencies": []
},
{
"name": "vue-expert",
"file": ".claude/agents/frontend/vue-expert.md",
"description": "Vue.js specialist focused on modern Vue 3 development, Composition API, state management, and Vue ecosystem. Expert in reactive programming, component architecture, and Vue-specific patterns. Use when: - Building Vue.js applications or components - Vue 3 Composition API and reactive patterns - Pinia state management and Vuex migration - Vue Router and navigation patterns - Vue testing with Vitest and Vue Test Utils",
"category": "frontend",
"proactive": false,
"triggers": [
"vue expert",
"vue-expert",
"expert"
],
"dependencies": []
},
{
"name": "webassembly-specialist",
"file": ".claude/agents/frontend/webassembly-specialist.md",
"description": "Webassembly Specialist specialist",
"category": "frontend",
"proactive": false,
"triggers": [
"webassembly specialist",
"webassembly-specialist",
"webassembly",
"specialist"
],
"dependencies": []
},
{
"name": "cloud-architect",
"file": ".claude/agents/infrastructure/cloud-architect.md",
"description": "Cloud Architect specialist",
"category": "infrastructure",
"proactive": false,
"triggers": [
"cloud architect",
"cloud-architect",
"cloud",
"architect"
],
"dependencies": []
},
{
"name": "database-admin",
"file": ".claude/agents/infrastructure/database-admin.md",
"description": "Database Admin specialist",
"category": "infrastructure",
"proactive": false,
"triggers": [
"database admin",
"database-admin",
"database",
"admin"
],
"dependencies": []
},
{
"name": "devops-troubleshooter",
"file": ".claude/agents/infrastructure/devops-troubleshooter.md",
"description": "Devops Troubleshooter specialist",
"category": "infrastructure",
"proactive": false,
"triggers": [
"devops troubleshooter",
"devops-troubleshooter",
"devops",
"troubleshooter"
],
"dependencies": []
},
{
"name": "incident-responder",
"file": ".claude/agents/infrastructure/incident-responder.md",
"description": "Incident Responder specialist",
"category": "infrastructure",
"proactive": false,
"triggers": [
"incident responder",
"incident-responder",
"incident",
"responder"
],
"dependencies": []
},
{
"name": "network-engineer",
"file": ".claude/agents/infrastructure/network-engineer.md",
"description": "Network Engineer specialist",
"category": "infrastructure",
"proactive": false,
"triggers": [
"network engineer",
"network-engineer",
"network",
"engineer"
],
"dependencies": []
},
{
"name": "observability-engineer",
"file": ".claude/agents/infrastructure/observability-engineer.md",
"description": "Observability Engineer specialist",
"category": "infrastructure",
"proactive": false,
"triggers": [
"observability engineer",
"observability-engineer",
"observability",
"engineer"
],
"dependencies": []
},
{
"name": "pulumi-typescript-specialist",
"file": ".claude/agents/infrastructure/pulumi-typescript-specialist.md",
"description": "Pulumi Typescript Specialist specialist",
"category": "infrastructure",
"proactive": false,
"triggers": [
"pulumi typescript specialist",
"pulumi-typescript-specialist",
"pulumi",
"typescript",
"specialist"
],
"dependencies": []
},
{
"name": "serverless-architect",
"file": ".claude/agents/infrastructure/serverless-architect.md",
"description": "Serverless Architect specialist",
"category": "infrastructure",
"proactive": false,
"triggers": [
"serverless architect",
"serverless-architect",
"serverless",
"architect"
],
"dependencies": []
},
{
"name": "site-reliability-engineer",
"file": ".claude/agents/infrastructure/site-reliability-engineer.md",
"description": "Site Reliability Engineer specialist",
"category": "infrastructure",
"proactive": false,
"triggers": [
"site reliability engineer",
"site-reliability-engineer",
"site",
"reliability",
"engineer"
],
"dependencies": []
},
{
"name": "terraform-specialist",
"file": ".claude/agents/infrastructure/terraform-specialist.md",
"description": "Terraform Specialist specialist",
"category": "infrastructure",
"proactive": false,
"triggers": [
"terraform specialist",
"terraform-specialist",
"terraform",
"specialist"
],
"dependencies": []
},
{
"name": "activation-system",
"file": ".claude/agents/orchestration/activation-system.md",
"description": "Activation System specialist",
"category": "orchestration",
"proactive": false,
"triggers": [],
"dependencies": []
},
{
"name": "agent-communication-protocol",
"file": ".claude/agents/orchestration/agent-communication-protocol.md",
"description": "Structured inter-agent communication system that standardizes information exchange, coordination, and workflow management across all specialized agents. Implements JSON-based messaging protocols with metadata tracking, request/response patterns, and collaborative workflow coordination standards. Use when: - Coordinating complex multi-agent workflows - Standardizing information exchange between agents - Tracking agent interactions and communication patterns - Implementing structured handoff protocols - Managing collaborative decision-making processes",
"category": "orchestration",
"proactive": true,
"triggers": [
"agent communication protocol",
"agent-communication-protocol",
"agent",
"communication",
"protocol"
],
"dependencies": []
},
{
"name": "auto-detection-engine",
"file": ".claude/agents/orchestration/auto-detection-engine.md",
"description": "Automatically detects when to trigger orchestration agents based on request complexity, technology stack mentions, cross-domain requirements, and historical patterns. Eliminates need for explicit orchestration agent invocation. Auto-triggers: - @enhanced-agent-organizer for complex multi-domain tasks - @knowledge-graph-manager for context-heavy projects - @intelligent-agent-selector for technology stack optimization - @agent-communication-protocol for multi-agent workflows",
"category": "orchestration",
"proactive": true,
"triggers": [
"auto detection engine",
"auto-detection-engine",
"auto",
"detection",
"engine"
],
"dependencies": []
},
{
"name": "choreography-engine",
"file": ".claude/agents/orchestration/choreography-engine.md",
"description": "Choreography Engine specialist",
"category": "orchestration",
"proactive": false,
"triggers": [],
"dependencies": []
},
{
"name": "context-aware-activator",
"file": ".claude/agents/orchestration/context-aware-activator.md",
"description": "Monitors project context, user patterns, and environmental factors to automatically activate appropriate orchestration agents based on real-time needs assessment. Provides invisible intelligence that anticipates coordination requirements. Context Sources: - Project file structure and dependencies - Git repository activity and patterns - User interaction history and preferences - Current system state and resource availability",
"category": "orchestration",
"proactive": true,
"triggers": [
"context aware activator",
"context-aware-activator",
"context",
"aware",
"activator"
],
"dependencies": []
},
{
"name": "enhanced-agent-template",
"file": ".claude/agents/orchestration/enhanced-agent-template.md",
"description": "Enhanced agent definition template that incorporates structured interaction protocols, context acquisition requirements, and communication standards from lst97 patterns. This template provides the foundation for creating agents with standardized collaboration capabilities and systematic workflow integration. Use when: - Creating new specialized agents with structured interaction protocols - Updating existing agents with enhanced communication standards - Implementing standardized context acquisition and handoff procedures - Ensuring consistent agent behavior and integration patterns",
"category": "orchestration",
"proactive": true,
"triggers": [
"enhanced agent template",
"enhanced-agent-template",
"enhanced",
"agent",
"template"
],
"dependencies": []
},
{
"name": "intelligent-agent-selector",
"file": ".claude/agents/orchestration/intelligent-agent-selector.md",
"description": "Advanced agent selection system that intelligently analyzes project context, task requirements, and agent capabilities to automatically select optimal agents for specific tasks. Combines context analysis, technology detection, and historical performance data to make evidence-based agent recommendations. Use when: - Automatically selecting agents based on project context - Analyzing technology stacks for agent matching - Optimizing agent selection based on historical performance - Implementing context-aware agent routing - Managing agent workload and capacity planning",
"category": "orchestration",
"proactive": true,
"triggers": [
"intelligent agent selector",
"intelligent-agent-selector",
"intelligent",
"agent",
"selector"
],
"dependencies": []
},
{
"name": "knowledge-graph-manager",
"file": ".claude/agents/orchestration/knowledge-graph-manager.md",
"description": "Advanced centralized knowledge graph and context management system that maintains a dynamic, comprehensive understanding of project ecosystem. Combines lst97 patterns with our Basic Memory MCP integration for intelligent context distribution, agent activity tracking, and collaborative workflow coordination. Use when: - Managing complex multi-agent project contexts - Coordinating information flow between specialized agents - Tracking agent activities and collaborative progress - Providing tailored context briefings for agent workflows - Maintaining centralized project knowledge and decision history",
"category": "orchestration",
"proactive": true,
"triggers": [
"knowledge graph manager",
"knowledge-graph-manager",
"knowledge",
"graph",
"manager"
],
"dependencies": []
},
{
"name": "learning-system",
"file": ".claude/agents/orchestration/learning-system.md",
"description": "Learning System specialist",
"category": "orchestration",
"proactive": false,
"triggers": [],
"dependencies": []
},