cciwon-code-review-cli 2.0.8 → 2.0.9

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.
@@ -88,7 +88,12 @@ function parseDiffAndShowInVSCode(reviewText, originalFilePath) {
88
88
  execSync(`code --diff "${originalFile}" "${modifiedFile}"`, { stdio: 'ignore' });
89
89
  console.log(chalk.green(`\n📝 VSCode에서 diff를 열었습니다 (${index + 1}/${diffs.length})`));
90
90
  } catch (e) {
91
- console.log(chalk.yellow(`\n⚠️ VSCode를 열 수 없습니다. diff를 수동으로 확인하세요:`));
91
+ console.log(chalk.yellow(`\n⚠️ VSCode를 열 수 없습니다.`));
92
+ console.log(chalk.yellow(`에러: ${e.message}`));
93
+ console.log(chalk.gray(`\n💡 VSCode 'code' 명령어를 설치하세요:`));
94
+ console.log(chalk.gray(` 1. VSCode 열기`));
95
+ console.log(chalk.gray(` 2. Cmd+Shift+P → "Shell Command: Install 'code' command in PATH"`));
96
+ console.log(chalk.gray(`\ndiff 내용:`));
92
97
  console.log(chalk.gray(diff.diffLines.join('\n')));
93
98
  }
94
99
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cciwon-code-review-cli",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
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": {