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

Mern Kit

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

Startup runbook for MERN projects. Establishes stack decisions, scaffolds the project, configures GitHub security, and confirms governing constraints.

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

Install

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

✓ 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 No
  • 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-kit)

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 Kit? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Purpose

Initialize a new MERN project with the standard stack, scaffolding, GitHub security, and constraints.

Input: ` (optional, default: "app"). Use .` to scaffold in the current (empty) directory.

Startup sequence (run in order)

1. Confirm stack decisions

/mern-stack

Establishes: toolchain, monorepo layout, Next.js conventions, database approach, environments.

2. Scaffold the project

/mern-scaffold  [--github]

Creates: build-green baseline with CI, tests, shared packages, server utilities, tooling.

The scaffold step includes git init at the end.

3. Set up local Git hooks

Prerequisite: The scaffold step must have completed git init first.

/github-hooks --platform mern

Installs: Husky + lint-staged, pre-commit validation (lint, format, secrets), commit message enforcement, pre-push tests.

4. Configure GitHub security (if --github was used)

/github-secure

Applies: branch protection, Dependabot alerts, auto-merge. Skips files already created by scaffold.

5. Verify constraints are active

Confirm these always-on skills are enabled:

  • mern-sec — security policy
  • mern-nfr — non-functional requirements
  • mern-std — coding standards
  • mern-styleguide — design/UX standards

6. Verify CI passes (if --github)

Trigger CI and wait for it to complete:

  1. gh workflow run ci.yml --ref main (or wait for push-triggered run)
  2. gh run watch --exit-status — blocks until complete, exits non-zero on failure
  3. If failed:

a. Read logs: gh run view --log-failed b. Fix the issue locally c. If push to main is blocked by branch protection, temporarily disable enforcement: ``bash REPO=$(gh repo view --json nameWithOwner -q .nameWithOwner) gh api -X PATCH "/repos/$REPO/branches/main/protection/enforce_admins" -f enforcement=false git push gh api -X POST "/repos/$REPO/branches/main/protection/enforce_admins" ` d. Push and re-run: gh run watch --exit-status`

  1. Repeat step 3 until CI is green
  2. Do NOT mark kit complete until CI is green

Quality workflows (invoke as needed)

  • /mern-unit-test — run tests, report failures, fix with approval
  • /mern-code-review — review against policies, fix with approval
  • /mern-design-review — visual review with Playwright, fix with approval

Additional workflows (invoke as needed)

  • /mern-add-feature — scaffold new features
  • /mern-add-auth — add authentication
  • /mern-deploy — prepare for deployment
  • /mern-e2e — E2E test management
  • /mern-api-docs — generate API documentation
  • /mern-deps — dependency management
  • /mern-teardown — tear down project and optionally delete GitHub repo

Output

After running this kit, confirm:

  • Stack decisions applied
  • Project scaffolded and building
  • Local Git hooks installed (pre-commit, commit-msg, pre-push)
  • GitHub security configured (if --github)
  • CI passes on GitHub (if --github)
  • Governing constraints active
  • Quality workflows available

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.