@kimuson/claude-code-viewer 0.6.0-beta.2 → 0.6.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/README.md +22 -12
- package/dist/main.js +682 -536
- package/dist/main.js.map +4 -4
- package/dist/static/assets/ProtectedRoute-KMCDjFpr.js +1 -0
- package/dist/static/assets/{eye-BEkfdnRO.js → eye-DsqhY3YQ.js} +1 -1
- package/dist/static/assets/{index-CHZixXYx.js → index-BU5VCG8M.js} +1 -1
- package/dist/static/assets/{index-C9P7O98i.js → index-BUy-hZ_L.js} +1 -1
- package/dist/static/assets/index-DhqtKAUx.js +101 -0
- package/dist/static/assets/{label-DigNu3m4.js → label-Bx75JYJV.js} +1 -1
- package/dist/static/assets/{login-CotBrr4P.js → login-CIKB0Oew.js} +1 -1
- package/dist/static/assets/session-D50bOHyT.js +58 -0
- package/dist/static/assets/session-DDGTF8rc.css +1 -0
- package/dist/static/assets/{session-BfEVLScy.js → session-WhX_gGJt.js} +1 -1
- package/dist/static/index.html +1 -1
- package/package.json +48 -48
- package/dist/static/assets/ProtectedRoute-kldRjzy3.js +0 -1
- package/dist/static/assets/index-nTFAt0o5.js +0 -101
- package/dist/static/assets/session-B4VFb0DB.js +0 -51
- package/dist/static/assets/session-DFuMZ0ql.css +0 -1
package/README.md
CHANGED
|
@@ -40,18 +40,6 @@ Claude Code Viewer is a web-based Claude Code client focused on **comprehensive
|
|
|
40
40
|
| System Information | Monitor Claude Code and Claude Code Viewer versions, feature compatibility, and system status |
|
|
41
41
|
| Multi-language Support | Full internationalization support with English, Japanese, and Simplified Chinese language options |
|
|
42
42
|
|
|
43
|
-
## Screenshots
|
|
44
|
-
|
|
45
|
-
| Feature | Capture |
|
|
46
|
-
| --- | --- |
|
|
47
|
-
| BasicChat (Desktop) |  |
|
|
48
|
-
| BasicChat (Mobile) |  |
|
|
49
|
-
| CommandCompletion |  |
|
|
50
|
-
| FileCompletion |  |
|
|
51
|
-
| Diff Viewer |  |
|
|
52
|
-
|
|
53
|
-
Note: Additional UI screenshots are available in [/e2e/snapshots/](./e2e/snapshots/)
|
|
54
|
-
|
|
55
43
|
## Installation & Usage
|
|
56
44
|
|
|
57
45
|
### Quick Start (CLI)
|
|
@@ -82,6 +70,7 @@ Options:
|
|
|
82
70
|
-P, --password <password> Password for authentication
|
|
83
71
|
-e, --executable <executable> Path to Claude Code executable
|
|
84
72
|
--claude-dir <claude-dir> Path to Claude directory
|
|
73
|
+
--api-only Run in API-only mode without Web UI
|
|
85
74
|
```
|
|
86
75
|
|
|
87
76
|
### Docker Deployment
|
|
@@ -119,6 +108,26 @@ docker compose up --build
|
|
|
119
108
|
> - /path/to/claude_home:/root/.claude
|
|
120
109
|
> ```
|
|
121
110
|
|
|
111
|
+
## Screenshots
|
|
112
|
+
|
|
113
|
+
| Feature | Capture |
|
|
114
|
+
| --- | --- |
|
|
115
|
+
| BasicChat (Desktop) |  |
|
|
116
|
+
| BasicChat (Mobile) |  |
|
|
117
|
+
| Browser Preview (Right Panel) |  |
|
|
118
|
+
| Git Tab (Right Panel) |  |
|
|
119
|
+
| Review Panel (Right Panel) |  |
|
|
120
|
+
| File Diffs (Right Panel) |  |
|
|
121
|
+
| Settings |  |
|
|
122
|
+
| Start New Chat |  |
|
|
123
|
+
| Projects List |  |
|
|
124
|
+
| New Project Modal |  |
|
|
125
|
+
| CommandCompletion |  |
|
|
126
|
+
| FileCompletion |  |
|
|
127
|
+
| Diff Viewer |  |
|
|
128
|
+
|
|
129
|
+
Note: Additional UI screenshots are available in [/e2e/snapshots/](./e2e/snapshots/)
|
|
130
|
+
|
|
122
131
|
|
|
123
132
|
## Data Source
|
|
124
133
|
|
|
@@ -162,6 +171,7 @@ Claude Code Viewer can be configured using command-line options or environment v
|
|
|
162
171
|
| `--terminal-disabled` | `CCV_TERMINAL_DISABLED` | Disable the in-app terminal panel when set to `1`/`true` (env) or when the flag is present (CLI) | (unset) |
|
|
163
172
|
| `--terminal-shell <path>` | `CCV_TERMINAL_SHELL` | Shell executable for terminal sessions (e.g. `/bin/zsh`) | (auto-detect) |
|
|
164
173
|
| `--terminal-unrestricted` | `CCV_TERMINAL_UNRESTRICTED` | When set to `1` (env) or when the flag is present (CLI), disables the restricted shell flags for bash | (unset) |
|
|
174
|
+
| `--api-only` | `CCV_API_ONLY` | Run in API-only mode. Disables Web UI, terminal WebSocket, and non-essential endpoints. Only core API routes (`/api/version`, `/api/config`, `/api/projects`, `/api/claude-code`, `/api/search`, `/api/sse`) are exposed. Useful for integrating with external tools like n8n | (unset) |
|
|
165
175
|
|
|
166
176
|
**Breaking Change**: Environment variable names have been changed. If you're using environment variables, update them as follows:
|
|
167
177
|
- `CLAUDE_CODE_VIEWER_AUTH_PASSWORD` → `CCV_PASSWORD`
|