forked from wshobson/agents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommands.yaml
More file actions
1492 lines (1430 loc) · 44.2 KB
/
commands.yaml
File metadata and controls
1492 lines (1430 loc) · 44.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
commands:
# Development & Architecture Agents
- name: backend-architect
title: Backend Architect
description: Design RESTful APIs, microservice boundaries, and database schemas with scalable architecture patterns
type: agent
category: architecture
content: backend-architect.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- api-design
- microservices
- database-schema
- system-architecture
agentCapabilities:
- Design RESTful and GraphQL APIs
- Architect microservice boundaries
- Design database schemas and relationships
- Plan system integrations and data flow
- Optimize for scalability and performance
agentTools:
- API design patterns
- Database modeling
- System architecture principles
- Performance optimization
- name: frontend-developer
title: Frontend Developer
description: Build React components, implement responsive layouts, and handle client-side state management
type: agent
category: development
content: frontend-developer.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- react-development
- responsive-design
- state-management
- component-architecture
agentCapabilities:
- Create reusable React components
- Implement responsive CSS layouts
- Manage application state
- Optimize frontend performance
- Handle client-side routing
agentTools:
- React framework
- CSS preprocessors
- State management libraries
- Build tools and bundlers
- name: ui-ux-designer
title: UI/UX Designer
description: Create interface designs, wireframes, and design systems with user-centered design principles
type: agent
category: app-design
content: ui-ux-designer.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- interface-design
- wireframing
- design-systems
- user-research
agentCapabilities:
- Create wireframes and mockups
- Design consistent UI components
- Develop design systems
- Conduct user research
- Optimize user experience flows
agentTools:
- Design thinking methodology
- Prototyping tools
- Accessibility guidelines
- User research techniques
- name: mobile-developer
title: Mobile Developer
description: Develop React Native or Flutter apps with native integrations and platform-specific features
type: agent
category: mobile-development
content: mobile-developer.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- react-native
- flutter
- native-integration
- cross-platform
agentCapabilities:
- Build cross-platform mobile apps
- Integrate with native device features
- Optimize for mobile performance
- Handle platform-specific requirements
- Implement offline functionality
agentTools:
- React Native framework
- Flutter SDK
- Native development tools
- Mobile testing frameworks
- name: graphql-architect
title: GraphQL Architect
description: Design GraphQL schemas, resolvers, and federation patterns for efficient data querying
type: agent
category: architecture
content: graphql-architect.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- schema-design
- resolver-optimization
- federation
- query-optimization
agentCapabilities:
- Design efficient GraphQL schemas
- Implement resolver patterns
- Set up schema federation
- Optimize query performance
- Handle data loading strategies
agentTools:
- GraphQL schema design
- Apollo Server/Client
- DataLoader patterns
- Federation tools
- name: architect-reviewer
title: Architecture Reviewer
description: Reviews code changes for architectural consistency, design patterns, and system integration quality
type: agent
category: architecture
content: architect-review.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- architectural-review
- design-patterns
- code-consistency
- system-integration
agentCapabilities:
- Evaluate architectural decisions
- Ensure design pattern consistency
- Review system integrations
- Assess scalability implications
- Validate technical debt management
agentTools:
- Architecture review frameworks
- Design pattern analysis
- Code quality metrics
- Technical debt assessment
# Language Specialists
- name: python-pro
title: Python Pro
description: Write idiomatic Python code with advanced features like decorators, generators, and async/await patterns
type: agent
category: language-specialist
content: python-pro.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- python-development
- async-programming
- performance-optimization
- testing-frameworks
agentCapabilities:
- Write clean, idiomatic Python code
- Implement async/await patterns
- Use advanced Python features
- Create comprehensive test suites
- Optimize Python performance
agentTools:
- Python standard library
- pytest framework
- Type hints and mypy
- Performance profiling
- name: ruby-pro
title: Ruby Pro
description: Write idiomatic Ruby code with metaprogramming, Rails patterns, gem development, and testing frameworks
type: agent
category: language-specialist
content: ruby-pro.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- ruby-development
- rails-patterns
- metaprogramming
- gem-development
agentCapabilities:
- Write clean Ruby code
- Implement Rails best practices
- Use metaprogramming techniques
- Develop Ruby gems
- Create comprehensive tests
agentTools:
- Ruby language features
- Rails framework
- RSpec and Minitest
- Bundler and gem tools
- name: golang-pro
title: Go Pro
description: Write idiomatic Go code with goroutines, channels, and interfaces for concurrent systems
type: agent
category: language-specialist
content: golang-pro.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- go-development
- concurrency
- system-programming
- microservices
agentCapabilities:
- Write idiomatic Go code
- Implement concurrent patterns
- Design efficient interfaces
- Build microservices
- Handle error management
agentTools:
- Go standard library
- Goroutines and channels
- Testing framework
- Profiling tools
- name: rust-pro
title: Rust Pro
description: Write idiomatic Rust with ownership patterns, lifetimes, and trait implementations for systems programming
type: agent
category: language-specialist
content: rust-pro.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- rust-development
- memory-safety
- systems-programming
- performance-optimization
agentCapabilities:
- Write memory-safe Rust code
- Implement ownership patterns
- Design trait systems
- Optimize for performance
- Handle concurrency safely
agentTools:
- Rust compiler and borrow checker
- Cargo build system
- Testing frameworks
- Performance analysis
- name: c-pro
title: C Pro
description: Write efficient C code with proper memory management, system calls, and embedded systems programming
type: agent
category: language-specialist
content: c-pro.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- c-programming
- memory-management
- system-calls
- embedded-systems
agentCapabilities:
- Write efficient C code
- Manage memory manually
- Use system calls effectively
- Develop embedded systems
- Optimize for performance
agentTools:
- C standard library
- Memory debugging tools
- System programming APIs
- Embedded development tools
- name: cpp-pro
title: C++ Pro
description: Write idiomatic C++ code with modern features, RAII, smart pointers, and STL algorithms
type: agent
category: language-specialist
content: cpp-pro.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- cpp-development
- modern-cpp
- template-programming
- performance-optimization
agentCapabilities:
- Write modern C++ code
- Use RAII and smart pointers
- Implement template systems
- Leverage STL algorithms
- Optimize for performance
agentTools:
- Modern C++ standards
- STL and Boost libraries
- Template metaprogramming
- Performance profiling
- name: javascript-pro
title: JavaScript Pro
description: Master modern JavaScript with ES6+, async patterns, and Node.js APIs for web and server development
type: agent
category: language-specialist
content: javascript-pro.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- javascript-development
- async-programming
- nodejs-development
- web-apis
agentCapabilities:
- Write modern JavaScript code
- Implement async patterns
- Develop Node.js applications
- Use web APIs effectively
- Handle event-driven programming
agentTools:
- ES6+ features
- Node.js runtime
- NPM ecosystem
- Web APIs and standards
- name: typescript-pro
title: TypeScript Pro
description: Master TypeScript with advanced types, generics, and strict type safety for large-scale applications
type: agent
category: language-specialist
content: typescript-pro.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- typescript-development
- type-systems
- generic-programming
- enterprise-patterns
agentCapabilities:
- Write type-safe TypeScript code
- Design complex type systems
- Use advanced generics
- Implement enterprise patterns
- Ensure compile-time safety
agentTools:
- TypeScript compiler
- Advanced type features
- Generic programming
- IDE integration
- name: php-pro
title: PHP Pro
description: Write idiomatic PHP code with modern features, frameworks, and performance optimizations
type: agent
category: language-specialist
content: php-pro.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- php-development
- framework-development
- performance-optimization
- web-development
agentCapabilities:
- Write modern PHP code
- Use PHP frameworks effectively
- Optimize PHP performance
- Handle web development tasks
- Implement security best practices
agentTools:
- Modern PHP features
- Popular PHP frameworks
- Composer package manager
- Performance profiling
- name: java-pro
title: Java Pro
description: Master modern Java with streams, concurrency, Spring Boot, and JVM optimization
type: agent
category: language-specialist
content: java-pro.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- java-development
- spring-framework
- concurrency
- jvm-optimization
agentCapabilities:
- Write modern Java code
- Use streams and lambdas
- Implement concurrent systems
- Develop Spring applications
- Optimize JVM performance
agentTools:
- Java SE/EE APIs
- Spring ecosystem
- Concurrency utilities
- JVM profiling tools
- name: elixir-pro
title: Elixir Pro
description: Write idiomatic Elixir code with OTP patterns, functional programming, and Phoenix frameworks
type: agent
category: language-specialist
content: elixir-pro.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- elixir-development
- otp-patterns
- functional-programming
- phoenix-framework
agentCapabilities:
- Write functional Elixir code
- Implement OTP patterns
- Build Phoenix applications
- Handle distributed systems
- Manage fault tolerance
agentTools:
- Elixir language features
- OTP framework
- Phoenix web framework
- Fault tolerance patterns
- name: csharp-pro
title: C# Pro
description: Write modern C# code with advanced features, .NET optimization, and enterprise patterns
type: agent
category: language-specialist
content: csharp-pro.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- csharp-development
- dotnet-framework
- enterprise-patterns
- async-programming
agentCapabilities:
- Write modern C# code
- Use .NET frameworks effectively
- Implement enterprise patterns
- Handle async programming
- Optimize .NET performance
agentTools:
- .NET framework/Core
- Visual Studio tools
- NuGet packages
- Performance analyzers
- name: scala-pro
title: Scala Pro
description: Master enterprise-grade Scala development with functional programming, distributed systems, and big data processing
type: agent
category: language-specialist
content: scala-pro.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- scala-development
- functional-programming
- distributed-systems
- big-data-processing
agentCapabilities:
- Write functional Scala code
- Design distributed systems
- Process big data efficiently
- Use actor systems
- Implement reactive patterns
agentTools:
- Scala language features
- Apache Spark
- Akka/Pekko framework
- ZIO/Cats Effect
- name: flutter-expert
title: Flutter Expert
description: Master Flutter development with Dart, widgets, state management, and cross-platform deployment
type: agent
category: mobile-development
content: flutter-expert.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- flutter-development
- dart-programming
- widget-systems
- state-management
agentCapabilities:
- Build Flutter applications
- Create custom widgets
- Manage application state
- Implement animations
- Deploy to multiple platforms
agentTools:
- Flutter SDK
- Dart language
- Widget framework
- State management solutions
- name: unity-developer
title: Unity Developer
description: Build Unity games with optimized scripts, performance tuning, and game development best practices
type: agent
category: game-development
content: unity-developer.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- unity-development
- game-programming
- performance-optimization
- 3d-graphics
agentCapabilities:
- Develop Unity games
- Write optimized C# scripts
- Implement game mechanics
- Optimize performance
- Handle asset management
agentTools:
- Unity engine
- C# scripting
- Asset pipeline
- Performance profiler
- name: minecraft-bukkit-pro
title: Minecraft Bukkit Pro
description: Master Minecraft server plugin development with Bukkit, Spigot, and Paper APIs
type: agent
category: game-development
content: minecraft-bukkit-pro.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- minecraft-development
- bukkit-plugins
- server-administration
- event-systems
agentCapabilities:
- Develop Bukkit plugins
- Handle server events
- Implement game mechanics
- Manage player data
- Optimize server performance
agentTools:
- Bukkit/Spigot/Paper APIs
- Plugin development tools
- Event handling systems
- Configuration management
- name: ios-developer
title: iOS Developer
description: Develop native iOS applications with Swift, SwiftUI, and iOS-specific features
type: agent
category: mobile-development
content: ios-developer.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- ios-development
- swift-programming
- swiftui
- app-store-deployment
agentCapabilities:
- Build native iOS apps
- Write Swift code
- Create SwiftUI interfaces
- Integrate iOS frameworks
- Handle App Store deployment
agentTools:
- Xcode IDE
- Swift language
- SwiftUI framework
- iOS SDK
- name: sql-pro
title: SQL Pro
description: Write complex SQL queries, optimize execution plans, and design normalized database schemas
type: agent
category: database-management
content: sql-pro.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- sql-development
- query-optimization
- database-design
- performance-tuning
agentCapabilities:
- Write complex SQL queries
- Optimize query performance
- Design database schemas
- Analyze execution plans
- Handle data migrations
agentTools:
- SQL standards
- Query optimization
- Database design principles
- Performance analysis
# Infrastructure & Operations Agents
- name: devops-troubleshooter
title: DevOps Troubleshooter
description: Debug production issues, analyze logs, and fix deployment failures with systematic problem-solving
type: agent
category: incident-response
content: devops-troubleshooter.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- production-debugging
- log-analysis
- deployment-issues
- system-monitoring
agentCapabilities:
- Debug production issues
- Analyze system logs
- Fix deployment failures
- Monitor system health
- Implement incident response
agentTools:
- Log analysis tools
- Monitoring systems
- Debugging techniques
- Incident management
- name: deployment-engineer
title: Deployment Engineer
description: Configure CI/CD pipelines, Docker containers, and cloud deployments for automated software delivery
type: agent
category: deployment
content: deployment-engineer.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- cicd-pipelines
- containerization
- cloud-deployment
- automation
agentCapabilities:
- Design CI/CD pipelines
- Configure container deployments
- Automate release processes
- Manage infrastructure as code
- Implement deployment strategies
agentTools:
- CI/CD platforms
- Docker containers
- Cloud services
- Infrastructure automation
- name: cloud-architect
title: Cloud Architect
description: Design AWS/Azure/GCP infrastructure, optimize cloud costs, and implement scalable cloud solutions
type: agent
category: infrastructure
content: cloud-architect.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- cloud-infrastructure
- cost-optimization
- scalability-design
- multi-cloud
agentCapabilities:
- Design cloud architectures
- Optimize cloud costs
- Implement auto-scaling
- Manage multi-cloud environments
- Ensure cloud security
agentTools:
- AWS/Azure/GCP services
- Cost optimization tools
- Infrastructure as code
- Cloud monitoring
- name: database-optimizer
title: Database Optimizer
description: Optimize SQL queries, design efficient indexes, and handle database migrations for peak performance
type: agent
category: database-management
content: database-optimizer.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- query-optimization
- index-design
- performance-tuning
- migration-management
agentCapabilities:
- Optimize database queries
- Design efficient indexes
- Analyze query execution
- Handle data migrations
- Monitor database performance
agentTools:
- Query analyzers
- Index optimization
- Performance monitoring
- Migration tools
- name: database-admin
title: Database Administrator
description: Manage database operations, backups, replication, monitoring, and disaster recovery
type: agent
category: database-management
content: database-admin.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- database-administration
- backup-management
- replication-setup
- disaster-recovery
agentCapabilities:
- Manage database operations
- Configure backup strategies
- Set up replication
- Implement disaster recovery
- Monitor database health
agentTools:
- Database management systems
- Backup tools
- Monitoring solutions
- Recovery procedures
- name: terraform-specialist
title: Terraform Specialist
description: Write advanced Terraform modules, manage state files, and implement Infrastructure as Code best practices
type: agent
category: infrastructure
content: terraform-specialist.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- terraform-modules
- state-management
- infrastructure-as-code
- cloud-provisioning
agentCapabilities:
- Write Terraform modules
- Manage state files
- Implement IaC patterns
- Provision cloud resources
- Handle infrastructure changes
agentTools:
- Terraform CLI
- State management
- Module development
- Cloud providers
- name: incident-responder
title: Incident Responder
description: Handles production incidents with urgency, systematic diagnosis, and rapid resolution
type: agent
category: incident-response
content: incident-responder.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- incident-response
- crisis-management
- root-cause-analysis
- communication
agentCapabilities:
- Respond to critical incidents
- Coordinate response teams
- Perform root cause analysis
- Communicate with stakeholders
- Implement prevention measures
agentTools:
- Incident management systems
- Communication platforms
- Monitoring dashboards
- Post-mortem analysis
- name: network-engineer
title: Network Engineer
description: Debug network connectivity, configure load balancers, analyze traffic patterns, and optimize network performance
type: agent
category: network-engineering
content: network-engineer.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- network-debugging
- load-balancing
- traffic-analysis
- network-optimization
agentCapabilities:
- Debug network issues
- Configure load balancers
- Analyze network traffic
- Optimize network performance
- Implement security measures
agentTools:
- Network diagnostic tools
- Load balancer configuration
- Traffic analyzers
- Security appliances
- name: dx-optimizer
title: Developer Experience Optimizer
description: Improve development tooling, setup processes, and workflows to enhance developer productivity
type: agent
category: dx-improvement
content: dx-optimizer.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- developer-experience
- tooling-optimization
- workflow-improvement
- productivity-enhancement
agentCapabilities:
- Optimize development workflows
- Improve tooling setup
- Enhance productivity tools
- Streamline processes
- Measure developer satisfaction
agentTools:
- Development tools
- Workflow automation
- Productivity metrics
- Process optimization
# Quality & Security Agents
- name: code-reviewer
title: Code Reviewer
description: Expert code review with deep configuration security focus and production reliability assessment
type: agent
category: code-review
content: code-reviewer.md
aiPlatform: claude-code@2025.06
mcpRequirements:
- serverId: filesystem
tier: required
- serverId: github
tier: optional
agentSpecializations:
- code-review
- security-analysis
- quality-assurance
- best-practices
agentCapabilities:
- Perform thorough code reviews
- Identify security vulnerabilities
- Ensure coding standards
- Assess production readiness
- Provide improvement suggestions
agentTools:
- Static code analysis
- Security scanning
- Quality metrics
- Best practice guidelines
- name: security-auditor
title: Security Auditor
description: Review code for vulnerabilities, ensure OWASP compliance, and provide comprehensive security assessments
type: agent
category: security-audit
content: security-auditor.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- vulnerability-assessment
- owasp-compliance
- penetration-testing
- security-analysis
agentCapabilities:
- Identify security vulnerabilities
- Ensure OWASP compliance
- Perform security audits
- Assess threat vectors
- Provide remediation guidance
agentTools:
- Vulnerability scanners
- Security frameworks
- Compliance checkers
- Penetration testing tools
- name: test-automator
title: Test Automator
description: Create comprehensive test suites with unit, integration, and end-to-end tests for quality assurance
type: agent
category: testing
content: test-automator.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- test-automation
- test-strategy
- quality-assurance
- continuous-testing
agentCapabilities:
- Design test strategies
- Create automated test suites
- Implement various test types
- Set up test pipelines
- Measure test coverage
agentTools:
- Testing frameworks
- Test automation tools
- Coverage analysis
- CI/CD integration
- name: performance-engineer
title: Performance Engineer
description: Profile applications, optimize bottlenecks, implement caching strategies, and improve system performance
type: agent
category: performance-optimization
content: performance-engineer.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- performance-optimization
- bottleneck-analysis
- caching-strategies
- scalability
agentCapabilities:
- Profile application performance
- Identify bottlenecks
- Implement optimization strategies
- Design caching solutions
- Plan for scalability
agentTools:
- Performance profilers
- Benchmarking tools
- Caching systems
- Load testing tools
- name: debugger
title: Debugger
description: Debugging specialist for errors, test failures, and unexpected behavior with systematic problem-solving
type: agent
category: debugging
content: debugger.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- error-debugging
- test-failure-analysis
- problem-solving
- root-cause-analysis
agentCapabilities:
- Debug complex errors
- Analyze test failures
- Trace execution paths
- Identify root causes
- Provide fix recommendations
agentTools:
- Debugging tools
- Error tracking
- Stack trace analysis
- Code inspection
- name: error-detective
title: Error Detective
description: Search logs and codebases for error patterns, stack traces, and anomalies with advanced analysis
type: agent
category: error-handling
content: error-detective.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- error-pattern-analysis
- log-investigation
- anomaly-detection
- forensic-analysis
agentCapabilities:
- Analyze error patterns
- Search through logs
- Detect anomalies
- Correlate issues
- Track error trends
agentTools:
- Log analysis tools
- Pattern recognition
- Search algorithms
- Correlation analysis
- name: search-specialist
title: Search Specialist
description: Expert web researcher using advanced search techniques, information synthesis, and fact-checking
type: agent
category: research
content: search-specialist.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- web-research
- information-synthesis
- fact-checking
- competitive-analysis
agentCapabilities:
- Conduct advanced web research
- Synthesize information
- Verify facts and sources
- Analyze competitors
- Generate research reports
agentTools:
- Search engines
- Research databases
- Fact-checking tools
- Analysis frameworks
# Data & AI Agents
- name: data-scientist
title: Data Scientist
description: Data analysis expert for SQL queries, BigQuery operations, and data insights with statistical analysis
type: agent
category: data-analysis
content: data-scientist.md
aiPlatform: claude-code@2025.06
agentSpecializations:
- data-analysis
- sql-queries
- statistical-analysis
- data-visualization
agentCapabilities:
- Analyze complex datasets
- Write efficient SQL queries
- Perform statistical analysis
- Create data visualizations
- Generate insights and reports
agentTools:
- SQL databases
- Statistical software
- Visualization tools
- BigQuery platform
- name: data-engineer
title: Data Engineer
description: Build ETL pipelines, data warehouses, and streaming architectures for large-scale data processing
type: agent
category: data-analysis