diff --git a/.cursorrules b/.cursorrules new file mode 100644 index 0000000..6648b75 --- /dev/null +++ b/.cursorrules @@ -0,0 +1,16 @@ +# 공통 규칙 + +- 기존 구조를 우선한다. 새 파일 생성보다 기존 파일 수정을 우선한다. +- 코드 변경 전 관련 domain rule을 먼저 확인한다. +- 요청 범위를 넘는 변경을 하지 않는다. +- 불확실하면 단정하지 말고 후보를 제시한다. + +아래 요청은 `agent-ops/skills/common/router.md`를 읽고 수행한다. +- agent-ops 초기화 +- domain rule 생성 +- skill 생성 +- git commit / git push +- agent-ops 업데이트 / 진입 파일 재적용 + +`agent-ops/rules/project/rules.md`와 +`agent-ops/rules/private/rules.md`를 읽고 작업을 시작한다. 파일이 없을경우 무시한다. diff --git a/agent-ops/.version b/agent-ops/.version index 65087b4..e25d8d9 100644 --- a/agent-ops/.version +++ b/agent-ops/.version @@ -1 +1 @@ -1.1.4 +1.1.5 diff --git a/agent-ops/bin/sync.sh b/agent-ops/bin/sync.sh index 62155ce..6706663 100755 --- a/agent-ops/bin/sync.sh +++ b/agent-ops/bin/sync.sh @@ -132,6 +132,7 @@ if [[ "$IS_FRAMEWORK" == "1" ]]; then else echo " 이후 진행: common/ 동기화" sync_common "$SRC_AO" "$DST_AO" + cp "$SRC_AO/.version" "$DST_AO/.version" apply_entry_files "$SRC_AO/rules/common/rules.md" "$TARGET" fi echo -e "${GREEN}✓ 완료 → $(basename "$TARGET")${RESET}"