`supabase snippets list` does not paginate - only returns first 10 snippets

Describe the bug

supabase snippets list only returns the latest 10 snippets for a project. There doesn't appear to be a way to paginate or fetch more results.

To Reproduce

  1. Have a Supabase project with more than 10 SQL snippets
  2. Run supabase snippets list
  3. Only the latest 10 snippets are returned

Expected behavior

supabase snippets list should return all snippets, or at least allow adjusting the limit / pagination.

Additional context

The Management API supports cursor, limit, sort_by, and sort_order query parameters on GET /v1/snippets, but none of these are exposed by the CLI command.

The supabase --output json snippets list JSON response includes a cursor field, but nothing can be done with that.