dwkim 0.2.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 +30 -11
- package/dist/index.js +411 -57
- package/package.json +28 -7
- package/scripts/install.sh +170 -0
package/README.md
CHANGED
|
@@ -1,21 +1,40 @@
|
|
|
1
1
|
# dwkim
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
터미널에서 바로 만나는 개발자 프로필 & AI 어시스턴트
|
|
4
4
|
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
### 1) Run directly with npx
|
|
5
|
+
## 설치
|
|
8
6
|
|
|
9
7
|
```bash
|
|
10
8
|
npx dwkim
|
|
11
9
|
```
|
|
12
10
|
|
|
13
|
-
|
|
11
|
+
전역 설치를 원한다면:
|
|
12
|
+
```bash
|
|
13
|
+
npm install -g dwkim
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## 사용법
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
dwkim # 프로필 + AI 채팅
|
|
20
|
+
dwkim profile # 프로필만 보기
|
|
21
|
+
dwkim help # 도움말
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
### 채팅 명령어
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
/help 도움말
|
|
28
|
+
/status 서버 상태 확인
|
|
29
|
+
/clear 대화 초기화
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## 환경 변수
|
|
33
|
+
|
|
34
|
+
| 변수 | 설명 | 기본값 |
|
|
35
|
+
|------|------|--------|
|
|
36
|
+
| `DWKIM_API_URL` | API 서버 주소 | https://persona-api.fly.dev |
|
|
14
37
|
|
|
15
|
-
##
|
|
38
|
+
## 라이선스
|
|
16
39
|
|
|
17
|
-
|
|
18
|
-
- Node.js
|
|
19
|
-
- boxen
|
|
20
|
-
- chalk
|
|
21
|
-
- pnpm
|
|
40
|
+
MIT
|