Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问许可证需确认审计通过

kw-check-migrations-supabaseKW check migrations Supabase 命令行

Agent Skill

kw-check-migrations-supabase 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

198

周安装

8

GitHub Stars

1

下载量

62
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:kw-check-migrations-supabase(KW check migrations Supabase 命令行)
来源仓库:https://github.com/kwazema/claude-skills
仓库路径:skills/kw-check-migrations-supabase
安装命令:
npx skills add https://github.com/kwazema/claude-skills --skill kw-check-migrations-supabase
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/kwazema/claude-skills --skill kw-check-migrations-supabase

简介

kw-check-migrations-supabase 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用于需要围绕仓库状态、代码变更或协作事项进行整理的场景。
  • GitHub 仓库、Issue、Pull Request 和代码协作信息处理。

SKILL.md

Check Migrations & Edge Functions — Supabase

Review and apply pending Supabase migrations and deploy edge functions with explanation and confirmation.

Workflow

Run both checks in sequence, then present a unified summary.


Part A — Database Migrations

A1. Detect pending migrations

Run npx supabase db push --dry-run to list migrations not yet applied to the remote database. If it fails, fall back to npx supabase migration list and compare local vs remote status.

If no pending migrations, note it and move to Part B.

A2. Read and explain each migration

For each pending migration file in supabase/migrations/:

  • Read the SQL file
  • Provide a concise explanation: what it does, what table/column it affects, and why (use SQL comments as context)
  • Flag any destructive operations (DROP, DELETE, TRUNCATE) with a warning

A3. Present migrations

## Pending migrations ({count})

1. **{filename}** — {one-line summary}
   {2-3 sentence explanation}

2. **{filename}** — {one-line summary}
   {explanation}

Part B — Edge Functions

B1. Check if edge functions exist locally

Check if supabase/functions/ exists and contains function directories. If the directory does not exist or is empty, note "No local edge functions" and skip to the summary.

B2. Compare local vs remote

  1. Run npx supabase functions list to get deployed functions.
  2. For each local function directory in supabase/functions/:

- If it does NOT appear in the remote list → mark as new (pending first deploy). - If it appears in the remote list → download and diff (see B3).

  1. For functions that appear only in remote (not local) → mention as info ("deployed but no local source").

B3. Diff existing functions

For each function that exists both locally and remotely:

  1. Download the remote version to a temp directory: npx supabase functions download <name> --output /tmp/supabase-fn-diff/<name>
  2. Diff the local directory against the downloaded version: diff -rq supabase/functions/<name> /tmp/supabase-fn-diff/<name>
  3. Classify:

- Changed: diff found differences → mark as pending deploy, show a summary of what changed - Up to date: no differences → mark as synced

  1. Clean up the temp directory after all comparisons.

B4. Present edge functions

## Edge functions ({counts})

### New (not yet deployed)
- **{name}** — {brief description from index.ts}

### Changed (local differs from remote)
- **{name}** — {summary of changes}

### Up to date
- {name}, {name}

### Remote only (no local source)
- {name}

Omit any section that has zero items.


Part C — Summary & Confirmation

Present a unified summary:

## Summary

- Migrations: {count} pending
- Edge functions: {new_count} new, {changed_count} changed

{If nothing pending in either category: "Everything is up to date." → stop}

Then ask what to deploy:

---
What would you like to deploy?
1. Migrations only
2. Edge functions only
3. Everything
4. Cancel
---

Part D — Deploy

Based on user selection:

  • Migrations: run npx supabase db push and report result. If any migration fails, report which one and the error.
  • Edge functions: deploy each selected function one by one with npx supabase functions deploy <name> and report success/failure for each.

Report final status when done.

Important

  • Never deploy without showing the user what will be applied first
  • Always read actual SQL files, not just filenames
  • Destructive SQL operations (DROP TABLE, DELETE FROM, TRUNCATE) deserve explicit warnings
  • For edge function diffs, always clean up temp files after comparison
  • The commands use npx supabase since the CLI may not be installed globally
  • If supabase functions download fails for a function, report it as "unable to diff" rather than failing the whole check

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.27%
按下载量换算21

Claude

28.96%
按下载量换算18

Cursor

20.21%
按下载量换算13

Gemini CLI

8.71%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills