cloud-platforms
Installation
SKILL.md
Cloud Platforms
Overview
Cloud services, serverless architectures, and cloud-native development patterns for AWS, GCP, and Azure.
AWS
Lambda Functions
// lambda/handler.ts
import { APIGatewayProxyHandler, APIGatewayProxyResult } from 'aws-lambda';
export const handler: APIGatewayProxyHandler = async (event) => {
try {
const body = JSON.parse(event.body || '{}');