projectops 4.2.18 → 4.2.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/ui/summary.js +4 -2
package/README.md
CHANGED
package/package.json
CHANGED
package/src/ui/summary.js
CHANGED
|
@@ -128,10 +128,12 @@ export function printSummary(ctx, targetRoot = ".") {
|
|
|
128
128
|
|
|
129
129
|
err(" 📖 TEMPLATE REPO: https://github.com/Cassiiopeia/projectops");
|
|
130
130
|
err(" 📚 워크플로우 가이드: .github/workflows/project-types/README.md");
|
|
131
|
-
// #493 — 이번 실행의 마이그레이션
|
|
131
|
+
// #493 — 이번 실행의 마이그레이션 기록. "뭐가 남았고 AI에게 어떻게 시키는지"가 바로 보이게 행동 유도형으로 안내.
|
|
132
132
|
if (ctx?.migrationGuidePath) {
|
|
133
133
|
err(` 🧭 마이그레이션 가이드: ${ctx.migrationGuidePath}`);
|
|
134
|
-
err("
|
|
134
|
+
err(" 이번 설치에서 바뀐 내용과 직접 확인해야 할 작업이 이 파일에 정리되어 있습니다.");
|
|
135
|
+
err(" 💡 AI Agent(Claude, Cursor 등)에게 \"마이그레이션 가이드 확인하고");
|
|
136
|
+
err(" 남은 작업 처리해줘\"라고 요청하면 이 문서를 읽고 대신 진행합니다.");
|
|
135
137
|
}
|
|
136
138
|
err("");
|
|
137
139
|
|