dwkim 1.0.1 → 1.0.3
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 +17 -55
- package/dist/index.js +402 -65
- package/package.json +17 -5
package/README.md
CHANGED
|
@@ -1,78 +1,40 @@
|
|
|
1
1
|
# dwkim
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
터미널에서 바로 만나는 개발자 프로필 & AI 어시스턴트
|
|
4
4
|
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
### Quick Start (npx)
|
|
5
|
+
## 설치
|
|
8
6
|
|
|
9
7
|
```bash
|
|
10
8
|
npx dwkim
|
|
11
9
|
```
|
|
12
10
|
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
전역 설치를 원한다면:
|
|
15
12
|
```bash
|
|
16
13
|
npm install -g dwkim
|
|
17
|
-
# or
|
|
18
|
-
pnpm add -g dwkim
|
|
19
14
|
```
|
|
20
15
|
|
|
21
|
-
|
|
16
|
+
## 사용법
|
|
22
17
|
|
|
23
18
|
```bash
|
|
24
|
-
|
|
19
|
+
dwkim # 프로필 + AI 채팅
|
|
20
|
+
dwkim profile # 프로필만 보기
|
|
21
|
+
dwkim help # 도움말
|
|
25
22
|
```
|
|
26
23
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
# 프로필 카드 + AI 채팅
|
|
31
|
-
dwkim
|
|
32
|
-
|
|
33
|
-
# 프로필 카드만
|
|
34
|
-
dwkim profile
|
|
24
|
+
### 채팅 명령어
|
|
35
25
|
|
|
36
|
-
|
|
37
|
-
|
|
26
|
+
```
|
|
27
|
+
/help 도움말
|
|
28
|
+
/status 서버 상태 확인
|
|
29
|
+
/clear 대화 초기화
|
|
38
30
|
```
|
|
39
31
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
Inside the chat mode, you can use:
|
|
43
|
-
|
|
44
|
-
- `/help` - Show available commands
|
|
45
|
-
- `/status` - Check API server status
|
|
46
|
-
- `/search <query>` - Search documents directly
|
|
47
|
-
|
|
48
|
-
### Environment Variables
|
|
49
|
-
|
|
50
|
-
- `DWKIM_API_URL` - Custom API endpoint (default: https://persona-api.fly.dev)
|
|
51
|
-
- `DWKIM_NO_STREAM` - Set to `1` to disable streaming mode
|
|
52
|
-
|
|
53
|
-
## Features
|
|
54
|
-
|
|
55
|
-
- **Profile Card**: Display developer information in a beautiful terminal card
|
|
56
|
-
- **AI Chat**: Interactive chat with RAG-powered AI assistant
|
|
57
|
-
- **Streaming**: Real-time streaming responses for a better UX
|
|
58
|
-
- **Cross-platform**: Works on Linux, macOS, and Windows
|
|
59
|
-
|
|
60
|
-
## Development
|
|
61
|
-
|
|
62
|
-
```bash
|
|
63
|
-
# Install dependencies
|
|
64
|
-
pnpm install
|
|
65
|
-
|
|
66
|
-
# Run in dev mode
|
|
67
|
-
pnpm dev
|
|
68
|
-
|
|
69
|
-
# Build
|
|
70
|
-
pnpm build
|
|
32
|
+
## 환경 변수
|
|
71
33
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
34
|
+
| 변수 | 설명 | 기본값 |
|
|
35
|
+
|------|------|--------|
|
|
36
|
+
| `DWKIM_API_URL` | API 서버 주소 | https://persona-api.fly.dev |
|
|
75
37
|
|
|
76
|
-
##
|
|
38
|
+
## 라이선스
|
|
77
39
|
|
|
78
40
|
MIT
|