Skip to content

Codex CLI Complete Guide

OpenAI DevDay 2025 Summary - AgentKit and App Integration Deep Dive

What You'll Learn

Five major announcements from OpenAI DevDay 2025 How to start building AI agents with AgentKit Steps to integrate apps within ChatGPT

On October 6, 2025, OpenAI DevDay in San Francisco unveiled a new era of AI development. With 800 million weekly ChatGPT users as the foundation, the evolution of development tools now enables individual developers to build enterprise-level AI applications.

Target Audience

  • Mid-level engineers considering AI agent implementation
  • Developers looking to integrate ChatGPT into their services
  • Technical leaders wanting to leverage OpenAI's latest tools

Key Points

  1. Understand the five major DevDay 2025 announcements
  2. Evaluate AgentKit implementation feasibility
  3. Learn how to integrate ChatGPT into your services

OpenAI DevDay 2025's Explosive Growth

Growth by Numbers

CEO Sam Altman's keynote revealed OpenAI's remarkable growth:

Metric20232025Growth
Weekly Users100M800M8x
Developers2M4M2x
API Processing0.3B tokens/min8B tokens/min~27x

Five new tools were announced to support this growth.

Five Major Announcements from OpenAI DevDay 2025

Overview

AnnouncementRelease TypePrimary Use
AgentKitBetaAI agent building
Apps SDKPreviewChatGPT app development
CodexGeneral AvailabilityCoding assistance
ChatKitGenerally AvailableChat UI embedding
Connector RegistryBetaData integration management

Important

Apps SDK currently available outside EU only. Review terms of service before production deployment.

AgentKit Transforms AI Agent Development

8-Minute Agent Build Demonstration

The highlight of OpenAI DevDay 2025 was engineer Christina Huang's live demonstration. She built a DevDay attendee Q&A agent in just 8 minutes using AgentKit.

Four Core AgentKit Features

Design workflows with drag-and-drop. Place nodes for conditionals, loops, and data transformations. Supports preview runs, inline eval configuration, and full versioning.

Provides embeddable chat UI. Supports brand design customization and integrates into websites or apps with just a few lines of code.

Measure agent performance. Enables step-by-step trace recording, dataset evaluation, and automated prompt optimization. Supports third-party model evaluation.

Centrally manage integrations with popular platforms like Dropbox, Google Drive, Microsoft Teams, and SharePoint. Control security and permissions through admin dashboard.

Getting Started

# AgentKit SDK basic example
from agents import Agent, Runner

agent = Agent(
    name="Support Agent",
    instructions="Answer customer questions"
)

result = Runner.run_sync(
    agent,
    "How do I return Product A?"
)
print(result.final_output)

Pro Tips

Starting with Agent Builder's pre-built templates (customer support, data analysis, etc.) reduces design time by 80%.

AgentKit Integration Examples (Click to expand)

Ramp: Built a purchasing agent from blank canvas in hours. Automated expense approval process, reducing processing time by 90%.

Box: Implemented internal data search agent. Maintains permission management while instantly extracting information from 1,000+ documents.

HubSpot: Enhanced Breeze AI tool with AgentKit. Improved customer inquiry response quality, increasing first-contact resolution by 40%.

AgentKit Availability and Pricing

FeatureStatusPricing
Agent BuilderBetaIncluded in standard API pricing
ChatKitGenerally AvailableIncluded in standard API pricing
Evals for AgentsGenerally AvailableIncluded in standard API pricing
Connector RegistryBeta (select customers)Included in Enterprise/Edu plans

Running Apps Directly Inside ChatGPT

Apps SDK Innovation

OpenAI DevDay 2025 announced the Apps SDK based on Model Context Protocol (MCP). This enables direct operation of apps like Spotify, Canva, Figma, Coursera, Booking.com, Zillow, and Expedia inside ChatGPT.

Implementation Flow

  1. Create MCP server and connect data sources
  2. Build UI components following Apps SDK design guidelines
  3. Test in ChatGPT using Developer Mode
  4. Submit for app review (starting later this year)

Reference Information

DoorDash, Instacart, Uber, AllTrails planning support. Apps SDK details available in OpenAI developer documentation (open source).

User Experience Transformation

Previously apps launched individually. With Apps SDK, simply say "Spotify, create Friday party playlist" and the app auto-launches. Processing begins with ChatGPT context awareness.

Apps SDK Technical Features

  • MCP Compliant: Based on open standards, works on other platforms
  • Custom Code: Developers define interface and chat logic with own code
  • Direct Backend Connection: Securely connects to data sources, retrieves real-time data

Supported Plans and Regions

PlanAvailableRegion Restriction
FreeOutside EU
GoOutside EU
PlusOutside EU
ProOutside EU

Codex General Availability Speeds Development 10x

From Research Preview to Production

OpenAI DevDay 2025 announced Codex general availability. Features GPT-5-Codex model with high SWE-bench Verified scores.

Three New Features

1. Slack Integration

Request code generation directly from team channels. Simply tag @Codex to understand conversation context, select appropriate environment, and complete tasks.

# Slack usage example
@Codex Add unit tests for this function

2. Codex SDK

Enables embedding into custom workflows. Integrate GPT-5-Codex capabilities with just a few lines of code.

// Codex SDK usage example (TypeScript)
import { CodexClient } from '@openai/codex-sdk';

const client = new CodexClient();
const result = await client.generate({
  prompt: 'Implement state management with React Hooks',
  language: 'typescript',
  context: 'Consider existing component structure'
});

3. Admin Dashboard

Enables usage analysis, permission control, environment management, and code review quality tracking. Available on Business, Edu, and Enterprise plans.

Codex Plan Support

PlanSlack IntegrationSDKAdmin Dashboard
Plus×
Pro×
Business
Edu
Enterprise
Enterprise Adoption Cases (Click to expand)

Cisco: Completed large-scale Codex deployment. Thousands of developers use in enterprise environment, reducing code review time by 60%.

Duolingo: Educational content development speed increased 3x. Create new language course prototypes in ⅓ the previous time.

Rakuten: Leveraged for Japanese code comment auto-generation. Legacy code documentation dramatically streamlined.

Features Developers Can Use Now

Free Tier Options

  • AgentKit: ChatKit and Evals generally available to all developers
  • Apps SDK: Preview testing available (outside EU)
  • Codex: Available on ChatGPT Plus and above

Pricing (API)

AgentKit and Apps SDK included in standard API pricing. OpenAI DevDay 2025 reconfirmed existing GPT-5 pricing.

ModelInputOutputPrimary Use
GPT-5$1.25/M tokens$10/M tokensAdvanced reasoning
GPT-5 mini$0.25/M tokens$2/M tokensLightweight tasks
GPT-5 nano$0.05/M tokens$0.40/M tokensLow-cost high-volume

Cost Optimization

Prompt caching enables 90% cost reduction for repeated queries.

OpenAI's Growth Signals AI Development Democratization

Individual Developers Achieve Enterprise Quality

OpenAI DevDay 2025 announcements dramatically lowered AI development barriers. AgentKit and Apps SDK make CEO Altman's words reality: "development that took months now completes in minutes."

Three Key DevDay 2025 Messages

  1. Agent Development Democratization: Build practical agents in 8 minutes with AgentKit
  2. Platform Strategy Acceleration: Access 800M user market in ChatGPT with Apps SDK
  3. Developer Experience Enhancement: 10x development speed with Codex GA

Summary

OpenAI DevDay 2025 established new AI development standards. Built on ChatGPT's 800M weekly users, AgentKit, Apps SDK, and Codex GA provide an environment where anyone from individual developers to large enterprises can build sophisticated AI applications.

Next Steps You Can Start Now:

  1. Embed chat UI on your site with AgentKit's ChatKit
  2. Validate existing app integration feasibility with Apps SDK Developer Mode
  3. Measure development team productivity with Codex Slack integration

Next Steps


Reference Information

  • Event Date: October 6, 2025
  • Location: San Francisco
  • Major Announcements: AgentKit, Apps SDK, Codex GA, ChatKit, Connector Registry