serverless

Installation
SKILL.md

Serverless

Function-as-a-Service and managed cloud services.

When to Use

  • Event-driven workloads
  • Variable traffic patterns
  • Reduced operations overhead
  • Microservices functions

Quick Start

// AWS Lambda
import { APIGatewayProxyHandler } from "aws-lambda";

export const handler: APIGatewayProxyHandler = async (event) => {
  const body = JSON.parse(event.body || "{}");
Related skills
Installs
2
GitHub Stars
7
First Seen
Feb 10, 2026