chatgpt-app-builder

chatgpt-app-builder is a skill for Claude Code, Codex from alpic-ai/skybridge. It costs 78 tokens per session (841 once invoked), scanned A, original, MIT.

A development guide for building and updating ChatGPT apps—conversational tools with custom screens that ChatGPT can use during a conversation.

In plain words
What is it for?
Use it to create or change ChatGPT apps, including their tools and user-interface views, and to handle setup, debugging, local development, deployment, and ChatGPT connection.
Why use it?
It gives developers a structured way to plan the app, keep requirements documented, build the server and screens, test locally, fix problems, and connect the result to ChatGPT.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

not rated 2.0krepo changed 5d ago A scan Socket: passSnyk: warnSkillSpector: pass 78 tokens original MIT

Good fit Use it to create or change ChatGPT apps, including their tools and user-interface views, and to handle setup, debugging, local development, deployment, and ChatGPT connection.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/alpic-ai/skybridge/chatgpt-app-builder
About the project

alpic-ai/skybridge is a full-stack TypeScript and React framework for building MCP apps, which are interactive user interfaces connected to MCP servers and usable in clients such as Claude and ChatGPT. It helps developers create type-safe apps with development tooling, client compatibility, React hooks, and agent-oriented APIs. The catalogue skills, instructions, setting, and hook support workflows for building MCP apps with Skybridge.

alpic-ai/skybridge · 1,995 stars · on GitHub · skybridge.tech

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add alpic-ai/skybridge --skill chatgpt-app-builder
Clone the repo
git clone --depth 1 https://github.com/alpic-ai/skybridge

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for chatgpt-app-builder

README.md
[![agentmods](https://agentmods.dev/badge/skills/alpic-ai/skybridge/chatgpt-app-builder/github.svg)](https://agentmods.dev/skills/alpic-ai/skybridge/chatgpt-app-builder)
Your own site
<a href="https://agentmods.dev/skills/alpic-ai/skybridge/chatgpt-app-builder"><img src="https://agentmods.dev/badge/skills/alpic-ai/skybridge/chatgpt-app-builder/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for chatgpt-app-builder

Your own site · 80×15
<a href="https://agentmods.dev/skills/alpic-ai/skybridge/chatgpt-app-builder"><img src="https://agentmods.dev/badge/skills/alpic-ai/skybridge/chatgpt-app-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 841 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 22 May 2026
  • Snyk warn 22 May 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00078 $0.00841
Opus 5 $0.00039 $0.00420
Sonnet 5 $0.00016 $0.00168
Haiku 4.5 $0.00008 $0.00084

Measured 5d ago against content hash 33339309ecf7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

chatgpt-app-builder scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

3 near-identical copies found in the catalogue:

skills/chatgpt-app-builder/SKILL.md · 55 lines

How it starts

The opening of the file, as written. The whole thing — 55 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Creating Apps For LLMs

ChatGPT apps are conversational experiences that extend ChatGPT through tools and custom UI views. They're built as MCP servers invoked during conversations.

⚠️ The app is consumed by two users at once: the human and the ChatGPT LLM. They collaborate through the view—the human interacts with it, the LLM sees its state. Internalize this before writing code: the view is your shared surface.

SPEC.md keeps track of the app's requirements and design decisions. Keep it up to date as you work on the app.

Building an ecommerce app? → Read ecommerce.md first.

No SPEC.md? → Read discover.md first. Nothing else until SPEC.md exists.

SPEC.md exists? → Read SPEC.md, then follow architecture.md to design the change. Update SPEC.md, then read the relevant Implementation references below before writing code.

Migrating from Skybridge < 0.36.x? → Read migrate-to-v1.md first. Users may reference skybridge >= 0.36.x as v1.

Migrating from Skybridge 1.x to 2.x? → Fetch the v2.0.0 release notes first and follow them.

Setup

  1. Copy templatecopy-template.md: when starting a new project with ready SPEC.md
  2. Run locallyrun-locally.md: when ready to test, need dev server or ChatGPT connection
  3. Evalsevals.md: when checking that a real model reaches the right tools from natural prompts, in a test

Architecture

Design or evolve UX flows and API shape → architecture.md

Implementation

  • Fetch and render datafetch-and-render-data.md: when implementing server handlers and view data fetching
  • State and contextstate-and-context.md: when persisting view UI state and updating LLM context
  • Prompt LLMprompt-llm.md: when view needs to trigger LLM response
  • UI guidelinesui-guidelines.md: display modes, layout constraints, theme, device, and locale
  • External linksopen-external-links.md: when redirecting to external URLs or setting "open in app" target
  • OAuthoauth.md: when tools need user authentication to access user-specific data
  • CSPcsp.md: when declaring allowed domains for fetch, assets, redirects, or iframes

Read the full file on GitHub · 55 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago Changed · +3 lines 33339309ecf7
  2. 10d ago First seen · 52 lines · 78 tokens per session scan A b2aced46f8c2

Subscribe to this mod's changes

chatgpt-app-builder is a skill published in the GitHub repository alpic-ai/skybridge (1,995 stars, last pushed today), licensed MIT. It adds 78 tokens to every session and 841 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

search

Search 2500+ curated ChatGPT and LLM open-source repositories. Use when the user asks to find tools, libraries, or repos related to ChatGPT, LLMs, RAG, agents, langchain, NLP, AI development, or any open-source AI tooling.

taishi-i/awesome-ChatGPT-repositories · 57 tokens

pptx

Create and validate Microsoft PowerPoint presentations (.pptx), including structured slide decks, tables, workflows, metadata, and reproducible generation scripts. Use for presentation, slides, PowerPoint, PPT, or PPTX creation and verification tasks.

agents-flex/agents-flex · 50 tokens

ai-tutor

Use when user asks to explain, break down, or help understand technical concepts (AI, ML, or other technical topics). Makes complex ideas accessible through plain English and narrative structure. Use the provided scripts to transcribe videos.

agents-flex/agents-flex · 48 tokens

proma-coach

A Chinese-language coach for improving how people use Proma, Agent, Skill, Chat, and project tools.

proma-ai/Proma · 386 tokens

skill-creator

Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.

proma-ai/Proma · 64 tokens

automation

A built-in workflow for creating and managing automatic or scheduled tasks. It covers one-time delays, repeated runs, monitoring, reminders, run history, and changing or stopping existing tasks.

proma-ai/Proma · 390 tokens