Skip to content

OpenAI Codex Provider

Monitor and analyze your OpenAI Codex coding sessions with GuideAI Desktop.

OpenAI Codex is the AI model behind GitHub Copilot, available through the OpenAI API for:

  • Code completion - Intelligent code suggestions
  • Code generation - Create code from descriptions
  • Code translation - Convert between languages
  • Bug fixing - Automated error detection and fixes

You need:

  1. OpenAI Account - Sign up at platform.openai.com
  2. API Key - Generate from your OpenAI dashboard
  3. Codex CLI/Integration - Tool that uses Codex
Terminal window
# Example installation (varies by tool)
npm install -g openai-codex-cli
# Or use a specific Codex integration

Configure your Codex tool with OpenAI API key:

Terminal window
# Set environment variable
export OPENAI_API_KEY=your_api_key
# Or configure via tool-specific config
codex config set-key your_api_key

Codex integrations typically store data at:

~/.codex/
├── config.toml
├── sessions/
│ └── session-id.json
└── projects/
└── project-data/
%USERPROFILE%\.codex\
└── ... (same structure)
  1. Navigate to Configuration
  2. Find “OpenAI Codex” card
  3. Toggle “Enabled” to ON

Auto-detected:

  • All platforms: ~/.codex

Custom installation? Update the path manually.

  1. Sync Mode: Choose privacy level
  2. Projects: Select which to monitor
  3. Start watching: Automatic once configured

Codex sessions track:

  • Prompts: Code generation requests
  • Completions: Generated code
  • Context: Surrounding code and files
  • Model: Which Codex model was used
  • Tokens: API usage
  • Token consumption
  • Completion quality
  • Response time
  • Cost tracking