architecture-paradigm-serverless
Installation
SKILL.md
The Serverless Architecture Paradigm
When To Use
- Event-driven workloads with variable traffic
- Minimizing operational overhead for cloud-native apps
When NOT To Use
- Long-running processes exceeding function timeout limits
- Applications requiring persistent connections or local state
When to Employ This Paradigm
- When workloads are event-driven and exhibit intermittent or "bursty" traffic patterns.
- When the goal is to minimize infrastructure management and adopt a pay-per-execution cost model.
- When latency constraints from "cold starts" are acceptable for the use case or can be effectively mitigated.
Adoption Steps
- Identify Functions: Decompose workloads into small, stateless function handlers triggered by events such as HTTP requests, message queues, or scheduled timers.
Related skills
More from athola/claude-night-market
project-planning
Turn a specification into a phased implementation plan with dependency ordering.
126code-quality-principles
KISS, YAGNI, and SOLID code quality principles for clean code, reducing complexity and preventing over-engineering.
94project-brainstorming
Guide project ideation via Socratic questioning to generate project briefs.
92doc-generator
Generate or remediate documentation with human-quality writing and style.
81rigorous-reasoning
Anti-sycophancy reasoning checklist.
79project-specification
Transform project briefs into testable specifications with user stories, acceptance criteria, and measurable outcomes.
78