bylst97· 1 MCP server
Collection of specialized AI subagents for Claude Code for personal use (full-stack development).
$git clone https://github.com/lst97/claude-code-sub-agentsInstalls into the current project.
Install claude-code-sub-agents by running `git clone https://github.com/lst97/claude-code-sub-agents`, then use it for the current task and follow its documentation at https://github.com/lst97/claude-code-sub-agents.
| 1 | # Claude Code Subagents Collection |
| 2 | |
| 3 | A comprehensive collection of 33 specialized AI subagents for [Claude Code](https://docs.anthropic.com/en/docs/claude-code), designed to enhance development workflows with domain-specific expertise and intelligent automation. |
| 4 | |
| 5 | ## 🚀 Overview |
| 6 | |
| 7 | This repository contains a curated set of specialized subagents that extend Claude Code's capabilities across the entire software development lifecycle. Each subagent is an expert in a specific domain, automatically invoked based on context analysis or explicitly called when specialized expertise is needed. |
| 8 | |
| 9 | ### Key Features |
| 10 | |
| 11 | - **🤖 Intelligent Auto-Delegation**: Claude Code automatically selects optimal agents based on task context |
| 12 | - **🔧 Domain Expertise**: Each agent specializes in specific technologies, patterns, and best practices |
| 13 | - **🔄 Multi-Agent Orchestration**: Seamless coordination between agents for complex workflows |
| 14 | - **📊 Quality Assurance**: Built-in review and validation patterns across all domains |
| 15 | - **⚡ Performance Optimized**: Agents designed for efficient task completion and resource utilization |
| 16 | |
| 17 | ## Available Subagents |
| 18 | |
| 19 | Agents are now organized into logical categories for easier navigation: |
| 20 | |
| 21 | ### 🏗️ [Development](agents/development/) |
| 22 | |
| 23 | **Frontend & UI Specialists** |
| 24 | |
| 25 | - **[frontend-developer](agents/development/frontend-developer.md)** - Build React components, implement responsive layouts, and handle client-side state management |
| 26 | - **[ui-designer](agents/development/ui-designer.md)** - Creative UI design focused on user-friendly interfaces |
| 27 | - **[ux-designer](agents/development/ux-designer.md)** - User experience design and interaction optimization |
| 28 | - **[react-pro](agents/development/react-pro.md)** - Expert React development with hooks, performance optimization, and best practices |
| 29 | - **[nextjs-pro](agents/development/nextjs-pro.md)** - Next.js specialist for SSR, SSG, and full-stack React applications |
| 30 | |
| 31 | **Backend & Architecture** |
| 32 | |
| 33 | - **[backend-architect](agents/development/backend-architect.md)** - Design RESTful APIs, microservice boundaries, and database schemas |
| 34 | - **[full-stack-developer](agents/development/full-stack-developer.md)** - End-to-end web application development from UI to database with seamless integration |
| 35 | |
| 36 | **Language Specialists** |
| 37 | |
| 38 | - **[python-pro](agents/development/python-pro.md)** - Write idiomatic Python code with advanced features and optimizations |
| 39 | - **[golang-pro](agents/development/golang-pro.md)** - Write idiomatic Go code with goroutines, channels, and interfaces |
| 40 | - **[typescript-pro](agents/development/typescript-pro.md)** - Advanced TypeScript development with type safety and modern patterns |
| 41 | |
| 42 | **Platform & Mobile** |
| 43 | |
| 44 | - **[mobile-developer](agents/development/mobile-developer.md)** - Develop React Native or Flutter apps with native integrations |
| 45 | - **[electron-pro](agents/development/electorn-pro.md)** - Electron desktop application development and cross-platform solutions |
| 46 | |
| 47 | **Developer Experience** |
| 48 | |
| 49 | - **[dx-optimizer](agents/development/dx-optimizer.md)** - Developer Experience specialist that improves tooling, setup, and workflows |
| 50 | - **[legacy-modernizer](agents/development/legacy-modernizer.md)** - Refactor legacy codebases and implement gradual modernization |
| 51 | |
| 52 | ### ☁️ [Infrastructure](agents/infrastructure/) |
| 53 | |
| 54 | - **[cloud-architect](agents/infrastructure/cloud-architect.md)** - Design AWS/Azure/GCP infrastructure and optimize cloud costs |
| 55 | - **[deployment-engineer](agents/infrastructure/deployment-engineer.md)** - Configure CI/CD pipelines, Docker containers, and cloud deployments |
| 56 | - **[devops-incident-responder](agents/infrastructure/devops-incident-responder.md)** - Debug production issues, analyze logs, and fix deployment failures |
| 57 | - **[incident-responder](agents/infrastructure/incident-responder.md)** - Handles production incidents with urgency and precision |
| 58 | - **[performance-engineer](agents/infrastructure/performance-engineer.md)** - Profile applications, optimize bottlenecks, and implement caching strategies |
| 59 | |
| 60 | ### 🔍 [Qua |