Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

supabase-to-insforge-skills

supabase-to-insforge-skills 收录了来自 tonychang04 的 6 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
6
Stars
3
更新
2026-07-08
Forks
0
职业覆盖
3 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

migrate-auth
软件开发工程师

Use when migrating Supabase auth.users (and optionally auth.identities for OAuth) to modern InsForge auth.users + auth.user_providers. Preserves UUIDs (critical for FK integrity). Path A (direct Postgres, SUPABASE_DB_URL) copies bcrypt hashes so users keep passwords. Path B (no DB access — only a service_role / sb_secret_ key) exports users via the GoTrue Admin API and closes the password gap with a JIT bridge or reset.

2026-07-08
migrate-database
数据库架构师

Use when migrating PostgreSQL schema and data (including RLS policies, triggers, enum types, and functions) from a Supabase project to InsForge. Diagnoses target model first (modern auth.users vs legacy _accounts), applies minimal transforms, and loads via direct psql (bypassing InsForge's restrictive import API).

2026-04-27
migrate-frontend-sdk
网页开发工程师

Use when rewriting a frontend codebase from @supabase/supabase-js to @insforge/sdk. Runs a grep-based inventory of call sites first, then rewrites imports, client init, auth flows, database queries, storage uploads, and function invocations. Flags patterns that don't auto-port (realtime channels, auth.admin session flows).

2026-04-27
supabase-to-insforge
软件开发工程师

Use when a user wants to migrate an application from Supabase to InsForge. Orchestrates database, auth, storage, edge function, and frontend SDK migration. Runs a diagnostic probe first, produces an inventory report, selects strategy based on the target's actual schema shape, then dispatches to child skills in dependency order.

2026-04-27
migrate-edge-functions
软件开发工程师

Use when migrating Supabase Edge Functions (Deno TS files) to modern InsForge Functions. Rewrites imports, handler shape, env vars, and SDK client init; deploys via raw HTTP API (stateless, automation-friendly). The DB row alone does not activate the runtime — deploy is mandatory.

2026-04-13
migrate-storage
数据库架构师

Use when migrating Supabase Storage buckets and objects to modern InsForge storage. Creates buckets via SQL, downloads object bytes from source, uploads to target via HTTP API preserving exact keys, then runs a universal regex URL rewrite across all jsonb columns to fix embedded references.

2026-04-13