chatgpt-apps

3
1
Source

Complete ChatGPT Apps builder - Create, design, implement, test, and deploy ChatGPT Apps with MCP servers, widgets, auth, database integration, and automated deployment

Install

mkdir -p .claude/skills/chatgpt-apps && curl -L -o skill.zip "https://mcp.directory/api/skills/download/5727" && unzip -o skill.zip -d .claude/skills/chatgpt-apps && rm skill.zip

Installs to .claude/skills/chatgpt-apps

About this skill

ChatGPT Apps Builder

Complete workflow for building, testing, and deploying ChatGPT Apps from concept to production.

Commands

  • /chatgpt-apps new - Create a new ChatGPT App
  • /chatgpt-apps add-tool - Add an MCP tool to your app
  • /chatgpt-apps add-widget - Add a widget to your app
  • /chatgpt-apps add-auth - Configure authentication
  • /chatgpt-apps add-database - Set up database
  • /chatgpt-apps validate - Validate your app
  • /chatgpt-apps test - Run tests
  • /chatgpt-apps deploy - Deploy to production
  • /chatgpt-apps resume - Resume working on an app

Table of Contents

  1. Create New App
  2. Add MCP Tool
  3. Add Widget
  4. Add Authentication
  5. Add Database
  6. Generate Golden Prompts
  7. Validate App
  8. Test App
  9. Deploy App
  10. Resume App

1. Create New App

Purpose: Create a new ChatGPT App from concept to working code.

Workflow

Phase 1: Conceptualization

  1. Ask for the app idea "What ChatGPT App would you like to build? Describe what it does and the problem it solves."

  2. Analyze against UX Principles

    • Conversational Leverage: What can users accomplish through natural language?
    • Native Fit: How does this integrate with ChatGPT's conversational flow?
    • Composability: Can tools work independently and combine with other apps?
  3. Check for Anti-Patterns

    • Static website content display
    • Complex multi-step workflows requiring external tabs
    • Duplicating ChatGPT's native capabilities
    • Ads or upsells
  4. Define Use Cases Create 3-5 primary use cases with user stories.

Phase 2: Design

  1. Tool Topology

    • Query tools (readOnlyHint: true)
    • Mutation tools (destructiveHint: false)
    • Destructive tools (destructiveHint: true)
    • Widget tools (return UI with _meta)
    • External API tools (openWorldHint: true)
  2. Widget Design For each widget:

    • id - unique identifier (kebab-case)
    • name - display name
    • description - what it shows
    • mockData - sample data for preview
  3. Data Model Design entities and relationships.

  4. Auth Requirements

    • Single-user (no auth needed)
    • Multi-user (Auth0 or Supabase Auth)

Phase 3: Implementation

Generate complete application with this structure:

{app-name}/
├── package.json
├── tsconfig.server.json
├── setup.sh
├── START.sh
├── .env.example
├── .gitignore
└── server/
    └── index.ts

Critical Requirements:

  • Server class from @modelcontextprotocol/sdk/server/index.js
  • StreamableHTTPServerTransport for session management
  • Widget URIs: ui://widget/{widget-id}.html
  • Widget MIME type: text/html+skybridge
  • structuredContent in tool responses
  • _meta with openai/outputTemplate on tools

Phase 4: Testing

  • Run setup: ./setup.sh
  • Start dev: ./START.sh --dev
  • Preview widgets: http://localhost:3000/preview
  • Test MCP connection

Phase 5: Deployment

  • Generate Dockerfile and render.yaml
  • Deploy to Render
  • Configure ChatGPT connector

2. Add MCP Tool

Purpose: Add a new MCP tool to your ChatGPT App.

Workflow

  1. Gather Information

    • What does this tool do?
    • What inputs does it need?
    • What does it return?
  2. Classify Tool Type

    • Query (readOnlyHint: true) - Fetches data
    • Mutation (destructiveHint: false) - Creates/updates data
    • Destructive (destructiveHint: true) - Deletes data
    • Widget - Returns UI content
    • External (openWorldHint: true) - Calls external APIs
  3. Design Input Schema Create Zod schema with appropriate types and descriptions.

  4. Generate Tool Handler Use chatgpt-mcp-generator agent to create:

    • Tool handler in server/tools/
    • Zod schema export
    • Type exports
    • Database queries (if needed)
  5. Register Tool Update server/index.ts with metadata:

    {
      name: "my-tool",
      _meta: {
        "openai/toolInvocation/invoking": "Loading...",
        "openai/toolInvocation/invoked": "Done",
        "openai/outputTemplate": "ui://widget/my-widget.html", // if widget
      }
    }
    
  6. Update State Add tool to .chatgpt-app/state.json.

Tool Naming

Use kebab-case: list-items, create-task, show-recipe-detail

Annotations Guide

ScenarioreadOnlyHintdestructiveHintopenWorldHint
List/Gettruefalsefalse
Create/Updatefalsefalsefalse
Deletefalsetruefalse
External APIvariesvariestrue

3. Add Widget

Purpose: Add inline HTML widgets with HTML/CSS/JS and Apps SDK integration.

5 Widget Patterns

  1. Card Grid - Multiple items in grid
  2. Stats Dashboard - Key metrics display
  3. Table - Tabular data
  4. Bar Chart - Simple visualizations
  5. Detail Widget - Single item details

Workflow

  1. Gather Information

    • Widget purpose and data
    • Visual design (cards, table, chart, etc.)
    • Interactivity needs
  2. Define Data Shape Document expected structure with TypeScript interface.

  3. Add Widget Config

    const widgets: WidgetConfig[] = [
      {
        id: "my-widget",
        name: "My Widget",
        description: "Displays data",
        templateUri: "ui://widget/my-widget.html",
        invoking: "Loading...",
        invoked: "Ready",
        mockData: { /* sample */ },
      },
    ];
    
  4. Add Widget HTML Generate HTML with:

    • Preview mode support (window.PREVIEW_DATA)
    • OpenAI Apps SDK integration (window.openai.toolOutput)
    • Event listeners (openai:set_globals)
    • Polling fallback (100ms, 10s timeout)
  5. Create/Update Tool Link tool to widget via widgetId.

  6. Test Widget Preview at /preview/{widget-id} with mock data.

Widget HTML Structure

(function() {
  let rendered = false;

  function render(data) {
    if (rendered || !data) return;
    rendered = true;
    // Render logic
  }

  function tryRender() {
    if (window.PREVIEW_DATA) { render(window.PREVIEW_DATA); return; }
    if (window.openai?.toolOutput) { render(window.openai.toolOutput); }
  }

  window.addEventListener('openai:set_globals', tryRender);

  const poll = setInterval(() => {
    if (window.openai?.toolOutput || window.PREVIEW_DATA) {
      tryRender();
      clearInterval(poll);
    }
  }, 100);
  setTimeout(() => clearInterval(poll), 10000);

  tryRender();
})();

4. Add Authentication

Purpose: Configure authentication using Auth0 or Supabase Auth.

When to Add

  • Multiple users
  • Persistent private data per user
  • User-specific API credentials

Providers

Auth0:

  • Enterprise-grade
  • OAuth 2.1, PKCE flow
  • Social logins (Google, GitHub, etc.)

Supabase Auth:

  • Simpler setup
  • Email/password default
  • Integrates with Supabase database

Workflow

  1. Choose Provider Ask user preference based on needs.

  2. Guide Setup

    • Auth0: Create application, configure callback URLs, get credentials
    • Supabase: Already configured with database setup
  3. Generate Auth Code Use chatgpt-auth-generator agent to create:

    • Session management middleware
    • User subject extraction
    • Token validation
  4. Update Server Add auth middleware to protect routes.

  5. Update Environment

    # Auth0
    AUTH0_DOMAIN=your-tenant.auth0.com
    AUTH0_CLIENT_ID=...
    AUTH0_CLIENT_SECRET=...
    
    # Supabase (from database setup)
    SUPABASE_URL=...
    SUPABASE_ANON_KEY=...
    
  6. Test Verify login flow and user isolation.


5. Add Database

Purpose: Configure PostgreSQL database using Supabase.

When to Add

  • Persistent user data
  • Multi-entity relationships
  • Query/filter capabilities

Workflow

  1. Check Supabase Setup Verify account and project exist.

  2. Gather Credentials

    • Project URL
    • Anon key (public)
    • Service role key (server-side)
  3. Define Entities For each entity, specify:

    • Fields and types
    • Relationships
    • Indexes
  4. Generate Schema Use chatgpt-database-generator agent to create SQL with:

    • id (UUID primary key)
    • user_subject (varchar, indexed)
    • created_at (timestamptz)
    • updated_at (timestamptz)
    • RLS policies for user isolation
  5. Setup Connection Pool

    import { createClient } from '@supabase/supabase-js';
    
    const supabase = createClient(
      process.env.SUPABASE_URL!,
      process.env.SUPABASE_SERVICE_ROLE_KEY!
    );
    
  6. Apply Migrations Run SQL in Supabase dashboard or via migration tool.

Query Pattern

Always filter by user_subject:

const { data } = await supabase
  .from('tasks')
  .select('*')
  .eq('user_subject', userSubject);

6. Generate Golden Prompts

Purpose: Generate test prompts to validate ChatGPT correctly invokes tools.

Why Important

  • Measure precision/recall
  • Enable iteration
  • Post-launch monitoring

3 Categories

  1. Direct Prompts - Explicit tool invocation

    • "Show me my task list"
    • "Create a new task called..."
  2. Indirect Prompts - Outcome-based, ChatGPT should infer tool

    • "What do I need to do today?"
    • "Help me organize my work"
  3. Negative Prompts - Should NOT trigger tool

    • "What is a task?"
    • "Tell me about project management"

Workflow

  1. Analyze Tools Review each tool's purpose and inputs.

  2. Generate Prompts For each tool, create:

    • 5+ direct prompts
    • 5+ indirect prompts
    • 3+ negative prompts
    • 2+ edge case prompts
  3. Best Practices

    • Tool descriptions start with "Use this when..."
    • State limitations clearl

Content truncated.

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

1,6851,430

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

1,2701,335

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

1,5441,153

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

1,359809

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

1,265728

pdf-to-markdown

aliceisjustplaying

Convert entire PDF documents to clean, structured Markdown for full context loading. Use this skill when the user wants to extract ALL text from a PDF into context (not grep/search), when discussing or analyzing PDF content in full, when the user mentions "load the whole PDF", "bring the PDF into context", "read the entire PDF", or when partial extraction/grepping would miss important context. This is the preferred method for PDF text extraction over page-by-page or grep approaches.

1,493684