From 8238f91295d5db8a0417081c48e233be0ebb1acd Mon Sep 17 00:00:00 2001 From: Seth Hobson Date: Mon, 28 Jul 2025 09:05:10 -0400 Subject: [PATCH] Update README with new agents and fix terraform-specialist filename MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add rust-pro, c-pro, javascript-pro, sql-pro to Language Specialists - Add terraform-specialist to Infrastructure & Operations - Update total agent count from 28 to 33 - Fix typo: terraform-specilist.md → terraform-specialist.md - Update 'When to Use Which Agent' section with new agents --- README.md | 12 +++++++++++- terraform-specilist.md => terraform-specialist.md | 0 2 files changed, 11 insertions(+), 1 deletion(-) rename terraform-specilist.md => terraform-specialist.md (100%) diff --git a/README.md b/README.md index c733127..a4df773 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A comprehensive collection of specialized AI subagents for [Claude Code](https:/ ## Overview -This repository contains 28 specialized subagents that extend Claude Code's capabilities. Each subagent is an expert in a specific domain, automatically invoked based on context or explicitly called when needed. +This repository contains 33 specialized subagents that extend Claude Code's capabilities. Each subagent is an expert in a specific domain, automatically invoked based on context or explicitly called when needed. ## Available Subagents @@ -18,12 +18,17 @@ This repository contains 28 specialized subagents that extend Claude Code's capa ### Language Specialists - **[python-pro](python-pro.md)** - Write idiomatic Python code with advanced features and optimizations - **[golang-pro](golang-pro.md)** - Write idiomatic Go code with goroutines, channels, and interfaces +- **[rust-pro](rust-pro.md)** - Write idiomatic Rust with ownership patterns, lifetimes, and trait implementations +- **[c-pro](c-pro.md)** - Write efficient C code with proper memory management and system calls +- **[javascript-pro](javascript-pro.md)** - Master modern JavaScript with ES6+, async patterns, and Node.js APIs +- **[sql-pro](sql-pro.md)** - Write complex SQL queries, optimize execution plans, and design normalized schemas ### Infrastructure & Operations - **[devops-troubleshooter](devops-troubleshooter.md)** - Debug production issues, analyze logs, and fix deployment failures - **[deployment-engineer](deployment-engineer.md)** - Configure CI/CD pipelines, Docker containers, and cloud deployments - **[cloud-architect](cloud-architect.md)** - Design AWS/Azure/GCP infrastructure and optimize cloud costs - **[database-optimizer](database-optimizer.md)** - Optimize SQL queries, design efficient indexes, and handle database migrations +- **[terraform-specialist](terraform-specialist.md)** - Write advanced Terraform modules, manage state files, and implement IaC best practices - **[incident-responder](incident-responder.md)** - Handles production incidents with urgency and precision - **[dx-optimizer](dx-optimizer.md)** - Developer Experience specialist that improves tooling, setup, and workflows @@ -165,12 +170,17 @@ payment-integration → security-auditor → Validated implementation ### 🔧 Implementation & Development - **python-pro**: Python-specific development tasks - **golang-pro**: Go-specific development tasks +- **rust-pro**: Rust-specific development, memory safety, systems programming +- **c-pro**: C programming, embedded systems, performance-critical code +- **javascript-pro**: Modern JavaScript, async patterns, Node.js/browser code +- **sql-pro**: Database queries, schema design, query optimization - **mobile-developer**: React Native/Flutter development ### 🛠️ Operations & Maintenance - **devops-troubleshooter**: Production issues, deployment problems - **incident-responder**: Critical outages requiring immediate response - **database-optimizer**: Query performance, indexing strategies +- **terraform-specialist**: Infrastructure as Code, Terraform modules, state management ### 📊 Analysis & Optimization - **performance-engineer**: Application bottlenecks, optimization diff --git a/terraform-specilist.md b/terraform-specialist.md similarity index 100% rename from terraform-specilist.md rename to terraform-specialist.md