cloud-solution-architect
Transform the agent into a Cloud Solution Architect following Azure Architecture Center best practices. Use when designing cloud architectures, reviewing system designs, selecting architecture styles, applying cloud design patterns, making technology choices, or conducting Well-Architected Framework reviews.
What this skill does
# Cloud Solution Architect ## Overview Design well-architected, production-grade cloud systems following Azure Architecture Center best practices. This skill provides: - **10 design principles** for Azure applications - **6 architecture styles** with selection guidance - **44 cloud design patterns** mapped to WAF pillars - **Technology choice frameworks** for compute, storage, data, messaging - **Performance antipatterns** to avoid - **Architecture review workflow** for systematic design validation --- ## Ten Design Principles for Azure Applications | # | Principle | Key Tactics | |---|-----------|-------------| | 1 | **Design for self-healing** | Retry with backoff, circuit breaker, bulkhead isolation, health endpoint monitoring, graceful degradation | | 2 | **Make all things redundant** | Eliminate single points of failure, use availability zones, deploy multi-region, replicate data | | 3 | **Minimize coordination** | Decouple services, use async messaging, embrace eventual consistency, use domain events | | 4 | **Design to scale out** | Horizontal scaling, autoscaling rules, stateless services, avoid session stickiness, partition workloads | | 5 | **Partition around limits** | Data partitioning (shard/hash/range), respect compute & network limits, use CDNs for static content | | 6 | **Design for operations** | Structured logging, distributed tracing, metrics & dashboards, runbook automation, infrastructure as code | | 7 | **Use managed services** | Prefer PaaS over IaaS, reduce operational burden, leverage built-in HA/DR/scaling | | 8 | **Use an identity service** | Microsoft Entra ID, managed identity, RBAC, avoid storing credentials, zero-trust principles | | 9 | **Design for evolution** | Loose coupling, versioned APIs, backward compatibility, async messaging for integration, feature flags | | 10 | **Build for business needs** | Define SLAs/SLOs, establish RTO/RPO targets, domain-driven design, cost modeling, composite SLAs | --- ## Architecture Styles | Style | Description | When to Use | Key Services | |-------|-------------|-------------|--------------| | **N-tier** | Horizontal layers (presentation, business, data) | Traditional enterprise apps, lift-and-shift | App Service, SQL Database, VNets | | **Web-Queue-Worker** | Web frontend → message queue → backend worker | Moderate-complexity apps with long-running tasks | App Service, Service Bus, Functions | | **Microservices** | Small autonomous services, bounded contexts, independent deploy | Complex domains, independent team scaling | AKS, Container Apps, API Management | | **Event-driven** | Pub/sub model, event producers/consumers | Real-time processing, IoT, reactive systems | Event Hubs, Event Grid, Functions | | **Big data** | Batch + stream processing pipeline | Analytics, ML pipelines, large-scale data | Synapse, Data Factory, Databricks | | **Big compute** | HPC, parallel processing | Simulations, modeling, rendering, genomics | Batch, CycleCloud, HPC VMs | ### Selection Criteria - **Domain complexity** → Microservices (high), N-tier (low-medium) - **Team autonomy** → Microservices (independent teams), N-tier (single team) - **Data volume** → Big data (TB+), others (GB) - **Latency requirements** → Event-driven (real-time), Web-Queue-Worker (tolerant) --- ## Cloud Design Patterns 44 patterns organized by primary concern. WAF pillar mapping: **R**=Reliability, **S**=Security, **CO**=Cost Optimization, **OE**=Operational Excellence, **PE**=Performance Efficiency. ### Messaging & Communication | Pattern | Summary | Pillars | |---------|---------|---------| | **Asynchronous Request-Reply** | Decouple request/response with polling or callbacks | R, PE | | **Claim Check** | Split large messages; store payload separately, pass reference | R, PE | | **Choreography** | Services coordinate via events without central orchestrator | R, OE | | **Competing Consumers** | Multiple consumers process messages from shared queue concurrently | R, PE | | **Messaging Bridge** | Connect incompatible messaging systems | R, OE | | **Pipes and Filters** | Decompose complex processing into reusable filter stages | R, OE | | **Priority Queue** | Prioritize requests so higher-priority work is processed first | R, PE | | **Publisher/Subscriber** | Decouple senders from receivers via topics/subscriptions | R, PE | | **Queue-Based Load Leveling** | Buffer requests with a queue to smooth intermittent loads | R, PE | | **Sequential Convoy** | Process related messages in order while allowing parallel groups | R, PE | ### Reliability & Resilience | Pattern | Summary | Pillars | |---------|---------|---------| | **Bulkhead** | Isolate resources per workload to prevent cascading failure | R | | **Circuit Breaker** | Stop calling a failing service; fail fast to protect resources | R | | **Compensating Transaction** | Undo previously committed steps when a later step fails | R | | **Health Endpoint Monitoring** | Expose health checks for load balancers and orchestrators | R, OE | | **Leader Election** | Coordinate distributed instances by electing a leader | R | | **Retry** | Handle transient faults by retrying with exponential backoff | R | | **Saga** | Manage data consistency across microservices with compensating transactions | R | | **Scheduler Agent Supervisor** | Coordinate distributed actions with retry and failure handling | R | ### Data Management | Pattern | Summary | Pillars | |---------|---------|---------| | **Cache-Aside** | Load data on demand into cache from data store | PE | | **CQRS** | Separate read and write models for independent scaling | PE, R | | **Event Sourcing** | Store state as append-only sequence of domain events | R, OE | | **Index Table** | Create indexes over frequently queried fields in data stores | PE | | **Materialized View** | Pre-compute views over data for efficient queries | PE | | **Sharding** | Distribute data across partitions for scale and performance | PE, R | | **Static Content Hosting** | Serve static content from cloud storage/CDN directly | PE, CO | | **Valet Key** | Grant clients limited direct access to storage resources | S, PE | ### Design & Structure | Pattern | Summary | Pillars | |---------|---------|---------| | **Ambassador** | Offload cross-cutting concerns to a helper sidecar proxy | OE | | **Anti-Corruption Layer** | Translate between new and legacy system models | OE, R | | **Backends for Frontends** | Create separate backends per frontend type (mobile, web, etc.) | OE, PE | | **Compute Resource Consolidation** | Combine multiple workloads into fewer compute instances | CO | | **External Configuration Store** | Externalize configuration from deployment packages | OE | | **Sidecar** | Deploy helper components alongside the main service | OE | | **Strangler Fig** | Incrementally migrate legacy systems by replacing pieces | OE, R | ### Security & Access | Pattern | Summary | Pillars | |---------|---------|---------| | **Federated Identity** | Delegate authentication to an external identity provider | S | | **Gatekeeper** | Protect services using a dedicated broker that validates requests | S | | **Quarantine** | Isolate and validate external assets before allowing use | S | | **Rate Limiting** | Control consumption rate of resources by consumers | R, S | | **Throttling** | Control resource consumption to sustain SLAs under load | R, PE | ### Deployment & Scaling | Pattern | Summary | Pillars | |---------|---------|---------| | **Deployment Stamps** | Deploy multiple independent copies of application components | R, PE | | **Edge Workload Configuration** | Configure workloads differently across diverse edge devices | OE | | **Gateway Aggregation** | Aggregate multiple backend calls into a single client request | PE | | **Gateway Offloading** | Offload shared functionality (SSL, auth) to a gateway | OE, S | | **Gateway Routing** | Route requests to multiple backends using a single endpoint | OE | | **Geode** | Deploy backends to multipl
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.