39 lines
1.3 KiB
Markdown
39 lines
1.3 KiB
Markdown
# Implementation Agent Terra 모델 지정 설계
|
|
|
|
## Metadata
|
|
|
|
- date: 2026-08-16
|
|
- status: approved-design
|
|
- scope: project-local `implementation-agent` 모델 선택
|
|
|
|
## 목표
|
|
|
|
FESA의 `implementation-agent`가 명시적으로 `gpt-5.6-terra`를 사용하도록 설정한다.
|
|
기존 `model_reasoning_effort = "extra high"` 설정은 그대로 유지한다.
|
|
|
|
## 설계
|
|
|
|
`.codex/agents/implementation-agent.toml`에 다음 모델 설정만 추가한다.
|
|
|
|
```toml
|
|
model = "gpt-5.6-terra"
|
|
```
|
|
|
|
이 설정은 프로젝트 로컬 `implementation-agent` 프로필에만 적용된다. 다른 custom agent,
|
|
사용자 전역 Codex 설정, agent 지시문과 solver production 코드는 변경하지 않는다.
|
|
|
|
## 검증
|
|
|
|
새 계약 테스트나 테스트 파일 변경은 추가하지 않는다. 변경 후 다음 항목만 확인한다.
|
|
|
|
1. `implementation-agent.toml`이 유효한 TOML로 파싱된다.
|
|
2. `model` 값이 정확히 `gpt-5.6-terra`이다.
|
|
3. `model_reasoning_effort` 값이 기존의 `extra high`로 유지된다.
|
|
4. Git diff에 설계된 설정 외의 구현 변경이 없다.
|
|
|
|
## 완료 조건
|
|
|
|
- `implementation-agent`에만 `gpt-5.6-terra` 모델 override가 존재한다.
|
|
- 기존 reasoning effort와 agent 동작 계약은 변경되지 않는다.
|
|
- 새 계약 테스트는 추가되지 않는다.
|