@supacloud/cli 0.29.0 → 0.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +57 -0
- package/dist/index.js +1057 -61
- package/package.json +1 -1
- package/skills/supacloud-cli/references/command-map.md +2 -1
package/package.json
CHANGED
|
@@ -16,6 +16,7 @@ Load this reference when selecting a command surface or when a user asks an AI t
|
|
|
16
16
|
| Rebuild local database | `supabase db_reset` | Local only; preserve required seed behavior |
|
|
17
17
|
| Inspect or back up a remote database | `supabase db_pull`, `migration_list`, `db_dump`, `gen_types` | Requires explicit PostgreSQL DSN; redact it |
|
|
18
18
|
| Replay the release-canary fixture stage receipt | `release release_canary_fixture_stage_replay` | Dual-bind Management project context and that project's service-role application origin; accepts only the exact subject/request UUID pair and a strict idempotent receipt |
|
|
19
|
+
| Disable a staged release-canary fixture | `release release_canary_fixture_disable_replay` | Uses the fixed disable RPC once, accepts idempotent false/true receipts, then queries the existing pending RPC with issuer/subject and requires authoritative JSON `false`; fixture binding comes from the strict disable receipt |
|
|
19
20
|
| Preview/apply migrations remotely | `supabase push` | Always dry-run first; production needs explicit approval |
|
|
20
21
|
| Mark proven-equivalent historical migrations as applied | `database baseline_migrations` | Dry-run, schema-equivalence proof, backup, explicit approval |
|
|
21
22
|
| Inspect auth users or generate a controlled login link | `auth list_users`, `auth get_user`, `auth generate_link` | User reads are bounded; generation supports only `magiclink`, `recovery`, and `invite`, requires production confirmation, and returns only a validated action URL |
|
|
@@ -40,7 +41,7 @@ until a project-scoped context is resolved.
|
|
|
40
41
|
- `secrets`: project secret management; never print values after write.
|
|
41
42
|
- `queue`, `task_events`, `diagnostics`: asynchronous workload operations and bounded diagnostics.
|
|
42
43
|
- `gateway`: project route/config/rebuild operations.
|
|
43
|
-
- `release`: verified backup/PostgREST lifecycle controls plus
|
|
44
|
+
- `release`: verified backup/PostgREST lifecycle controls plus production-confirmed, non-retried, strict release-canary fixture stage and disable replay actions. These actions require both the selected Management project binding and that project's `SUPABASE_URL`/`SUPABASE_SERVICE_ROLE_KEY`.
|
|
44
45
|
- `ai`: inspect or install this packaged Skill.
|
|
45
46
|
|
|
46
47
|
## Safe inspection pattern
|