commit-ai-agent 1.0.0 → 1.0.2
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 +15 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,12 +28,14 @@ commit-analyzer
|
|
|
28
28
|
### 방법 C — 직접 클론
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
|
-
git clone https://github.com
|
|
31
|
+
git clone https://github.com/cjy3458/commit-analyzer.git
|
|
32
32
|
cd commit-analyzer
|
|
33
33
|
npm install
|
|
34
34
|
npm start
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
+
npm start 대신 Windows 사용자는 `start.bat`를 더블클릭하여 바로 실행할 수 있습니다.
|
|
38
|
+
|
|
37
39
|
---
|
|
38
40
|
|
|
39
41
|
## 환경 설정
|
|
@@ -46,11 +48,11 @@ DEV_ROOT=C:/Users/이름/dev
|
|
|
46
48
|
PORT=3000
|
|
47
49
|
```
|
|
48
50
|
|
|
49
|
-
| 변수
|
|
50
|
-
|
|
51
|
+
| 변수 | 설명 |
|
|
52
|
+
| ---------------- | ---------------------------------------------------------------------- |
|
|
51
53
|
| `GEMINI_API_KEY` | [Google AI Studio](https://aistudio.google.com/apikey)에서 발급 (무료) |
|
|
52
|
-
| `DEV_ROOT`
|
|
53
|
-
| `PORT`
|
|
54
|
+
| `DEV_ROOT` | 분석할 git 프로젝트들이 모여 있는 루트 폴더 |
|
|
55
|
+
| `PORT` | 서버 포트 (기본값 3000) |
|
|
54
56
|
|
|
55
57
|
> Windows 경로는 `\` 대신 `/` 또는 `\\` 사용: `C:/dev`, `D:/projects`
|
|
56
58
|
|
|
@@ -58,13 +60,18 @@ PORT=3000
|
|
|
58
60
|
|
|
59
61
|
## 기능
|
|
60
62
|
|
|
61
|
-
| 모드
|
|
62
|
-
|
|
63
|
-
| 📦 최근 커밋 분석
|
|
63
|
+
| 모드 | 설명 |
|
|
64
|
+
| --------------------- | ------------------------------------------------------- |
|
|
65
|
+
| 📦 최근 커밋 분석 | 마지막 커밋의 의도·근거·코드 리뷰 자동 생성 |
|
|
64
66
|
| 🔍 현재 변경사항 분석 | staged/unstaged/untracked 분석 + 커밋 메시지 3가지 제안 |
|
|
65
67
|
|
|
68
|
+
- **브라우저 기반 GUI**: 웹 브라우저에서 직관적인 인터페이스로 분석 실행 가능
|
|
66
69
|
- 분석 결과는 실행 위치의 `reports/` 폴더에 Markdown으로 저장됩니다.
|
|
67
70
|
|
|
71
|
+
## 스크린샷
|
|
72
|
+
|
|
73
|
+

|
|
74
|
+
|
|
68
75
|
---
|
|
69
76
|
|
|
70
77
|
## 문제 해결
|