بنقرة واحدة
create-migration
Scaffold a new timestamped Supabase migration file in supabase/migrations/
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Scaffold a new timestamped Supabase migration file in supabase/migrations/
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Scaffold a new golden case for @butler/evals — validate and append the case to golden.jsonl, re-capture the baseline, and confirm the eval gate still passes. Use when a real agent failure or escaped bug should become a regression benchmark.
Work the Butler ready-for-agent issue queue in priority order — select the highest-priority unblocked issue (P0 > P1 > P2) and run /implement-issue on it, looping up to a per-run cap. Use ONLY when explicitly asked to "work the queue" / "implement the next issue(s)", or when fired by the scheduled routine. Do not auto-run.
Break a plan, spec, or PRD into independently-grabbable issues on the project issue tracker using tracer-bullet vertical slices. Use when user wants to convert a plan into issues, create implementation tickets, or break down work into issues.
Turn the current conversation context into a PRD and publish it to the project issue tracker. Use when user wants to create a PRD from the current context.
End-to-end implementation of a GitHub issue — from reading the issue through TDD, code review, PR creation, CI monitoring, and merge. Use when the user says "implement issue
Phase 9 retrospective — read a window or set of recently-merged PRs, classify each harness/run finding with the eval-failure taxonomy, and append tagged learnings to docs/retro/learnings.md. Propose-only — writes ONLY under docs/retro/. Use when explicitly asked to "run a retrospective", "retro the last N PRs", or to review a batch of merged work for harness lessons. Do not auto-run.
| name | create-migration |
| description | Scaffold a new timestamped Supabase migration file in supabase/migrations/ |
| disable-model-invocation | true |
Scaffold a new Supabase migration file with a timestamped filename and boilerplate template.
A short snake_case migration name (e.g., add_waitlist_table, create_notifications).
YYYYMMDDHHMMSS format using the current UTC timesupabase/migrations/<timestamp>_<name>.sql-- Migration: <name>
-- Created: <ISO 8601 timestamp>
-- TODO: Add your migration SQL here
-- REMINDER: If this migration creates or modifies a table, consider:
-- 1. Row-Level Security (RLS) — enable RLS and add policies scoped to club_id
-- 2. Indexes — add indexes for columns used in WHERE/JOIN clauses
-- 3. Foreign keys — ensure referential integrity with ON DELETE behavior
-- To validate: supabase db diff
-- To apply locally: supabase db reset
Report the file path and remind the user to:
supabase db diff to validatesupabase db reset to apply locally and verify