create-api
Converts Express routes into Lambda functions behind API Gateway. Use when creating a serverless API, Lambda functions, or API Gateway.
What this skill does
# Create API — Express Routes to Serverless
You are converting Express routes into individual Lambda functions behind API Gateway.
## Prerequisites
- `.migration/plan.md` exists with route mapping
- `infrastructure/` directory exists with CDK project
## What To Do
### Phase 1: Plan
Read `.migration/plan.md` and show the user:
1. **Route mapping table:**
```
Express Route → Lambda Handler → API Gateway Route
GET /api/items → get-items.ts → GET /items
POST /api/items → create-item.ts → POST /items
GET /api/items/:id → get-item.ts → GET /items/{id}
PUT /api/items/:id → update-item.ts → PUT /items/{id}
DELETE /api/items/:id → delete-item.ts → DELETE /items/{id}
```
2. **Express vs Lambda comparison** for the simplest route:
```typescript
// Before (Express):
app.get('/api/items', (req, res) => {
res.json(items);
});
// After (Lambda):
export const handler = async (event: APIGatewayProxyEvent) => {
return {
statusCode: 200,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(items),
};
};
```
Ask the user:
1. "Does this route mapping look right?"
2. "Any routes to combine or split differently?"
3. "Which routes should be public vs require login?" (if auth is planned)
4. "Any routes that do something special?" (file uploads, long processing, etc.)
### Phase 2: Execute
1. **Create handler files** at `infrastructure/lambda/handlers/[name].ts`
- Import types from `aws-lambda` (`APIGatewayProxyEvent`, `APIGatewayProxyResult`)
- Translate the Express handler logic
- Add error handling with try/catch
- Add input validation for POST/PUT routes
- Return API Gateway response format (`statusCode`, `headers`, `body`)
- Add CORS headers
2. **Create shared utilities** at `infrastructure/lambda/shared/`
- `response.ts` — consistent API response helper
- `errors.ts` — error types and error response helper
3. **Update CDK stack** at `infrastructure/lib/api-stack.ts`
- Create a REST API (not HTTP API — needed for Cognito authorizer compatibility)
- For each handler: Lambda function (Node.js 20), IAM role with minimal permissions, API Gateway resource/method
- Configure CORS on API Gateway
- Output the API URL
### Phase 3: Verify
1. Run `cd infrastructure && npx cdk synth` to verify compilation
2. Show summary: Lambda function count, API routes, IAM permissions granted
3. Update `.migration/plan.md` to mark create-api as complete
## Important Notes
### Security
- Each Lambda MUST have its own IAM role with only needed permissions
- Never use `Action: '*'` or `Resource: '*'`
- Validate all input in POST/PUT handlers
- Set specific CORS origins (not `*`) — use a placeholder replaced at deploy time
### Lambda Defaults
- Node.js 20.x runtime
- 30-second timeout (less for simple reads)
- 256MB memory
- Environment variables for configuration
- Bundle each handler individually (tree-shaking)
### API Gateway
- Use REST API (not HTTP API) — explain if asked: "AWS has two types of API Gateway. REST API supports Cognito authorization directly, which we need if you add login later. HTTP API is simpler and cheaper but would require more custom code for auth. REST API is the safer default."
- Enable CORS at the API Gateway level — explain if asked: "CORS (Cross-Origin Resource Sharing) is a browser security feature. Since we're routing everything through CloudFront, we shouldn't hit CORS issues, but we configure it as a safety net in case you test the API directly."
- Add throttling defaults (1000 req/s, 500 burst) — explain if asked: "This limits how many requests your API handles per second. It protects you from unexpected traffic spikes (or accidental loops in your code) that could run up your Lambda bill."
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.