Create vector bucket
documentedCreate a vector bucket for embeddings.
POST /storage/v1/vector/bucketsStorageno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{$project_ref}}.supabase.co/storage/v1/vector/buckets" \\
-X POST \\
-H "Authorization: Bearer {{SUPABASE_API_KEY}}" \\
-H "Content-Type: application/json" \\
-H "Accept: application/json" \\
-d '{"name": "{{$bucket_name}}"}'