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

Migrate

skill-glamgarondiscord-claude-saas-blueprint-migrate · by GlamgarOnDiscord

Gère les migrations : DB, dépendances majeures, changement de lib, ou mise à jour de framework.

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

Install

$ agentstack add skill-glamgarondiscord-claude-saas-blueprint-migrate

✓ 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-glamgarondiscord-claude-saas-blueprint-migrate)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo 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 Migrate? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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 :

  1. Toute nouvelle table → vérifier ENABLE ROW LEVEL SECURITY + politiques RLS
  2. python scripts/supabase_rls_check.py — doit retourner 0 tables sans RLS
  3. Mettre à jour core/entities/ et core/ports/ si les types changent
  4. Régénérer les types TypeScript : pnpm supabase gen types
  5. 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

  1. Lire changelog/release notes officiel (WebSearch) — breaking changes uniquement
  2. Grep les imports du package dans tout le projet
  3. Appliquer les changements fichier par fichier
  4. tsc --noEmit + tests après chaque fichier
  5. Si la migration est complexe → /deep-update (veille changelog approfondie)
  6. Documenter dans decisions.md si changement architecturel

/migrate lib [ancienne] → [nouvelle] — Changement de librairie

  1. Rechercher le guide de migration officiel (WebSearch)
  2. Mapper les API ancienne → nouvelle (tableau de correspondance)
  3. EnterPlanMode — plan fichier par fichier avant de toucher quoi que ce soit
  4. Remplacer fichier par fichier, tests verts entre chaque
  5. pnpm remove [ancienne] seulement quand 0 import restant (Grep)
  6. Tests complets + tsc --noEmit

/migrate framework [version] — Mise à jour de framework

  1. Lire le guide de migration officiel (WebSearch) — ne pas supposer les breaking changes
  2. Créer une branch dédiée : git checkout -b migrate/[framework]-[version]
  3. Suivre le guide étape par étape — une étape = un commit
  4. tsc --noEmit + build + tests après chaque étape
  5. Si Next.js : vérifier App Router codemods disponibles (npx @next/codemod)
  6. 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.

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.