dwkim 3.6.0 → 3.6.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.
- package/README.md +33 -0
- package/dist/index.js +97 -96
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -4,13 +4,46 @@
|
|
|
4
4
|
|
|
5
5
|
터미널에서 만나는 김동욱 AI 에이전트
|
|
6
6
|
|
|
7
|
+
Built by DongWook Kim <dannyworks102@gmail.com>.
|
|
8
|
+
|
|
7
9
|
## 사용법
|
|
8
10
|
|
|
9
11
|
```bash
|
|
12
|
+
npx dwkim@latest # 설치 없이 실행
|
|
13
|
+
|
|
10
14
|
dwkim # 프로필 + AI 채팅
|
|
11
15
|
dwkim profile # 프로필만
|
|
12
16
|
```
|
|
13
17
|
|
|
18
|
+
기본 API는 `https://persona-api.fly.dev`를 사용합니다.
|
|
19
|
+
|
|
20
|
+
## 로컬 개발
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
bun install
|
|
24
|
+
bun run dev:dwkim
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
기존 workspace 명령도 동작합니다:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
bun run --filter dwkim dev
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
이 경로는 로컬 빌드 후 published CLI와 같은 `node dist/index.js`를 실행합니다.
|
|
34
|
+
|
|
35
|
+
로컬 persona-api에 붙여서 테스트하려면:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
cd packages/persona-api
|
|
39
|
+
cp .env.example .env # GOOGLE_API_KEY, GEMINI_API_KEY, or OPENROUTER_API_KEY 설정
|
|
40
|
+
bun run build:index
|
|
41
|
+
bun run dev
|
|
42
|
+
|
|
43
|
+
# 다른 터미널 (repo root)
|
|
44
|
+
DWKIM_API_URL=http://localhost:3000 bun run dev:dwkim
|
|
45
|
+
```
|
|
46
|
+
|
|
14
47
|
## 라이선스
|
|
15
48
|
|
|
16
49
|
MIT
|