Getting Started with OpenAI
OpenAI offers two products: ChatGPT (conversational AI) and Codex (AI agent for working with files and code). Most people start with ChatGPT — Codex and developer tools are optional.
Time: ~20 minutes for Part 1, ~10 minutes for Part 2 Requires: Nothing — this is where you start.
Part 1 — ChatGPT
Section titled “Part 1 — ChatGPT”The conversational AI assistant. Set up your account, install apps, and configure it for the best experience.
1. Create Your Account
Section titled “1. Create Your Account”- Go to chatgpt.com and sign up (or sign in)
- Upgrade to ChatGPT Plus ($20/month) or ChatGPT Team for the full feature set
Official docs: OpenAI Help Center — Getting started
2. Install ChatGPT Apps
Section titled “2. Install ChatGPT Apps”Install all available apps so you have the right tool for every situation.
- Desktop: openai.com/chatgpt/desktop — macOS and Windows
- Mobile: App Store or Google Play
Sign in to each app with your account.
3. Configure Custom Instructions
Section titled “3. Configure Custom Instructions”Tell ChatGPT about yourself so every conversation starts with context about your role and preferences.
- Click your profile picture (bottom-left) → Customize ChatGPT
- Fill in both sections:
- What would you like ChatGPT to know about you? — your role, industry, what you’re working on
- How would you like ChatGPT to respond? — tone, length, format preferences
- Click Save
Starter template:
I’m a [your role] in [your industry]. I’m learning to build AI-powered workflows and agents. I prefer concise answers with practical examples. When I ask about technical concepts, explain them in business terms first, then provide the technical details.
Official docs: OpenAI Help — Custom Instructions
4. Enable Memory
Section titled “4. Enable Memory”Memory lets ChatGPT remember relevant details from your conversations over time.
- Click your profile picture → Settings → Personalization
- Toggle Memory to on
You can view and manage memories at any time: Settings → Personalization → Manage Memory.
Official docs: OpenAI Help — Memory FAQ
5. Connect Apps
Section titled “5. Connect Apps”ChatGPT connects to external tools through Connected Apps.
- Click your profile picture → Settings → Connected apps
- Browse available integrations (Google Drive, Notion, Zapier, etc.)
- Click Connect on the apps you use
Official docs: OpenAI Help — Apps in ChatGPT
Part 2 — OpenAI Platform
Section titled “Part 2 — OpenAI Platform”Codex is OpenAI’s AI agent that works directly with your files — useful for coding, file operations, research, and automation. Codex is included with ChatGPT Plus, Pro, Business, Enterprise, and Edu plans.
1. Install Codex
Section titled “1. Install Codex”There are three ways to use Codex — pick whichever fits your workflow:
A dedicated application for managing multiple AI agents in parallel. Currently macOS only (Windows coming soon).
- Download from openai.com/codex
- Install and sign in with your ChatGPT account
Official docs: Codex App
Run Codex from your terminal. Works on macOS, Windows, and Linux. Requires Node.js 22+.
npm install -g @openai/codexRun codex and sign in with your ChatGPT account when prompted:
codexVerify:
codex --versionOfficial docs: Codex CLI
Use Codex inside VS Code or Cursor. See AI Code Editor Setup for installation instructions.
Official docs: Get started with Codex · Using Codex with your ChatGPT plan
2. Add Skills (Codex CLI)
Section titled “2. Add Skills (Codex CLI)”After adding skills, you can say “edit this article for HBR quality” and Codex applies professional editorial standards automatically — no re-explaining your requirements each time.
Download skill folders from GitHub and place them in .agents/skills/ in your project root. Codex CLI discovers them automatically.
→ How to Add Skills to Your Platform
3. Create a Platform Account (Optional)
Section titled “3. Create a Platform Account (Optional)”The OpenAI Platform (platform.openai.com) is where you manage API keys, monitor usage, and access developer tools. You need this if you want to authenticate Codex CLI with an API key instead of your ChatGPT account, or if you’re building applications with the OpenAI API.
- Go to platform.openai.com and sign in with your OpenAI account
- Navigate to API keys to create a key if needed
Most people don’t need this — Codex authenticates directly through your ChatGPT subscription.
Official docs: OpenAI Platform — Quickstart
You’re Done When
Section titled “You’re Done When”Part 1 — ChatGPT:
- OpenAI account created with a paid ChatGPT plan
- ChatGPT desktop app installed and signed in
- ChatGPT mobile app installed on at least one device
- Custom instructions configured with your role and preferences
- Memory enabled
- At least one connected app set up (optional)
Part 2 — OpenAI Platform:
- Codex installed — desktop app, CLI, or IDE extension (optional)
- At least one skill installed or added via Codex CLI (optional)
- Platform account created at platform.openai.com (optional)