cciwon-code-review-cli 2.0.7 → 2.0.8

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.
Files changed (2) hide show
  1. package/lib/chat-mode.js +6 -5
  2. package/package.json +1 -1
package/lib/chat-mode.js CHANGED
@@ -160,13 +160,14 @@ class ChatMode {
160
160
  // 서버에 리뷰 요청
161
161
  console.log(chalk.gray(`🚀 서버로 리뷰 요청 중...`));
162
162
  const result = await this.client.reviewCode(content, language);
163
- const reveiwTextOnly =
164
- parserDiffAndShowInVSCode(result.reivew, filePath);
165
- console.log(reviewTextOnly);
166
163
  console.log(chalk.gray(`✓ 리뷰 완료\n`));
167
164
 
168
- // 결과 출력
169
- console.log(result.review);
165
+ // diff를 파싱하고 VSCode로 표시, 리뷰 텍스트만 반환
166
+ const reviewTextOnly = parseDiffAndShowInVSCode(result.review, filePath);
167
+
168
+ // 결과 출력 (리뷰 텍스트만)
169
+ console.log(chalk.bold.cyan('=== 코드 리뷰 결과 ==='));
170
+ console.log(reviewTextOnly);
170
171
  console.log('');
171
172
 
172
173
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cciwon-code-review-cli",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "description": "AI-powered code review CLI tool using Qwen3-Coder-30B model with IP whitelist support",
5
5
  "main": "lib/api-client.js",
6
6
  "bin": {