Guides implementation of AI/GenAI architectures on AWS — Bedrock setup, SageMaker pipelines, OpenSearch vector stores, API Gateway configuration, security hardening, cost controls, and deployment automation. This skill should be used when the user asks to "implement AI on AWS", "set up Bedrock", "deploy SageMaker pipeline", "configure OpenSearch for RAG", "implement AWS AI security", "set up AWS AI monitoring", or mentions AWS AI deployment, Bedrock Knowledge Base setup, SageMaker endpoint deployment, AWS GenAI implementation, or AWS AI CI/CD pipeline. [EXPLICIT]
From jm-adknpx claudepluginhub javimontano/jm-adk-alfaThis skill is limited to using the following tools:
agents/guardian.mdagents/lead.mdagents/specialist.mdagents/support.mdevals/evals.jsonknowledge/body-of-knowledge.mdknowledge/knowledge-graph.mdprompts/meta.mdprompts/primary.mdprompts/variations/deep.mdprompts/variations/quick.mdreferences/aws-deployment-patterns.mdreferences/aws-iac-templates.mdreferences/aws-service-setup.mdtemplates/output.docx.mdtemplates/output.htmlGuiar la implementación de arquitecturas AI/GenAI en AWS — desde la configuración de servicios (Bedrock, SageMaker, OpenSearch Serverless) hasta deployment automation, security hardening, y cost controls. Produce guías de implementación paso-a-paso, templates de IaC, patrones de deployment, y configuración de monitoreo con servicios AWS nativos. [EXPLICIT]
IaC from day one. Toda configuración AWS se define en código (CDK, CloudFormation, Terraform). La consola se usa para exploración, no para producción. Sin IaC no hay reproducibilidad, no hay audit trail, no hay promotion entre ambientes. [EXPLICIT]
Security by default, not by request. VPC endpoints, KMS encryption, IAM least privilege, Guardrails, y WAF se implementan en la primera iteración, no como "hardening posterior". Un endpoint Bedrock sin Guardrails no debería existir en producción. [EXPLICIT]
Multi-environment parity. Dev, staging, y producción usan el mismo template IaC con parámetros distintos (instance size, throughput, model selection). Si funciona en staging debe funcionar en producción, y viceversa. [EXPLICIT]
Parámetros:
MODO: [greenfield | brownfield | remediation | migration]
FORMATO: [ejecutivo | técnico | híbrido]
ALCANCE: [bedrock-rag | bedrock-agents | sagemaker-mlops | multi-model | full]
IAC: [cdk | cloudformation | terraform]
ENV: [single | multi-env]
Detección automática:
- Si existe cdk.json → IAC=cdk
- Si existe *.template.yaml/json → IAC=cloudformation
- Si existe *.tf → IAC=terraform
- Si el input menciona "RAG" → ALCANCE=bedrock-rag
- Si el input menciona "agentes" → ALCANCE=bedrock-agents
- Si el input menciona "training" o "MLOps" → ALCANCE=sagemaker-mlops
- Default: MODO=greenfield, ALCANCE=full, IAC=cdk, ENV=multi-env
Establece el foundation: estructura de IaC, networking, security baseline, y environment management. [EXPLICIT]
Load references:
Read ${CLAUDE_SKILL_DIR}/references/aws-iac-templates.md
Componentes:
IaC Stack Organization:
AI-Foundation-Stack:
- VPC, subnets, security groups, VPC endpoints
- KMS keys, IAM roles, tag policies
AI-Data-Stack:
- S3 buckets (training data, model artifacts, documents)
- DynamoDB tables (session state, cost tracking)
AI-Inference-Stack:
- Bedrock configuration OR SageMaker endpoints
- OpenSearch Serverless (if RAG)
- Lambda functions, API Gateway
AI-Monitoring-Stack:
- CloudWatch dashboards, alarms
- X-Ray configuration
- Budget alerts
Entregable: IaC project scaffolded, foundation stack deployed, environments configured.
Implementa los servicios Bedrock: model access, Knowledge Bases, Agents, y Guardrails. [EXPLICIT]
Load references:
Read ${CLAUDE_SKILL_DIR}/references/aws-service-setup.md
Bedrock RAG Implementation:
Bedrock Agents Implementation:
Multi-Model Configuration:
Entregable: Bedrock services operational, tested, and monitored.
Implementa el pipeline SageMaker: training, registry, endpoints, y monitoring. [EXPLICIT]
Training Pipeline:
Model Registry:
Inference Endpoint:
Model Monitor:
Entregable: SageMaker pipeline operational, endpoint serving, monitoring active.
Implementa la postura de seguridad completa para el stack AI. [EXPLICIT]
Network Security:
IAM Hardening:
* in actions or resources for AI servicesData Protection:
Guardrails & Safety:
Audit & Compliance:
Entregable: Security stack implemented, tested, compliance-ready.
Implementa el pipeline de deployment para modelos y aplicaciones AI. [EXPLICIT]
Load references:
Read ${CLAUDE_SKILL_DIR}/references/aws-deployment-patterns.md
Application CI/CD (CodePipeline or GitHub Actions):
Model CI/CD (SageMaker Pipeline + Step Functions):
Deployment Patterns:
Rollback:
Entregable: CI/CD pipeline operational, deployment tested, rollback verified.
Implementa observabilidad completa y controles de costo para AI en AWS. [EXPLICIT]
CloudWatch Setup:
X-Ray Tracing:
Cost Controls:
FinOps Dashboard:
Operational Runbooks:
Entregable: Full monitoring stack, cost controls, dashboards, runbooks.
| Decision | Enables | Constrains | When to Use |
|---|---|---|---|
| Bedrock (managed) | Fast setup, zero-ops inference | Limited model customization | Standard GenAI workloads |
| SageMaker (custom) | Full control, any model | Operational complexity | Custom models, specialized needs |
| CDK | Type-safe, reusable constructs | Learning curve, TypeScript/Python | Teams with CDK experience |
| CloudFormation | AWS-native, stable | Verbose, limited logic | Simple stacks, compliance requirements |
| Terraform | Multi-cloud, state management | State file management | Multi-cloud or existing Terraform |
| Single-account | Simple, fast setup | Limited isolation | Small teams, dev/staging |
| Multi-account | Strong isolation, compliance | Complexity, cross-account IAM | Enterprise, regulated environments |
Región sin Bedrock: Usar cross-region inference profile. Si compliance impide cross-region, implementar con SageMaker (self-hosted model) como alternativa completa. [EXPLICIT]
Migración desde otro cloud: Mapear servicios (Vertex AI→Bedrock/SageMaker, Azure OpenAI→Bedrock). Implementar abstraction layer si multi-cloud es requisito futuro. Priorizar data migration (S3) antes de service migration. [EXPLICIT]
Presupuesto mínimo: Bedrock on-demand (sin upfront), Lambda (pay-per-use), Aurora Serverless v2 con pgvector (si ya existe Aurora). Diferir OpenSearch Serverless hasta que el volumen justifique el costo. Usar batch inference para todo lo que tolere latencia. [EXPLICIT]
Compliance estricto (HIPAA/PCI): BAA firmado antes de implementar. VPC-only (no internet). KMS CMK (no AWS-managed). CloudTrail con log file validation. Macie continuous. Implementar compliance evidence collection automatizado. [EXPLICIT]
Equipo sin experiencia AWS: Extender Fase 1 (Foundation) con workshop AWS. Empezar con Bedrock console (validar concepto) antes de IaC. Usar AWS Well-Architected Labs como guía práctica. [EXPLICIT]
greenfield (default).bedrock-rag, si menciona agentes → bedrock-agents). Si no hay señales, usar full.cdk (default).El agente que ejecuta este skill debe verificar cada item antes de entregar el output al usuario.
*)| Skill | Relación |
|---|---|
aws-architecture-design | Proporciona diseño a implementar |
aws-architecture-audit | Audita la implementación resultante |
ai-architecture-implementation | Implementación cloud-agnostic complementaria |
ai-software-architecture | Arquitectura interna del sistema AI |
ai-pipeline-architecture | Diseño de pipelines a implementar en SageMaker/Step Functions |
ai-design-patterns | Patrones a implementar con servicios AWS |
ai-testing-strategy | Testing strategy a implementar en CI/CD gates |
genai-architecture | Diseño GenAI a implementar con Bedrock |
infrastructure-architecture | Infraestructura AWS general |
devsecops-architecture | Security pipeline a implementar |
if FORMATO == "ejecutivo":
Implementation timeline + resource needs + milestones + cost estimate magnitudes
Audiencia: Project managers, sponsors, budget owners
if FORMATO == "técnico":
Full 6-section implementation guide + IaC templates + configs
Audiencia: Cloud engineers, DevOps, ML engineers
if FORMATO == "híbrido":
Executive timeline + technical deep-dive completo
Audiencia: Tech leads planning AWS implementation sprints
## {System Name} — AWS AI Implementation Guide
### Architecture Overview
[Target architecture diagram with AWS services]
### Phase 1: Foundation & IaC
[S1: VPC, endpoints, KMS, IAM, tagging, IaC structure]
### Phase 2: AI Services
[S2: Bedrock setup OR S3: SageMaker setup — per ALCANCE]
### Phase 3: Security Hardening
[S4: Network, IAM, data protection, guardrails, audit]
### Phase 4: Deployment Automation
[S5: CI/CD pipeline, Blue/Green, canary, rollback]
### Phase 5: Monitoring & Cost
[S6: CloudWatch, X-Ray, budgets, FinOps, runbooks]
### Implementation Timeline
[Gantt chart with milestones, dependencies, team assignments]
### IaC Templates
[CDK/CloudFormation patterns for each stack]
Fuente: AWS Well-Architected Framework — Generative AI Lens (2024). | Avila, R.D. & Ahmad, I. (2025). Architecting AI Software Systems. Packt.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.