Skip to content

AI-Native Cursor & Git Development SOP

├── .cursor/ # Cursor 프로젝트 설정
├── .cursorrules # AI 아키텍처 헌법
├── src/ # 통합된 안정 코드 (CI 통과 상태)
├── staging/ # 배포 후보 (Release Candidate)
├── tests/ # src와 1:1 대응 검증
├── scripts/ # 승격, 마이그레이션, 배포
└── playground/ # AI 실험 격리 구역 (Quarantine)
TierMeaning
playgroundRisk zone for AI to freely experiment
srcIntegrated stable code
stagingFinal verification zone before actual deployment
  • Experimental Code: playground/YYYYMMDD-feature-name/
  • Testing: *.test.ts , *.spec.ts
  • Branches: feat/* , fix/* , refactor/* , release/*
  • All new logic is written only in playground/
  • Cursor Composer operates only within this folder scope
Section titled “Phase 2 — Promote to src - If the experiment is validated, move to src via the Promotion script - Must pass CI (unit·integration tests) ### Phase 3 — Staging & Release - QA, performance, and legal verification on staging - No AI access — Human approval only for deployment ## Related Documents”