프로젝트에서 일관된 AI 에이전트(Gemini, Claude, Cursor 등) 활용 및 운영을 위해 공통 스킬, 도메인 규칙, 관련 무시(ignore) 파일 등 agent-ops 기반 프레임워크 초기 환경을 구성함.
16 lines
263 B
JSON
16 lines
263 B
JSON
{
|
|
"$schema": "https://opencode.ai/config.json",
|
|
"permission": {
|
|
"read": {
|
|
"agent-task/archive/**": "deny"
|
|
},
|
|
"glob": {
|
|
"agent-task/archive/**": "deny"
|
|
}
|
|
},
|
|
"watcher": {
|
|
"ignore": [
|
|
"agent-task/archive/**"
|
|
]
|
|
}
|
|
}
|