commit-ai-agent 1.0.0 → 1.0.1

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/README.md +8 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -28,7 +28,7 @@ commit-analyzer
28
28
  ### 방법 C — 직접 클론
29
29
 
30
30
  ```bash
31
- git clone https://github.com/사용자명/commit-analyzer.git
31
+ git clone https://github.com/cjy3458/commit-analyzer.git
32
32
  cd commit-analyzer
33
33
  npm install
34
34
  npm start
@@ -46,11 +46,11 @@ DEV_ROOT=C:/Users/이름/dev
46
46
  PORT=3000
47
47
  ```
48
48
 
49
- | 변수 | 설명 |
50
- |------|------|
49
+ | 변수 | 설명 |
50
+ | ---------------- | ---------------------------------------------------------------------- |
51
51
  | `GEMINI_API_KEY` | [Google AI Studio](https://aistudio.google.com/apikey)에서 발급 (무료) |
52
- | `DEV_ROOT` | 분석할 git 프로젝트들이 모여 있는 루트 폴더 |
53
- | `PORT` | 서버 포트 (기본값 3000) |
52
+ | `DEV_ROOT` | 분석할 git 프로젝트들이 모여 있는 루트 폴더 |
53
+ | `PORT` | 서버 포트 (기본값 3000) |
54
54
 
55
55
  > Windows 경로는 `\` 대신 `/` 또는 `\\` 사용: `C:/dev`, `D:/projects`
56
56
 
@@ -58,9 +58,9 @@ PORT=3000
58
58
 
59
59
  ## 기능
60
60
 
61
- | 모드 | 설명 |
62
- |------|------|
63
- | 📦 최근 커밋 분석 | 마지막 커밋의 의도·근거·코드 리뷰 자동 생성 |
61
+ | 모드 | 설명 |
62
+ | --------------------- | ------------------------------------------------------- |
63
+ | 📦 최근 커밋 분석 | 마지막 커밋의 의도·근거·코드 리뷰 자동 생성 |
64
64
  | 🔍 현재 변경사항 분석 | staged/unstaged/untracked 분석 + 커밋 메시지 3가지 제안 |
65
65
 
66
66
  - 분석 결과는 실행 위치의 `reports/` 폴더에 Markdown으로 저장됩니다.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "commit-ai-agent",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "AI-powered git commit & working status analyzer with web UI",
5
5
  "type": "module",
6
6
  "main": "src/server.js",