devez-vibe 0.1.0

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/LICENSE ADDED
@@ -0,0 +1,33 @@
1
+ DevezCode source code license
2
+
3
+ The MIT License below applies only to the DevezCode source code and to files
4
+ that are not listed in the exception below.
5
+
6
+ Exceptions:
7
+
8
+ * `Resources/Images/FileTypes/` and `Resources/Licenses/` are Microsoft Visual
9
+ Studio Image Library materials, subject to the included Microsoft terms.
10
+ * `Resources/Images/ShellPresets/` contains third-party brand assets, subject
11
+ to their respective owners' terms.
12
+
13
+ MIT License
14
+
15
+ Copyright (c) 2026 DevezCode contributors
16
+
17
+ Permission is hereby granted, free of charge, to any person obtaining a copy
18
+ of this software and associated documentation files (the "Software"), to deal
19
+ in the Software without restriction, including without limitation the rights
20
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
21
+ copies of the Software, and to permit persons to whom the Software is
22
+ furnished to do so, subject to the following conditions:
23
+
24
+ The above copyright notice and this permission notice shall be included in all
25
+ copies or substantial portions of the Software.
26
+
27
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
30
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
31
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
32
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,48 @@
1
+ # Devez Vibe
2
+
3
+ 공식 `codex app-server`를 위한 차분한 터미널 클라이언트입니다. 인증, 하네스 프롬프트,
4
+ 도구, 스킬, `AGENTS.md`, 샌드박스는 Codex가 그대로 담당하고, 이 프로젝트는 화면과 입력
5
+ 계층만 소유합니다.
6
+
7
+ ## 설치
8
+
9
+ ```powershell
10
+ npm install -g devez-vibe
11
+ ```
12
+
13
+ 현재 Windows x64 빌드만 배포합니다.
14
+
15
+ ## 사용
16
+
17
+ Codex CLI가 설치되고 로그인된 환경에서:
18
+
19
+ ```powershell
20
+ dvz
21
+ ```
22
+
23
+ 주요 옵션:
24
+
25
+ ```text
26
+ dvz [--resume [SESSION] | --continue] [--model MODEL] [--effort EFFORT]
27
+ [--cwd PATH] [--codex PATH] [--theme THEME]
28
+ ```
29
+
30
+ `--resume`만 입력하면 검색 가능한 세션 피커를 열고, `--continue`는 현재 폴더의 가장 최근
31
+ 세션을 바로 이어갑니다. 실행 중 전체 명령은 `/help`에서 확인합니다.
32
+
33
+ ## 업데이트
34
+
35
+ 새 버전이 배포되면 시작 시 안내 배너가 표시됩니다. 배너의 안내대로 실행하면 됩니다.
36
+
37
+ ```powershell
38
+ dvz update
39
+ ```
40
+
41
+ `npm install -g devez-vibe@latest`와 동일하며, 실행 중인 바이너리를 교체할 수 있도록
42
+ 별도 창에서 설치가 진행됩니다.
43
+
44
+ 업데이트 확인을 끄려면 `DEVEZ_VIBE_NO_UPDATE_CHECK` 환경변수를 설정합니다.
45
+
46
+ ## 라이선스
47
+
48
+ MIT. 자세한 내용은 [저장소](https://github.com/MrHoje/Devez-Vibe)를 참고하세요.
package/bin/dvz.exe ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "devez-vibe",
3
+ "version": "0.1.0",
4
+ "description": "Stable terminal UI for the official Codex app-server",
5
+ "keywords": [
6
+ "codex",
7
+ "cli",
8
+ "tui",
9
+ "terminal",
10
+ "app-server"
11
+ ],
12
+ "homepage": "https://github.com/MrHoje/Devez-vibe#readme",
13
+ "bugs": "https://github.com/MrHoje/Devez-vibe/issues",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/MrHoje/Devez-vibe.git"
17
+ },
18
+ "license": "MIT",
19
+ "bin": {
20
+ "dvz": "bin/dvz.exe"
21
+ },
22
+ "files": [
23
+ "bin/dvz.exe",
24
+ "README.md",
25
+ "LICENSE"
26
+ ],
27
+ "os": [
28
+ "win32"
29
+ ],
30
+ "cpu": [
31
+ "x64"
32
+ ],
33
+ "engines": {
34
+ "node": ">=18"
35
+ }
36
+ }