β‘
Supabase
Backend Cloud & DevOpsInstall Command
npx clawhub@latest install supabase
Installation Guide
1
Check Environment
Make sure Node.js 22+ and OpenClaw are installed. Run openclaw --version in your terminal to verify.
2
Run Installation
Run the install command above in your terminal. ClawHub will automatically download and install Supabase to the ~/.openclaw/skills/ directory.
3
Verify Installation
Run openclaw skills list to check your installed skills and confirm Supabase appears in the list.
4
Configure (Optional)
Follow the configuration instructions in the description below to add skill settings to ~/.config/openclaw/openclaw.json5.
Manual Installation: Copy the Skill folder to
~/.openclaw/skills/ or the skills/ directory in your project root. Make sure the folder contains a SKILL.md file.
PostgreSQL
File Storage
Open Source
Detailed Description
The Supabase skill connects OpenClaw to the Supabase open-source backend platform for database and backend service management.
Core Features
- Database Queries: Query the PostgreSQL database using natural language
- Table Management: View table structures, create/modify tables
- Auth Management: View and manage user authentication information
- File Storage: Manage files in Supabase Storage
- Edge Functions: View and invoke Edge Functions
Configuration
{
skills: {
supabase: {
url: "https://xxx.supabase.co",
serviceKey: "eyJ..."
}
}
}
Use Cases
- "Query all orders from today in the orders table"
- "Add a stock field to the products table"
- "How many files are in the avatars bucket in Storage?"
- "Invoke the send-notification Edge Function"