Awesome-omni-skill powerlifter
Migrates AWS Lambda/API Gateway/RDS/SQS/S3/CloudFront backends into an existing Next.js monorepo on Vercel with Planetscale Postgres, Vercel AI Gateway, Vercel env, and Workflow Devkit. Use for node-to-next migrations, backend repo consolidation into a Next.js frontend repo, or mapping AWS serverless services to Vercel primitives with security parity.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/development/powerlifter" ~/.claude/skills/diegosouzapw-awesome-omni-skill-powerlifter-dec914 && rm -rf "$T"
manifest:
skills/development/powerlifter/SKILL.mdsource content
Powerlifter
Node-to-Next migration skill for consolidating a backend repo into an existing Next.js frontend repo.
Quick start
- Audit
(dev/prod) and inventory AWS services, routes, runtimes, memory, timeouts, and secrets.serverless*.yml - Rank hottest endpoints/Lambdas via CloudWatch metrics and confirm priorities with the user.
- Define the monorepo merge strategy and runtime boundaries.
- Map API Gateway + Lambda routes to Next Route Handlers or Server Actions.
- Plan data migration from RDS to Planetscale Postgres (PG dump staging).
- Replace SQS jobs with Vercel Workflow Devkit flows.
- Swap OpenAI SDK usage to Vercel AI Gateway.
- Move secrets to Vercel env and rewire observability.
- Cut over with parity tests and rollback plan.
Safety (read-only discovery)
- Do not run
commands during discovery.serverless deploy - Avoid any command that modifies AWS environments or production data.
Use when
- The frontend is already on Next.js and the backend lives in a separate repo.
- AWS serverless services must be replaced or integrated with Vercel.
- You need a secure monorepo with shared types and a single deployment surface.
Current -> future stack map
- Compute: AWS Lambda -> Next Route Handlers / Server Actions
- Edge/CDN: CloudFront -> Vercel Edge Network
- API routing: API Gateway -> Next App Router API routes
- DB: AWS RDS -> Planetscale Postgres
- Queue: SQS -> Vercel Workflow Devkit
- AI: OpenAI SDK -> Vercel AI Gateway
- Secrets: AWS Secrets Manager -> Vercel env
- Logs: CloudWatch -> Vercel logging + external sinks
- Storage: S3 -> S3 (keep) or migrate by strategy
Non-goals
- Rewriting the frontend UI or changing auth providers.
- Changing data semantics or removing legacy endpoints.
- Introducing new infrastructure without a clear need.
Monorepo guardrails
- Keep the existing Next.js frontend stable; add backend code under server-only boundaries.
- Do not expose secrets in client bundles; isolate server-only modules.
- Keep routing stable: path + method parity for existing API clients.
- Favor shared types in a single location to reduce drift.
Migration phases
- Discovery and inventory
- Monorepo merge and runtime boundaries
- API surface migration
- Data migration and cutover
- Jobs and async flows
- AI gateway swap
- Secrets, observability, and security hardening
- Staged deploy and verification
Rule index
- Setup and inventory:
rules/setup-inventory.md - Monorepo merge:
rules/architecture-monorepo-merge.md - API migration:
rules/api-lambda-to-next.md - Data migration:
rules/data-rds-to-planetscale.md - Queues/workflows:
rules/queue-sqs-to-vercel-workflow.md - AI gateway:
rules/ai-openai-to-vercel-ai-gateway.md - Storage strategy:
rules/storage-s3-strategy.md - Secrets/env:
rules/secrets-env-migration.md - Observability:
rules/observability-cloudwatch-to-vercel.md - Security:
rules/security-hardening.md - Deploy/cutover:
rules/deploy-cutover.md - Testing parity:
rules/testing-parity.md
Verification checklist
- Route parity: same methods, paths, status codes, and payload shapes.
- Auth parity: same guards, redirects, and role-based access.
- Data parity: row counts, key constraints, and critical query results match.
- Job parity: async flows run with idempotency and reliable retries.
- Observability parity: errors and key events are logged and traceable.
- Rollback plan exists and is tested for critical flows.
Version policy
Use the latest stable versions of Next.js and the chosen data/AI libraries.