project/
├── AGENTS.md
├── PLANS.md
├── README.md
│
├── .codex/
│ └── config.toml
│
├── .agents/
│ └── skills/
│ ├── feature-clarifier/
│ │ └── SKILL.md
│ ├── react-standard-screen/
│ │ └── SKILL.md
│ ├── spring-feature/
│ │ └── SKILL.md
│ ├── postgres-migration/
│ │ └── SKILL.md
│ ├── bug-triage/
│ │ └── SKILL.md
│ └── quality-gate/
│ └── SKILL.md
│
├── docs/
│ ├── agent/
│ │ ├── task-template.md
│ │ ├── code-review.md
│ │ └── definition-of-done.md
│ ├── architecture/
│ │ └── overview.md
│ ├── frontend/
│ │ ├── layout-rules.md
│ │ └── component-catalog.md
│ └── backend/
│ └── coding-rules.md
│
├── frontend/
│ ├── AGENTS.md
│ └── ...
│
├── backend/
│ ├── AGENTS.md
│ └── ...
│
├── infra/
│ └── docker-compose.yml
│
└── scripts/
├── dev-start
├── check-frontend
├── check-backend
└── check-all
| 폴더 |
역할 |
| 최상위 AGENTS.md |
프로젝트 전체 공통 규칙 |
| frontend/AGENTS.md |
React 작업 규칙 |
| backend/AGENTS.md |
Spring Boot 작업 규칙 |
| PLANS.md |
복잡한 작업 계획 작성 형식 |
| .codex/config.toml |
Codex 프로젝트 설정 |
| .agents/skills |
반복 작업 워크플로 |
| task-template.md |
Codex에 전달할 작업 요청 양식 |
| code-review.md |
AI 코드리뷰 기준 |
| definition-of-done.md |
기능 완료 판정 기준 |
| layout-rules.md |
화면 표준화 기준 |
| scripts |
빌드/테스트 명령 단순화 |