Codex is OpenAI’s open-source terminal coding agent. It reads your codebase, writes code, runs commands, and can use tools — making it a great fit for scaffolding Podium integrations from the command line.Documentation Index
Fetch the complete documentation index at: https://podium.build/docs/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
- Codex CLI installed:
- A ChatGPT Plus, Pro, Team, or Enterprise plan (authenticates via your OpenAI account)
- A Podium API key
Instructions File
Create acodex.md (or AGENTS.md) at the root of your project to give Codex persistent context about Podium:
Usage
Start Codex in your project directory:“Install the Podium SDK and create an API route that fetches personalized product recommendations for a user and returns them as JSON”Codex will:
- Run
npm install @podium-sdk/node-sdk - Create the file with correct imports from the instructions context
- Write a function using
client.companion.listRecommendations()
Multi-Agent Mode
For complex tasks, use Codex’s experimental multi-agent mode:Environment Setup
Make sure your Podium API key is available as an environment variable:.env file:
Example Tasks
| Prompt | What Codex Does |
|---|---|
| ”Add a product search endpoint” | Creates route using client.agentic.listProductsFeed() |
| ”Build a checkout flow” | Scaffolds session creation + payment using client.agentic.createCheckoutSessions() |
| ”Add points to a user after purchase” | Writes post-checkout hook using client.user.awardPoints() |
| ”Create a task bounty board component” | Builds UI + data fetching with client.tasks.listTasks() |
Related
- Claude Code — Anthropic’s terminal agent (similar workflow)
- SDK Setup — complete SDK reference
- SDK Examples — real-world code patterns

