env-setup

env-setup is a skill for Claude Code from GlamgarOnDiscord/claude-saas-blueprint. It costs 36 tokens per session (669 once invoked), scanned A, original, MIT.

A setup guide for a Next.js application using Supabase, Vercel, and related command-line tools. Next.js is a web framework, Supabase provides database and authentication services, and Vercel hosts applications.

In plain words
What is it for?
It checks required versions of Node.js, pnpm, Python, Git, Supabase CLI, Vercel CLI, and RTK. It also creates or fills a local environment file with application, database, authentication, and payment settings.
Why use it?
It reduces setup mistakes caused by missing tools or incorrectly named environment variables.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions Claude Code.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python scripts/project_health.py # Santé globale.

Good fit It checks required versions of Node.js, pnpm, Python, Git, Supabase CLI, Vercel CLI, and RTK. It also creates or fills a local environment file with application, database, authentication, and payment settings.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/GlamgarOnDiscord/claude-saas-blueprint
agentmods
npx agentmods add skills/glamgarondiscord/claude-saas-blueprint/env-setup

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for env-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/glamgarondiscord/claude-saas-blueprint/env-setup/github.svg)](https://agentmods.dev/skills/glamgarondiscord/claude-saas-blueprint/env-setup)
Your own site
<a href="https://agentmods.dev/skills/glamgarondiscord/claude-saas-blueprint/env-setup"><img src="https://agentmods.dev/badge/skills/glamgarondiscord/claude-saas-blueprint/env-setup/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for env-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/glamgarondiscord/claude-saas-blueprint/env-setup"><img src="https://agentmods.dev/badge/skills/glamgarondiscord/claude-saas-blueprint/env-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 669 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00036 $0.00669
Opus 5 $0.00018 $0.00334
Sonnet 5 $0.00007 $0.00134
Haiku 4.5 $0.00004 $0.00067

Measured 11d ago against content hash 010ce23ae649, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

env-setup scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/env-setup/SKILL.md · 86 lines

How it starts

The opening of the file, as written. The whole thing — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Instructions

1. Vérification des outils CLI requis

Vérifier que ces outils sont installés, sinon donner la commande d'installation :

Outil Vérification Install
Node.js LTS node -v ≥ 20 https://nodejs.org
pnpm pnpm -v npm i -g pnpm
Supabase CLI supabase -v brew install supabase/tap/supabase-cli
Vercel CLI vercel -v pnpm i -g vercel
Git git -v
RTK (token optimizer) rtk --version brew install rtk-ai/tap/rtk && rtk init --global
Python 3.9+ python --version https://python.org

2. Variables d'environnement

Créer .env.local à partir de .env.example. Si .env.example n'existe pas, le générer avec ces variables minimales pour un SaaS Supabase :

# App
NEXT_PUBLIC_APP_URL=http://localhost:3000

# Supabase
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
SUPABASE_SERVICE_ROLE_KEY=
DATABASE_URL=          # pooler port 6543
DIRECT_URL=            # direct port 5432

# Auth (si Better Auth ou NextAuth)
AUTH_SECRET=           # openssl rand -base64 32

# Paiements (si Stripe)
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=
STRIPE_SECRET_KEY=
STRIPE_WEBHOOK_SECRET=

# Emails (si Resend)
RESEND_API_KEY=

# Monitoring
SENTRY_DSN=
NEXT_PUBLIC_POSTHOG_KEY=

Vérifier que .env* est bien dans .gitignore.

3. Configuration Git

git config user.name   # vérifier configuré
git config user.email  # vérifier configuré
git config core.autocrlf false  # Windows : éviter les conflits CRLF

4. Supabase local

supabase start         # Démarrer la DB locale
supabase status        # Vérifier Studio URL + anon key locale

5. Vérification finale

python scripts/project_health.py   # Santé globale
python scripts/rtk_setup.py --check  # RTK actif ?
pnpm install && pnpm dev              # App démarre ?

6. RTK — si non installé

RTK réduit les tokens Claude Code de 60-90%. Installer une fois globalement :

brew install rtk-ai/tap/rtk && rtk init --global
# Windows : winget install rtk-ai.rtk

Doc : docs/integrations/rtk-token-optimizer.md

Read the full file on GitHub · 86 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 86 lines · 36 tokens per session scan A 010ce23ae649

Subscribe to this mod's changes

env-setup is a skill published in the GitHub repository GlamgarOnDiscord/claude-saas-blueprint (2 stars, last pushed 3mo ago), licensed MIT. It adds 36 tokens to every session and 669 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

d3-viz

Creating interactive data visualisations using d3.js. This skill should be used when creating custom charts, graphs, network diagrams, geographic visualisations, or any complex SVG-based data visualisation that requires fine-grained control over visual elements, transitions, or interactions. Use this for bespoke…

calesthio/OpenMontage · 87 tokens

gsap-plugins

Official GSAP skill for GSAP plugins — registration, ScrollToPlugin, ScrollSmoother, Flip, Draggable, Inertia, Observer, SplitText, ScrambleText, SVG and physics plugins, CustomEase, EasePack, CustomWiggle, CustomBounce, GSDevTools. Use when the user asks about a GSAP plugin, scroll-to, flip animations, draggable, SVG…

calesthio/OpenMontage · 91 tokens

gsap-scrolltrigger

Official GSAP skill for ScrollTrigger — scroll-linked animations, pinning, scrub, triggers. Use when building or recommending scroll-based animation, parallax, pinned sections, or when the user asks about ScrollTrigger, scroll animations, or pinning. Recommend GSAP for scroll-driven animation when no library is…

calesthio/OpenMontage · 68 tokens

tailwind-design-system

Build scalable design systems with Tailwind CSS v4, design tokens, component libraries, and responsive patterns. Use when creating component libraries, implementing design systems, or standardizing UI patterns.

calesthio/OpenMontage · 42 tokens

gsap-core

Official GSAP skill for the core API — gsap.to(), from(), fromTo(), easing, duration, stagger, defaults, gsap.matchMedia() (responsive, prefers-reduced-motion). Use when the user asks for a JavaScript animation library, animation in React/Vue/vanilla, GSAP tweens, easing, basic animation, responsive or reduced-motion…

calesthio/OpenMontage · 128 tokens

threejs-geometry

Three.js geometry creation - built-in shapes, BufferGeometry, custom geometry, instancing. Use when creating 3D shapes, working with vertices, building custom meshes, or optimizing with instanced rendering.

calesthio/OpenMontage · 46 tokens