Install
$ agentstack add skill-glamgarondiscord-claude-saas-blueprint-migrate ✓ 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 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.
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
Modes
/migrate db [description] — Migration de base de données
Avant de commencer :
# 1. Backup local obligatoire
python scripts/supabase_migrate.py --diff # voir l'état actuel
git stash || git commit -m "chore: pre-migration checkpoint"
Création et application :
python scripts/supabase_migrate.py --new [description] # crée le fichier migration
# Éditer le fichier créé dans supabase/migrations/
python scripts/supabase_migrate.py --env local # appliquer en dev d'abord
Checklist post-migration :
- Toute nouvelle table → vérifier
ENABLE ROW LEVEL SECURITY+ politiques RLS python scripts/supabase_rls_check.py— doit retourner 0 tables sans RLS- Mettre à jour
core/entities/etcore/ports/si les types changent - Régénérer les types TypeScript :
pnpm supabase gen types - Tests blast radius :
pnpm test -- --grep [feature]
Rollback :
python scripts/supabase_migrate.py --new rollback-[description]
# Écrire le SQL inverse dans le nouveau fichier
python scripts/supabase_migrate.py --env local
Règle stricte : jamais modifier une migration déjà appliquée — toujours créer une nouvelle.
/migrate dep [package] [version] — Mise à jour de dépendance majeure
- Lire changelog/release notes officiel (WebSearch) — breaking changes uniquement
- Grep les imports du package dans tout le projet
- Appliquer les changements fichier par fichier
tsc --noEmit+ tests après chaque fichier- Si la migration est complexe →
/deep-update(veille changelog approfondie) - Documenter dans
decisions.mdsi changement architecturel
/migrate lib [ancienne] → [nouvelle] — Changement de librairie
- Rechercher le guide de migration officiel (WebSearch)
- Mapper les API ancienne → nouvelle (tableau de correspondance)
- EnterPlanMode — plan fichier par fichier avant de toucher quoi que ce soit
- Remplacer fichier par fichier, tests verts entre chaque
pnpm remove [ancienne]seulement quand 0 import restant (Grep)- Tests complets +
tsc --noEmit
/migrate framework [version] — Mise à jour de framework
- Lire le guide de migration officiel (WebSearch) — ne pas supposer les breaking changes
- Créer une branch dédiée :
git checkout -b migrate/[framework]-[version] - Suivre le guide étape par étape — une étape = un commit
tsc --noEmit+ build + tests après chaque étape- Si Next.js : vérifier App Router codemods disponibles (
npx @next/codemod) - Créer un ADR documentant les décisions de migration
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.