vibe-collab 0.8.10 → 0.8.11
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/dist/mcp/server.js
CHANGED
|
@@ -93,7 +93,7 @@ export async function startMCPServer(explicitPath) {
|
|
|
93
93
|
},
|
|
94
94
|
{
|
|
95
95
|
name: 'vibe_record_checkpoint',
|
|
96
|
-
description: '코드 수정이 발생한 경우 반드시 호출하세요.
|
|
96
|
+
description: '코드 수정이 발생한 경우 git commit 전에 반드시 호출하세요. 이 도구 호출 후 .vibe/state.json을 포함하여 git add -A && git commit && git push 하세요. 생략하거나 commit 후에 호출하면 팀 기록이 누락됩니다.',
|
|
97
97
|
inputSchema: {
|
|
98
98
|
type: 'object',
|
|
99
99
|
properties: {
|
|
@@ -22,7 +22,7 @@ function buildCheckpointMessage(stage, details) {
|
|
|
22
22
|
const filesText = filesChanged && filesChanged.length > 0
|
|
23
23
|
? `\n변경된 파일:\n${filesChanged.map((f) => ` · ${f}`).join('\n')}`
|
|
24
24
|
: '';
|
|
25
|
-
return `✅ 코드 작성 완료${filesText}\n\n검토를 시작하겠습니다. 계속할까요?\n [예, 검토해주세요] [아니오, 나중에 할게요]`;
|
|
25
|
+
return `✅ 코드 작성 완료${filesText}\n\n⚠️ 지금 바로 .vibe/state.json을 포함한 모든 변경 파일을 git commit & push 하세요.\n 커밋 명령: git add -A && git commit -m "..." && git push\n (.vibe/state.json이 커밋에 빠지면 팀 기록이 누락됩니다)\n\n커밋 완료 후 검토를 시작하겠습니다. 계속할까요?\n [예, 검토해주세요] [아니오, 나중에 할게요]`;
|
|
26
26
|
}
|
|
27
27
|
case 'qa_passed':
|
|
28
28
|
return `✅ 검토 완료 — 팀 공유 준비됨\n\n검토 결과:\n · 요청하신 기능이 모두 구현됐습니다 ✓\n · 기존 기능에 영향 없음 ✓\n · 코드 규칙 준수 ✓\n\n지금 팀에 공유하시겠습니까?\n [예, 공유하기] [아니오, 나중에]`;
|
|
@@ -99,12 +99,15 @@ ${pausedText}
|
|
|
99
99
|
① 사용자 요청 접수 → vibe_analyze_request 호출
|
|
100
100
|
② 작업 항목 확정 → vibe_start_work 호출
|
|
101
101
|
③ 코드 수정 완료 → vibe_record_checkpoint(stage: "code_complete") 즉시 호출 ← 절대 생략 금지
|
|
102
|
-
④ 코드
|
|
103
|
-
⑤ 검토
|
|
104
|
-
⑥
|
|
102
|
+
④ vibe_record_checkpoint 완료 직후 → git add .vibe/state.json (코드 파일과 함께) → git commit → git push ← state.json 반드시 포함
|
|
103
|
+
⑤ 코드 검토 → vibe_request_qa 호출
|
|
104
|
+
⑥ 검토 통과 → vibe_create_pr 호출
|
|
105
|
+
⑦ 각 단계 완료 후 사용자에게 결과 전달 및 다음 단계 확인
|
|
105
106
|
|
|
106
107
|
[절대 금지]
|
|
107
108
|
- 코드를 수정한 뒤 vibe_record_checkpoint를 호출하지 않는 것 (팀 기록 누락)
|
|
109
|
+
- git commit 전에 vibe_record_checkpoint를 건너뛰는 것 (state.json이 커밋에서 누락됨)
|
|
110
|
+
- .vibe/state.json을 git add/commit에서 제외하는 것 (팀 기록 손실)
|
|
108
111
|
- CHARTER 규칙 위반 코드 작성
|
|
109
112
|
- Issue, PR, Merge, Branch 같은 기술 용어 사용자에게 노출
|
|
110
113
|
==========================================`;
|