بنقرة واحدة
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