- 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
33 lines
909 B
Markdown
33 lines
909 B
Markdown
# 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
|
|
|
|
## Recommended Flags
|
|
|
|
- `--full-auto` for feature development (auto-approves changes)
|
|
- `--yolo` for quick refactoring (no sandbox)
|
|
- Interactive (default) for review/debugging
|