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 || '{}');
Installs
46
GitHub Stars
17
First Seen
Jan 24, 2026
cloud-platforms — miles990/claude-software-skills