원클릭으로
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