Skip to main content

awesome-claude-code-subagents

Collection of 131+ specialized Claude Code subagents for development tasks across languages, frameworks, infrastructure, and quality assurance

Ir para a instalação

Informações da origem

Repositório
reason-machines/ai-agent-skills
Última atividade na origem
17 de maio de 2026 às 06:10
Idioma detectado do SKILL.md
inglês
Estrelas
1
Forks
1

Opções de instalação

Por padrão, está selecionado o prompt que primeiro revisa a origem. Você pode mudar para um comando direto ou baixar uma cópia local.

Revise os arquivos de origem

Leia o SKILL.md e os arquivos complementares exibidos pelo SkillsMP antes de decidir se vai instalar.

Exibindo SKILL.md

SKILL.md
Instruções da origem · Visualização somente leitura
name
awesome-claude-code-subagents
description
Collection of 131+ specialized Claude Code subagents for development tasks across languages, frameworks, infrastructure, and quality assurance
triggers
["install a Claude subagent for Python development","show me available subagents for infrastructure","how do I use the TypeScript subagent","find a subagent for API design","install the React specialist agent","what subagents are available for security testing","set up a fullstack developer subagent","browse available Claude Code agents"]
# awesome-claude-code-subagents > Skill by [ara.so](https://ara.so) — AI Agent Skills collection. A curated collection of 131+ specialized Claude Code subagents covering development tasks from frontend to infrastructure, language specialists, quality assurance, and meta-orchestration. Each subagent is a markdown file that configures Claude Code with expert knowledge in a specific domain. ## What This Project Does This repository provides pre-configured Claude Code subagents that act as specialized AI assistants for: - **Core Development** - API design, frontend, backend, fullstack, mobile, GraphQL, microservices - **Language Specialists** - TypeScript, Python, Go, Rust, Java, JavaScript, PHP, C++, C#, Swift, Kotlin, and more - **Infrastructure** - Docker, Kubernetes, Terraform, cloud providers, DevOps, SRE, databases - **Quality & Security** - Code review, testing, security auditing, compliance, debugging - **Data & Analytics** - Data engineering, ML ops, analytics - **Documentation** - Technical writing, API docs, architecture diagrams - **Emerging Tech** - Blockchain, IoT, edge computing, quantum - **Business & Product** - Product management, business analysis - **Meta-Orchestration** - Agent coordination, skill management, workflow automation ## Installation ### Prerequisites - Claude Code CLI installed - Git (for cloning) - curl (for standalone installer) ### Option 1: Claude Code Plugin (Recommended) ```bash # Add the plugin marketplace claude plugin marketplace add VoltAgent/awesome-claude-code-subagents # Install category plugins claude plugin install voltagent-core-dev # Core development claude plugin install voltagent-lang # Language specialists claude plugin install voltagent-infra # Infrastructure & DevOps claude plugin install voltagent-qa-sec # Quality & Security claude plugin install voltagent-meta # Meta-orchestration ``` ### Option 2: Manual Installation ```bash # Clone the repository git clone https://github.com/VoltAgent/awesome-claude-code-subagents.git cd awesome-claude-code-subagents # Global installation cp categories/02-language-specialists/python-pro.md ~/.claude/agents/ # Project-specific installation mkdir -p .claude/agents cp categories/01-core-development/api-designer.md .claude/agents/ ``` ### Option 3: Interactive Installer ```bash git clone https://github.com/VoltAgent/awesome-claude-code-subagents.git cd awesome-claude-code-subagents chmod +x install-agents.sh ./install-agents.sh ``` Interactive menu allows browsing categories and selecting agents. ### Option 4: Standalone Installer (No Clone) ```bash curl -sO https://raw.githubusercontent.com/VoltAgent/awesome-claude-code-subagents/main/install-agents.sh chmod +x install-agents.sh ./install-agents.sh ``` ### Option 5: Agent Installer (Meta Agent) ```bash # Install the agent-installer meta agent curl -s https://raw.githubusercontent.com/VoltAgent/awesome-claude-code-subagents/main/categories/09-meta-orchestration/agent-installer.md \ -o ~/.claude/agents/agent-installer.md ``` Then use in Claude Code: ``` Use the agent-installer to show me available categories Find PHP agents and install php-pro globally ``` ## Key Commands & Usage ### Listing Installed Agents ```bash # List all installed agents claude agents list # List agents in specific directory ls ~/.claude/agents/ ls .claude/agents/ ``` ### Using Subagents in Claude Code Once installed, reference agents in your prompts: ```bash # Activate a specific agent @python-pro help me optimize this data processing pipeline # Use multiple agents together @api-designer @typescript-pro create a REST API with TypeScript # Agent coordination @meta-orchestrator coordinate frontend and backend development for user authentication ``` ### Common Agent Selection Patterns **Language-specific work:** ``` @typescript-pro refactor this code to use modern TypeScript patterns @python-pro implement async processing with asyncio @rust-engineer optimize this for zero-copy operations ``` **Infrastructure tasks:** ``` @kubernetes-specialist help me debug this pod networking issue @terraform-engineer review my AWS infrastructure code @docker-expert optimize this Dockerfile for production ``` **Quality & Security:** ``` @code-reviewer check this PR for best practices @security-engineer audit this authentication implementation @penetration-tester assess this API for security vulnerabilities ``` **Full-stack coordination:** ``` @fullstack-developer implement user profile editing feature @meta-orchestrator plan a microservices migration strategy ``` ## Agent File Structure Each subagent is a markdown file with this structure: ```markdown --- agent_name: python-pro version: 1.0.0 specialization: Python ecosystem expert --- # Python Pro Subagent ## Role Expert in Python development, async programming, data processing... ## Expertise - Python 3.10+ features - AsyncIO and concurrency - Popular frameworks (Django, FastAPI, Flask) ... ## Guidelines - Use type hints - Follow PEP 8 ... ``` ## Configuration ### Global vs Project-Specific Agents **Global agents** (`~/.claude/agents/`): - Available across all projects - Use for general-purpose agents - Language specialists, code reviewers **Project-specific agents** (`.claude/agents/`): - Available only in current project - Use for domain-specific or customized agents - Project-specific workflows ### Customizing Agents ```bash # Copy and modify an agent cp ~/.claude/agents/python-pro.md ~/.claude/agents/my-custom-python.md # Edit the agent vim ~/.claude/agents/my-custom-python.md ``` Example customization: ```markdown --- agent_name: django-company-pro version: 1.0.0 specialization: Django expert for CompanyName internal standards --- # Django Company Pro ## Role Django expert following CompanyName coding standards ## Additional Context - Use our custom User model at `apps.accounts.models.User` - All APIs must include our custom authentication middleware - Follow our specific project structure in `docs/architecture.md` ## Company-Specific Patterns ```python # Our standard API view pattern from apps.core.views import CompanyAPIView class UserProfileView(CompanyAPIView): permission_classes = [IsAuthenticated, HasCompanyPermission] def get(self, request): # Company standard response format return self.success_response(data, meta=self.get_meta()) ``` ``` ## Real Code Examples ### Example 1: Using Python Pro for Data Processing ```python # Ask: @python-pro help me optimize this data processing script import asyncio from typing import List, Dict from dataclasses import dataclass from concurrent.futures import ProcessPoolExecutor @dataclass class ProcessingResult: id: str status: str data: Dict async def process_batch(items: List[Dict]) -> List[ProcessingResult]: """Process items in parallel using asyncio and multiprocessing.""" loop = asyncio.get_event_loop() with ProcessPoolExecutor(max_workers=4) as executor: futures = [ loop.run_in_executor(executor, process_item, item) for item in items ] results = await asyncio.gather(*futures) return results def process_item(item: Dict) -> ProcessingResult: """CPU-intensive processing in separate process.""" # Heavy computation here return ProcessingResult( id=item['id'], status='completed', data={'result': item['value'] * 2} ) # Usage async def main(): items = [{'id': str(i), 'value': i} for i in range(100)] results = await process_batch(items) print(f"Processed {len(results)} items") asyncio.run(main()) ``` ### Example 2: Using TypeScript Pro for Type-Safe API ```typescript // Ask: @typescript-pro create a type-safe API client import axios, { AxiosInstance } from 'axios'; // Domain types interface User { id: string; email: string; name: string; createdAt: Date; } interface CreateUserDto { email: string; name: string; password: string; } interface ApiResponse<T> { data: T; meta: { timestamp: string; requestId: string; }; } // Type-safe API client class UserApiClient { private client: AxiosInstance; constructor(baseURL: string) { this.client = axios.create({ baseURL, headers: { 'Content-Type': 'application/json', }, }); } async getUser(id: string): Promise<User> { const response = await this.client.get<ApiResponse<User>>(`/users/${id}`); return { ...response.data.data, createdAt: new Date(response.data.data.createdAt), }; } async createUser(dto: CreateUserDto): Promise<User> { const response = await this.client.post<ApiResponse<User>>('/users', dto); return response.data.data; } async listUsers(filters?: { role?: string }): Promise<User[]> { const response = await this.client.get<ApiResponse<User[]>>('/users', { params: filters, }); return response.data.data; } } // Usage with full type safety const api = new UserApiClient(process.env.API_URL!); const newUser = await api.createUser({ email: 'user@example.com', name: 'John Doe', password: 'secure-password', }); const user = await api.getUser(newUser.id); console.log(user.createdAt.toISOString()); // Type-safe Date object ``` ### Example 3: Using Terraform Engineer for Infrastructure ```hcl # Ask: @terraform-engineer create a production-ready AWS infrastructure # variables.tf variable "environment" { description = "Environment name" type = string validation { condition = contains(["dev", "staging", "prod"], var.environment) error_message = "Environment must be dev, staging, or prod" } } variable "app_name" { description = "Application name" type = string } # vpc.tf module "vpc" { source = "terraform-aws-modules/vpc/aws" version = "~> 5.0" name = "${var.app_name}-${var.environment}" cidr = "10.0.0.0/16" azs = ["us-east-1a", "us-east-1b", "us-east-1c"] private_subnets = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"] public_subnets = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"] enable_nat_gateway = true single_nat_gateway = var.environment != "prod" enable_dns_hostnames = true enable_dns_support = true tags = local.common_tags } # ecs.tf resource "aws_ecs_cluster" "main" { name = "${var.app_name}-${var.environment}" setting { name = "containerInsights" value = "enabled" } tags = local.common_tags } resource "aws_ecs_task_definition" "app" { family = "${var.app_name}-${var.environment}" network_mode = "awsvpc" requires_compatibilities = ["FARGATE"] cpu = 256 memory = 512 execution_role_arn = aws_iam_role.ecs_execution.arn task_role_arn = aws_iam_role.ecs_task.arn container_definitions = jsonencode([{ name = "app" image = "${aws_ecr_repository.app.repository_url}:latest" portMappings = [{ containerPort = 8080 protocol = "tcp" }] environment = [ { name = "ENVIRONMENT" value = var.environment } ] secrets = [ { name = "DATABASE_URL" valueFrom = aws_secretsmanager_secret.db_url.arn } ] logConfiguration = { logDriver = "awslogs" options = { "awslogs-group" = aws_cloudwatch_log_group.app.name "awslogs-region" = data.aws_region.current.name "awslogs-stream-prefix" = "ecs" } } }]) tags = local.common_tags } # locals.tf locals { common_tags = { Environment = var.environment Application = var.app_name ManagedBy = "Terraform" } } # outputs.tf output "vpc_id" { description = "VPC ID" value = module.vpc.vpc_id } output "ecs_cluster_name" { description = "ECS cluster name" value = aws_ecs_cluster.main.name } ``` ### Example 4: Using Docker Expert for Container Optimization ```dockerfile # Ask: @docker-expert optimize this Dockerfile for production # Multi-stage build for Node.js application FROM node:20-alpine AS base WORKDIR /app ENV NODE_ENV=production # Dependencies stage FROM base AS deps COPY package*.json ./ RUN npm ci --only=production && \ npm cache clean --force # Build stage FROM base AS build COPY package*.json ./ RUN npm ci COPY . . RUN npm run build # Production stage FROM base AS production # Security: Run as non-root user RUN addgroup --system --gid 1001 nodejs && \
Ver no GitHub
Este SKILL.md e muito grande, entao o SkillsMP mostra aqui apenas a primeira secao. Ver no GitHub