Deploy Supabase Functions
SkillCloud & infraThe user specifies the environment as an argument: /deploy-functions dev, /deploy-functions eval, or /deploy-functions prod. If not provided, ask which environment.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Deploy Supabase Functions skill
About this capability
Gradient Bang is an online multiplayer universe where you explore, trade, battle, and collaborate with other players and with LLMs
What this skill tells your AI
The instructions your AI receives, as published by pipecat-ai/gradient-bang in .claude/skills/deploy-functions/SKILL.md and read by ahel’s review.
Deploys all Supabase edge functions.
Parameters
The user specifies the environment as an argument: /deploy-functions dev, /deploy-functions eval, or /deploy-functions prod. If not provided, ask which environment.
dev→ env file:.env.cloud.deveval→ env file:.env.cloud.evalprod→ env file:.env.cloud
Steps
1. Source env and resolve the project ref
set -a && source <env-file> && set +a
PROJECT_REF=$(echo "$SUPABASE_URL" | sed -E 's|https://([^.]+).*|\1|')
echo "Deploying to project: $PROJECT_REF"
SUPABASE_URL is defined in every cloud env file (https://<ref>.supabase.co). Extracting the ref from it pins the deploy to the env the user asked for, regardless of what supabase link last pointed at. Never rely on --linked for remote deploys — the linked project may belong to a different environment.
2. Deploy
npx supabase functions deploy --workdir deployment/ --no-verify-jwt --project-ref "$PROJECT_REF"
3. Verify
Confirm the output shows all functions deployed successfully (Deployed Functions on project <ref>: ...) and that the printed project ref matches the env you intended. Report any errors to the user.
Important notes
- This deploys ALL edge functions in
deployment/supabase/functions/. - The
--no-verify-jwtflag disables JWT verification on deployed functions. - The skill is independent of
supabase link—--project-refis the source of truth.
Signals
- GitHub stars
- 419
- Forks
- 67
- Last commit
- Jun 2026
Advanced
- Catalog kind
- skill
- Gateway key
deploy-functions- Source
- github.com/pipecat-ai/gradient-bang