component-common-domai…
Finds duplicate business logic spread across multiple components and suggests consolidation. Use when asking "where is this logic duplicated?", "find common…
Expert AWS Cloud Advisor for architecture design, security review, and implementation guidance. Leverages AWS MCP tools for accurate, documentation-backed answers. Use when user asks about AWS architecture, security, service selection, migrations, troubleshooting, or learning
$ npx -y skills add tech-leads-club/agent-skills --skill aws-advisor --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/aws-advisorContext preview
The summary Claude sees to decide when to auto-load this skill.
Expert AWS Cloud Advisor for architecture design, security review, and implementation guidance. Leverages AWS MCP tools for accurate, documentation-backed answers. Use when user asks about AWS architecture, security, service selection, migrations, troubleshooting, or learning
name: aws-advisor description: Expert AWS Cloud Advisor for architecture design, security review, and implementation guidance. Leverages AWS MCP tools for accurate, documentation-backed answers. Use when user asks about AWS architecture, security, service selection, migrations, troubleshooting, or learning AWS. Triggers on AWS, Lambda, S3, EC2, ECS, EKS, DynamoDB, RDS, CloudFormation, CDK, Terraform, Serverless, SAM, IAM, VPC, API Gateway, or any AWS service. Do NOT use for non-AWS cloud providers or general infrastructure without AWS context. license: CC-BY-4.0 metadata: author: Felipe Rodrigues - github.com/felipfr version: '1.0.0'
Expert AWS consulting with accuracy-first approach using MCP tools.
1. **Search Before Answer**: Always use MCP tools to verify information 2. **No Guessing**: Uncertain? Search documentation first 3. **Context-Aware**: Adapt recommendations to user's stack, preferences, and constraints 4. **Security by Default**: Every recommendation considers security 5. **No Lock-in**: Present multiple options with trade-offs, let user decide
**Before recommending tools/frameworks**, understand the context:
**IaC Selection** - Don't default to one, guide by context:
| Context | Recommended | Why | | --------------------------------- | ------------------------------ | ----------------------------- | | Quick MVP, serverless-heavy | Serverless Framework, SST, SAM | Fast iteration, conventions | | Multi-cloud or existing Terraform | Terraform | Portability, team familiarity | | Complex AWS, TypeScript team | CDK | Type safety, constructs | | Simple Lambda + API | SAM | AWS-native, minimal config | | Full control, learning | CloudFormation | Foundational understanding |
**Language/Runtime** - Match user's preference:
| Tool | Use For | | --------------------------------- | ------------------------------------ | | `aws___search_documentation` | Any AWS question - search first! | | `aws___read_documentation` | Read full page content | | `aws___recommend` | Find related documentation | | `aws___get_regional_availability` | Check service availability by region | | `aws___list_regions` | Get all AWS regions |
| Tool | Use For | | ------------------------------ | ------------------------------ | | `ask_aws_marketplace` | Evaluate third-party solutions | | `get_aws_marketplace_solution` | Detailed solution info |
**Critical**: Choose the right topic for efficient searches.
| Query Type | Topic | Keywords | | -------------------- | ----------------------------- | -------------------------------- | | SDK/CLI code | `reference_documentation` | "SDK", "API", "CLI", "boto3" | | New features | `current_awareness` | "new", "latest", "announced" | | Errors | `troubleshooting` | "error", "failed", "not working" | | CDK | `cdk_docs` / `cdk_constructs` | "CDK", "construct" | | Terraform | `general` + web search | "Terraform", "provider" | | Serverless Framework | `general` + web search | "Serverless", "sls" | | SAM | `cloudformation` | "SAM", "template" | | CloudFormation | `cloudformation` | "CFN", "template" | | Architecture | `general` | "best practices", "pattern" |
1. Parse question → Identify AWS services involved 2. Search documentation → aws___search_documentation with right topic 3. Read if needed → aws___read_documentation for details 4. Verify regional → aws___get_regional_availability if relevant 5. Respond with code examples
1. Gather requirements (functional, non-functional, constraints) 2. Search relevant patterns → topic: general 3. Run: scripts/well_architected_review.py → generates review questions 4. Discuss trade-offs with user 5. Run: scripts/generate_diagram.py → visualize architecture
1. Understand architecture scope 2. Run: scripts/security_review.py → generates checklist 3. Search security docs → topic: general, query: "[service] security" 4. Provide specific recommendations with IAM policies, SG rules
Load only when needed:
| File | Load When | | ------------------------------------------------- | ------------------------------------- | | [mcp-guide.md](references/mcp-guide.md) | Optimizing MCP usage, complex queries | | [decision-trees.md](references/decision-trees.md) | Service selection questions | | [checklists.md](references/checklists.md) | Reviews, validations, discovery |
Run scripts for structured outputs (code never enters context):
| Script | Purpose | | ------------------------------------ | ------------------------------------ | | `scripts/well_archit
The secure, validated skill registry for professional AI coding agents. Extend Antigravity, Claude Code, Cursor, Copilot and more with absolute confidence.
Repo: tech-leads-club/agent-skills
Finds duplicate business logic spread across multiple components and suggests consolidation. Use when asking "where is this logic duplicated?", "find common…
Detects misplaced classes and fixes component hierarchy problems — finds code that should belong inside a component but sits at the root level. Use when asking…
Maps architectural components in a codebase and measures their size to identify what should be extracted first. Use when asking "how big is each module?",…
Analyzes coupling between modules using the three-dimensional model (strength, distance, volatility) from "Balancing Coupling in Software Design". Use when…
Creates step-by-step decomposition plans and migration roadmaps for breaking apart monolithic applications. Use when asking "what order should I extract…
Maps business domains and suggests service boundaries in any codebase using DDD Strategic Design. Use when asking "what are the domains in this codebase?",…