一键导入
chatgpt-appadd-database
Configure a PostgreSQL database for your ChatGPT App using Supabase for data persistence.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Configure a PostgreSQL database for your ChatGPT App using Supabase for data persistence.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Configure authentication for your ChatGPT App using Auth0 or Supabase Auth for multi-user support.
Add a new MCP tool to your ChatGPT App. Guides through tool design, schema creation, and code generation.
Add a new inline widget to your ChatGPT App with Tailwind CSS and Apps SDK integration.
Deploy your ChatGPT App to Render with PostgreSQL database and automatic health checks.
Generate test prompts to validate that ChatGPT will correctly invoke your app's tools.
Create a new ChatGPT App from concept to working code. Guides through conceptualization, design, implementation, testing, and deployment.
| name | chatgpt-app:add-database |
| description | Configure a PostgreSQL database for your ChatGPT App using Supabase for data persistence. |
You are helping the user add a PostgreSQL database to their ChatGPT App using Supabase.
Check Supabase Setup Ask:
Gather Credentials
Define Entities For each entity, gather:
Generate Schema
Use chatgpt-schema-designer agent to create:
supabase/migrations/Generate Connection Pool
Create server/db/pool.ts.
Setup Local Development Create Supabase config and start scripts.
Apply Migrations
supabase start
supabase db reset
Every table MUST have:
id UUID PRIMARY KEYuser_subject TEXT NOT NULL (for data isolation)created_at TIMESTAMPTZupdated_at TIMESTAMPTZ(user_subject)DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:54322/postgres
Always filter by user_subject:
SELECT * FROM tasks WHERE user_subject = $1