demian-cli 1.1.0 → 1.1.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 +6 -0
- package/dist/tui.mjs +2026 -271
- package/dist/vscode-worker.mjs +651 -39
- package/docs/ko/README.md +5 -0
- package/package.json +1 -1
package/docs/ko/README.md
CHANGED
|
@@ -134,6 +134,10 @@ demian-plain "프로젝트 구조를 요약해 줘"
|
|
|
134
134
|
TUI 내부 명령:
|
|
135
135
|
|
|
136
136
|
- `/compact`: 오래된 대화 압축
|
|
137
|
+
- `/session list`: 저장된 CLI 대화 목록 보기
|
|
138
|
+
- `/session new [제목]`: 새 대화 시작
|
|
139
|
+
- `/session switch <번호|id|제목>`: 저장된 대화로 전환
|
|
140
|
+
- `/session rename <제목>`, `/session delete <번호|id|제목>`: 대화 관리
|
|
137
141
|
- `/stop`: 현재 작업 중단
|
|
138
142
|
- `/exit` 또는 `/quit`: 종료
|
|
139
143
|
- `/goal ...`: 검증이 필요한 목표 시작
|
|
@@ -142,6 +146,7 @@ TUI 내부 명령:
|
|
|
142
146
|
## 저장 위치
|
|
143
147
|
|
|
144
148
|
- `~/.demian/config.json(d)`: 사용자 설정
|
|
149
|
+
- `~/.demian/conversations.json`, `~/.demian/conversations/`: CLI/VS Code 대화 기록
|
|
145
150
|
- `.demian/config.json(d)`: 프로젝트 설정
|
|
146
151
|
- `.demian/preferences.json`: workspace별 provider/model 선택
|
|
147
152
|
- `.demian/grants.json`: persistent permission grant
|