s8s skills — Serverless AI Skills & Serverless Agent Skills (Google Cloud Run, AWS Lambda, Vercel, Azure)<br>open serverless skill catalog<br>Serverless AI Skills for Coding Agents<br>One command drops battle-tested serverless skills into your project, so your coding agent knows how to build and ship on every cloud.<br>What is s8s?<br>serverless<br>Just like k8s is Kubernetes, s8s is a developer numeronym for s-e-r-v-e-r-l-e-s-s (the letter s, 8 letters in the middle, and the letter s). We are establishing the open, standard catalog of serverless skills so your AI agents know how to configure, scaffold, and deploy flawlessly on every cloud.
your-project<br>$ npx skills add s8sskills/gcp<br>Copy
Browse providers<br>View on GitHub
What's a skill?<br>A skill is a small, version-controlled bundle of instructions and helper scripts that teaches an AI coding agent how to do one thing well. An s8s skill teaches your agent a cloud's serverless story end to end — project layout, deploy commands, IAM gotchas, and the conventions a senior engineer would already know.<br>Skills are plain files. They live in your repo, get reviewed in pull requests, and work with any skills-aware agent — Claude Code, Cursor, and friends.
◆ One command, zero config<br>◆ Version-pinned & committed to your repo<br>◆ Provider-agnostic install, provider-expert content<br>◆ MIT-licensed & open on GitHub
Providers<br>A repo per cloud under github.com/s8sskills. Install any of them by id.<br>gcp<br>available<br>Google Cloud<br>Cloud Run, Cloud Functions & Firebase deploys<br>Included skills✦gcloud-project-setup<br>Configure gcloud CLI, active project, & authentication
✦cloud-run-deploy<br>Deploy serverless containers to Cloud Run
✦cloud-functions-deploy<br>Deploy HTTP & event-triggered Cloud Functions
✦firebase-deploy<br>Deploy web assets, functions, & security rules
npx skills add s8sskills/gcp<br>Copy<br>aws<br>available<br>Amazon Web Services<br>Lambda, App Runner & SAM workflows<br>Included skills✦aws-project-setup<br>Configure AWS credentials, profile, & region settings
✦lambda-deploy<br>Package & deploy serverless functions to AWS Lambda
✦app-runner-deploy<br>Deploy serverless container web apps via App Runner
npx skills add s8sskills/aws<br>Copy<br>azure<br>available<br>Microsoft Azure<br>Functions & Container Apps<br>Included skills✦azure-project-setup<br>Authenticate with Azure CLI, configure subscriptions & resource groups
✦azure-functions-deploy<br>Build & publish serverless HTTP Azure Functions
✦azure-container-apps-deploy<br>Deploy scalable serverless containers to Azure Container Apps
npx skills add s8sskills/azure<br>Copy<br>vercel<br>available<br>Vercel<br>Edge & serverless functions<br>Included skills✦vercel-project-setup<br>Authenticate, configure, & link local projects to Vercel
✦vercel-deploy<br>Deploy production/preview builds & configure environment variables
npx skills add s8sskills/vercel<br>Copy<br>cloudflare<br>available<br>Cloudflare<br>Workers & Pages at the edge<br>Included skills✦cloudflare-project-setup<br>Install and authenticate Wrangler CLI, set up global/project configuration, and link local workspace directory to Cloudflare
✦cloudflare-workers-deploy<br>Deploy serverless code to Cloudflare Workers or static/SPA web assets to Cloudflare Pages using Wrangler CLI
npx skills add s8sskills/cloudflare<br>Copy<br>netlify<br>available<br>Netlify<br>Functions & edge deploys<br>Included skills✦netlify-project-setup<br>Authenticate with Netlify CLI, initialize or link local code to a Netlify site, and configure basic routing/redirect configurations
✦netlify-deploy<br>Run production or preview builds, configure environment variables via CLI, deploy static assets and serverless/edge functions
npx skills add s8sskills/netlify<br>Copy
How it works<br>01Run one command<br>npx skills add s8sskills/gcp pulls the vendor’s skill pack straight from the s8sskills GitHub org — no account, no config.
02Skills land in your repo<br>Each pack installs into your project’s agent skills directory, version-pinned and ready to read. Inspect them, commit them, edit them.
03Your agent ships serverless<br>Claude Code, Cursor, or any skills-aware agent now knows the provider’s serverless idioms — scaffolding, deploy commands, gotchas and all.
Share Your Great Skills<br>We really want you to share your great skills! Help build the ultimate, open catalog of serverless automation. If you've written skills or support a cloud, we want them!<br>Why share your skills?<br>✦Empower AI Coding Agents Help agents build and deploy flawlessly on your favorite platforms by teaching them exact command-line steps and gotchas.
✦Version-Controlled & Peer-Reviewed Keep your production tips organized, pinned to Git, and polished through collaborative pull requests with serverless maintainers.
✦Gain Expert Recognition Showcase your expertise and get noticed! Your skills are listed in our central community catalog and used by developers worldwide.
Join the Community on GitHub ↗
How to Contribute<br>01Fork a Repository<br>Fork any existing vendor repo (like aws, gcp, vercel, or azure) or propose a new vendor under our organization.
02Write your...