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 || '{}');
Related skills
Installs
35
GitHub Stars
13
First Seen
Jan 24, 2026