DEV Community

Skila AI
Skila AI

Posted on • Originally published at news.skila.ai

ChatGPT's Operator Framework: How the New App Integrations Actually Work

OpenAI launched six native app integrations for ChatGPT on March 14, 2026 — DoorDash, Spotify, Uber, Canva, Figma, and Expedia. Everyone covered what they do. I want to cover how they work, because the underlying architecture is what matters for developers.

The Operator Framework

This isn't a plugin marketplace revival. OpenAI built a structured operator framework — a standardized way for third-party apps to expose actions to ChatGPT with proper authentication and user consent flows.

The key design decisions:

Scoped OAuth tokens, not broad permissions. The Uber integration gets booking permissions, not your ride history. DoorDash gets ordering permissions, not direct payment method access. Sensitive data stays with the source app; ChatGPT receives action tokens.

Explicit user consent per action category. You're prompted before ChatGPT completes a transaction, not after. Each integration requires a one-time OAuth flow (~30 seconds per app), and consent is scoped to the specific action categories exposed.

Repeatability by design. The six integrations launching now are the first batch built on this framework. If the operator framework is stable and the UX patterns validate, the next wave (Airbnb, Instacart, Slack) becomes much faster to build.

The Figma Integration Is the Most Technically Ambitious

For developers, this one deserves attention:

  • ChatGPT reads Figma file structures
  • Extracts component properties
  • Modifies text layers, colors, sizing
  • Triggers exports — all via the Figma API

The workflow this enables: describe a design change in natural language → ChatGPT applies it to the live Figma file → design team reviews before committing. This isn't just friction reduction — it's a new review-and-execute workflow that doesn't currently exist.

Compare to Siri's DoorDash integration (reorder previous orders) vs ChatGPT's (describe what you want, it finds the best option). Different category of capability.

What This Means for the AI Assistant Market

Google Assistant and Siri have had third-party integrations for years. The difference is the quality of the natural language layer and the depth of actions exposed. The Figma and Canva integrations move ChatGPT into professional creative workflows in a way no existing voice assistant has managed.

Apple and Google now face pressure to either expose OS-level integrations to third-party LLMs, or close the gap with their own models. The operator framework just raised the bar.

Access

Integrations are live for ChatGPT Plus ($20/mo) and Pro ($200/mo). Free tier rollout is "coming soon" with no specific timeline.

Setup: one-time OAuth flow per app, appears automatically in the ChatGPT interface for connected accounts.


Full breakdown with all six integrations covered in detail: Skila AI

Top comments (0)