Files
madgerm 358ee34457 refactor: Migrate from Claude Code to Codex CLI - .claude to .codex restructure
- Replaced .claude/ with .codex/ directory structure
- Created CODEX.md as root instructions for Codex
- Added .codex/prompts/ with templates for each development phase
- Added .codex/config/project.md for project configuration
- Removed .claude/agents/ (not compatible with Codex)
- Updated features/INDEX.md and docs/PRD.md references
2026-05-16 01:21:03 +02:00

909 B

Codex Configuration

Project Settings

This project is optimized for Codex CLI autonomous coding.

Key Files

  • CODEX.md - Root instructions (this file guides Codex)
  • .codex/prompts/ - Pre-built prompts for each development phase
  • features/INDEX.md - Feature tracking and status
  • docs/PRD.md - Product Requirements Document

Development Workflow

  1. Requirements → 2. Architecture → 3. Frontend → 4. Backend → 5. QA → 6. Deploy

Each phase uses codex exec with natural language prompts. See CODEX.md for example commands.

Conventions

  • Feature IDs: PROJ-1, PROJ-2, etc.
  • Commits: feat(PROJ-X): description
  • Tests: co-located with source files
  • shadcn/ui first: never recreate installed components
  • --full-auto for feature development (auto-approves changes)
  • --yolo for quick refactoring (no sandbox)
  • Interactive (default) for review/debugging