AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Mern Deploy

skill-edfenton-claude-skills-mern-deploy · by edfenton

Deployment checklist and setup for MERN projects targeting Vercel, AWS, or Docker.

No reviews yet
0 installs
21 views
0.0% view→install

Install

$ agentstack add skill-edfenton-claude-skills-mern-deploy

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-edfenton-claude-skills-mern-deploy)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Mern Deploy? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Purpose

Prepare a MERN project for production deployment with proper configuration, security hardening, and monitoring setup.

Arguments

  • --target — Deployment target (default: vercel)
  • vercel — Vercel (recommended for Next.js)
  • aws — AWS (Lambda + API Gateway or ECS)
  • docker — Docker container (self-hosted)
  • --check-only — Run pre-deployment checklist without creating files

Pre-deployment checklist (always runs)

Environment

  • [ ] All env vars documented in .env.example
  • [ ] Production env vars set in deployment platform
  • [ ] NEXTAUTH_SECRET is unique 32+ char string
  • [ ] NODE_ENV=production in production
  • [ ] No secrets in code or committed files

Database

  • [ ] MongoDB Atlas cluster created (or production DB ready)
  • [ ] Connection string uses mongodb+srv://
  • [ ] IP whitelist configured (or 0.0.0.0/0 for serverless)
  • [ ] Database user has minimal required permissions

Security

  • [ ] Security headers configured (CSP, HSTS, etc.)
  • [ ] Rate limiting enabled
  • [ ] CORS configured for production domain
  • [ ] Auth secrets rotated from development

Performance

  • [ ] Build succeeds: pnpm build
  • [ ] No TypeScript errors
  • [ ] Bundle size reasonable (check .next/analyze if concerned)
  • [ ] Images optimized

Monitoring

  • [ ] Error tracking configured (Sentry, etc.)
  • [ ] Logging configured for production
  • [ ] Health check endpoint working: /api/health

What gets created (per target)

Vercel

vercel.json           # Vercel configuration

AWS

serverless.yml        # Serverless Framework config
  or
Dockerfile           # For ECS deployment
buildspec.yml        # CodeBuild config

Docker

Dockerfile           # Multi-stage build
docker-compose.yml   # Local testing
.dockerignore        # Ignore patterns

Workflow

  1. Run pre-deployment checklist
  2. Fix any blockers found
  3. Create deployment configuration for target
  4. Verify build succeeds
  5. Document deployment steps

Output

  • Checklist results (pass/fail)
  • Files created
  • Next steps for deployment
  • Environment variables needed in production

Reference

For platform-specific configurations, see reference/mern-deploy-reference.md

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.