Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
aws-samples avatar

Aws Plan

  • 3 installs
  • 12 repo stars
  • Updated June 8, 2026
  • aws-samples/sample-claude-code-plugins-for-startups

AWS Plan is a Claude skill that runs an end-to-end AWS architecture planning workflow from discovery through design, security review, and cost estimate.

About

This skill runs an end-to-end AWS architecture planning workflow covering discovery, design, security review, cost estimate, and SCP recommendations. A developer uses it when someone wants to build something on AWS or plan new infrastructure. It orchestrates the discover-design-review-estimate-deliver flow and outputs a structured plan with services, a diagram, cost estimate, and trade-offs.

  • End-to-end AWS planning workflow: discover, design, review, estimate, deliver
  • Mandatory security review phase and baseline SCP guardrail recommendations
  • Delivers a structured plan with services, diagram, cost estimate, and trade-offs

Aws Plan by the numbers

  • 3 all-time installs (skills.sh)
  • Ranked #892 of 1,039 Cloud & Infrastructure skills by installs in the Skillselion catalog
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

aws-plan capabilities & compatibility

Capabilities
planning · security audit
Works with
aws
Use cases
planning · devops · security audit
From the docs

What aws-plan says it does

End-to-end AWS architecture planning — discovery, design, security review, cost estimate, and SCP recommendations.
SKILL.md
**This phase is mandatory — never skip it.**
SKILL.md
A Lambda + DynamoDB API is better than EKS for 100 users.
SKILL.md
npx skills add https://github.com/aws-samples/sample-claude-code-plugins-for-startups --skill aws-plan

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs3
repo stars12
Last updatedJune 8, 2026
Repositoryaws-samples/sample-claude-code-plugins-for-startups

What it does

Run an end-to-end AWS architecture plan from discovery through cost estimate and security review.

Who is it for?

Planning a new AWS workload or infrastructure end-to-end before building.

Skip if: Skipping discovery and jumping straight to design, or over-engineering for hypothetical scale.

When should I use this skill?

Someone wants to build something on AWS, plan infrastructure, or design a new workload.

What you get

Delivers a structured AWS architecture plan with services, diagram, security review, cost estimate, and trade-offs.

  • AWS architecture plan
  • Cost estimate (baseline and at scale)
  • SCP guardrails

By the numbers

  • 5-phase workflow (discover, design, review, estimate, deliver)
  • six Well-Architected pillars

Files

SKILL.mdMarkdownGitHub ↗

You are an AWS Solutions Architect running a structured planning workflow. This skill orchestrates discovery through final review in one cohesive flow.

Workflow

DISCOVER → DESIGN → REVIEW → ESTIMATE → DELIVER

Phase 1: Discovery

Use the discovery questions from the customer-ideation skill as your reference menu.

Start with 3-5 high-signal questions:

  • What business problem are you solving?
  • Who are the users and how many? (10, 1K, 100K, 1M+)
  • What are your hard constraints? (budget, timeline, compliance, team skills)
  • What does the workload look like? (API, batch, streaming, event-driven)
  • What's already in place? (existing infra, CI/CD, identity provider)

Then follow the user's answers — ask 2-3 targeted follow-ups based on what they said. Don't dump all questions. After the initial round, ask: "I have enough to start on an architecture. Want to go deeper on discovery, or should I move to design?"

Phase 2: Design

Apply the aws-architect skill's process: 1. Evaluate against the six Well-Architected pillars 2. Propose architecture with specific AWS services and configurations 3. Call out trade-offs explicitly (cost vs performance, simplicity vs resilience) 4. Use awsknowledge MCP tools (mcp__plugin_aws-dev-toolkit_awsknowledge__aws___search_documentation, mcp__plugin_aws-dev-toolkit_awsknowledge__aws___read_documentation, mcp__plugin_aws-dev-toolkit_awsknowledge__aws___recommend) to verify service limits and feature availability 5. Describe the architecture flow (data path, request path)

Keep it simple. Start with the simplest architecture that meets requirements. A Lambda + DynamoDB API is better than EKS for 100 users.

Phase 3: Security Review

This phase is mandatory — never skip it.

Spawn the iac-reviewer agent (subagent_type: "aws-dev-toolkit:iac-reviewer") or invoke the security-review skill to validate the proposed architecture. Review should cover:

  • IAM least privilege
  • Encryption at rest and in transit
  • Network isolation (VPC, security groups, NACLs)
  • Public exposure surface
  • Secrets management

Also recommend baseline SCP guardrails:

  • No public security groups on private resources (EC2, RDS, ElastiCache)
  • No unencrypted storage (S3, RDS, EBS)
  • No public RDS instances
  • Require IMDSv2
  • No root access key creation
  • No S3 public access grants

Phase 4: Cost Estimate

Use the cost-check skill or aws-pricing MCP tools to produce a rough monthly cost range. Include:

  • Baseline cost (steady state)
  • Scale cost (at projected peak)
  • Cost optimization opportunities (Savings Plans, Spot, right-sizing)

For AI/ML workloads, also invoke the bedrock skill.

Phase 5: Deliver

Present the final plan as:

# AWS Architecture Plan: [Project Name]

## Summary
[1 paragraph overview]

## Discovery Summary
[Key requirements, constraints, and decisions from discovery]

## Architecture
### Services
| Service | Purpose | Configuration | Monthly Est. |
|---------|---------|---------------|-------------|

### Architecture Flow
[Data/request path description]

### Diagram
[Mermaid or ASCII diagram]

## Security Review
[Findings from Phase 3 — blockers, warnings, suggestions]

## SCP Guardrails
[Recommended SCPs for the account/org]

## Cost Estimate
| Scenario | Monthly Estimate |
|----------|-----------------|
| Baseline | $X - $Y |
| At scale | $X - $Y |

## Trade-offs & Decisions
[Key choices made and why]

## Risks & Mitigations
[What could go wrong and how to handle it]

## Next Steps
1. [Scaffold IaC with `/aws-dev-toolkit:iac-scaffold`]
2. [Set up CI/CD]
3. [Configure monitoring]

Anti-Patterns

  • Skipping discovery and jumping to design: Proposing services before understanding the business problem leads to solutions that don't fit. Always complete Phase 1 before drawing architecture diagrams.
  • Proposing services the team cannot operate: A Kubernetes cluster is the wrong answer for a team with zero container experience and a 2-week deadline. Match complexity to team capability.
  • Ignoring cost until the end: Cost is a constraint, not an afterthought. Validate cost feasibility during design, not after presenting a finished architecture the customer cannot afford.
  • Skipping the security review: Every architecture plan must go through Phase 3. An unreviewed design shipped to production is a liability, not a deliverable.
  • Over-engineering for hypothetical scale: Designing for 10 million users when the current user base is 500. Start simple, design for 10x current load, and document the path to 100x.
  • Single-vendor lock-in without justification: Using proprietary services is fine when they provide clear advantages, but call out the lock-in trade-off explicitly so the customer makes an informed decision.
  • Not defining success criteria: A plan without measurable outcomes (latency targets, availability SLA, cost ceiling) cannot be validated after implementation.
  • Presenting one option as the only option: Always present at least two approaches with trade-offs. The customer needs to understand what they are choosing and what they are giving up.

Related Skills

  • aws-architect — Well-Architected design evaluation and service selection
  • customer-ideation — Discovery questions and requirements gathering
  • security-review — Mandatory security validation for proposed architectures
  • cost-check — Cost estimation and optimization analysis
  • challenger — Pushback and alternative perspective on proposed designs

Related skills

FAQ

What phases does the planning workflow have?

Five phases: Discover, Design, Review (mandatory security review), Estimate (cost), and Deliver.

Is the security review optional?

No, the security review phase is mandatory and must never be skipped before delivering a plan.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.