anth-architecture-variants

Installation
SKILL.md

Anthropic Architecture Variants

Overview

Four validated architecture patterns for Claude API integrations at different scales and use cases.

Variant 1: Serverless (AWS Lambda / Cloud Functions)

# Best for: < 100 RPM, event-driven, pay-per-invocation
# lambda_function.py
import anthropic
import json

def handler(event, context):
    client = anthropic.Anthropic()  # Key from Lambda env var
Installs
2
GitHub Stars
2.3K
First Seen
May 19, 2026
anth-architecture-variants — jeremylongshore/claude-code-plugins-plus-skills