Install
$ agentstack add skill-glamgarondiscord-claude-saas-blueprint-env-setup ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →About
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
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: GlamgarOnDiscord
- Source: GlamgarOnDiscord/claude-saas-blueprint
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.