@kimuson/claude-code-viewer 0.4.7 → 0.4.8
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 +4 -1
- package/dist/main.js +448 -107
- package/dist/main.js.map +4 -4
- package/dist/static/assets/ProtectedRoute-DZMKEulP.js +56 -0
- package/dist/static/assets/eye-DJLA18Vn.js +6 -0
- package/dist/static/assets/index-BGKS2Bbu.js +199 -0
- package/dist/static/assets/index-CF6ATi6V.css +1 -0
- package/dist/static/assets/{index-ChVcZMuL.js → index-Ci8QWeAx.js} +2 -2
- package/dist/static/assets/index-vwZSVRGy.js +1 -0
- package/dist/static/assets/label-Mpn74N-5.js +1 -0
- package/dist/static/assets/login-OzgY3CHO.js +11 -0
- package/dist/static/assets/messages-B4nydqXe.js +1 -0
- package/dist/static/assets/messages-DQZZWrCH.js +1 -0
- package/dist/static/assets/messages-DRQIx4IO.js +1 -0
- package/dist/static/assets/{session-aPiwqPra.js → session-CZ9W8T6v.js} +1 -1
- package/dist/static/assets/{session-B4u9RwAC.js → session-CgidTvX7.js} +58 -68
- package/dist/static/index.html +2 -2
- package/package.json +18 -9
- package/dist/static/assets/index-C-6yHKgK.css +0 -1
- package/dist/static/assets/index-CEfL1559.js +0 -135
- package/dist/static/assets/index-CsvC5pl6.js +0 -1
- package/dist/static/assets/label-D9NP5l7d.js +0 -105
- package/dist/static/assets/messages-BLhYHIq_.js +0 -1
- package/dist/static/assets/messages-BQx1DYxh.js +0 -1
- package/dist/static/assets/messages-DZXmj7Ql.js +0 -1
package/README.md
CHANGED
|
@@ -19,6 +19,7 @@ Claude Code Viewer is a web-based Claude Code client focused on **comprehensive
|
|
|
19
19
|
| Feature | Description |
|
|
20
20
|
| --- | --- |
|
|
21
21
|
| View Chat Logs | View Claude Code session logs in real-time through the web UI. Supports historical logs as it uses standard Claude Code logs (~/.claude/projects/...) as the data source |
|
|
22
|
+
| Search Conversations | Full-text search across conversations with `⌘K` (macOS) or `Ctrl+K` (Linux). Search within a specific project or across all projects. Features fuzzy matching, prefix search, and keyboard navigation (↑↓ to navigate, Enter to select) |
|
|
22
23
|
| Start Conversations | Start Claude Code sessions directly from Claude Code Viewer. Enjoy core functionality like file/command completion, pause/resume, and tool approval through a superior web experience |
|
|
23
24
|
| Resume Sessions | Resume conversations directly from existing session logs |
|
|
24
25
|
| Continue Sessions | Claude Code Viewer provides advanced session process control. Sessions started through Claude Code Viewer remain alive (unless aborted), allowing you to continue conversations without resuming (no session-id reassignment) |
|
|
@@ -75,6 +76,7 @@ Run the container directly:
|
|
|
75
76
|
|
|
76
77
|
```bash
|
|
77
78
|
docker run --rm -p 3400:3400 \
|
|
79
|
+
-e CLAUDE_CODE_VIEWER_AUTH_PASSWORD=your-password \
|
|
78
80
|
-e ANTHROPIC_BASE_URL=... \
|
|
79
81
|
-e ANTHROPIC_API_KEY=... \
|
|
80
82
|
-e ANTHROPIC_AUTH_TOKEN=... \
|
|
@@ -128,6 +130,7 @@ Claude Code Viewer reads several reserved environment variables. All values are
|
|
|
128
130
|
| Key | Description |
|
|
129
131
|
| --- | --- |
|
|
130
132
|
| CLAUDE_CODE_VIEWER_CC_EXECUTABLE_PATH | Path to Claude Code installation. If not set, uses system PATH installation, or falls back to bundled version from dependencies |
|
|
133
|
+
| CLAUDE_CODE_VIEWER_AUTH_PASSWORD | Password for authentication. When set, enables password-based authentication to protect access to Claude Code Viewer. All `/api` routes (except login, logout, check, config, and version endpoints) require authentication. If not set, authentication is disabled and the application is publicly accessible |
|
|
131
134
|
| PORT | Port number for Claude Code Viewer to run on |
|
|
132
135
|
|
|
133
136
|
### User Settings
|
|
@@ -195,7 +198,7 @@ Claude Code Viewer is designed with remote hosting in mind. To support remote de
|
|
|
195
198
|
- **Real-time Notifications**: Audio notifications for task completion to maintain workflow awareness
|
|
196
199
|
- **System Monitoring**: Monitor Claude Code compatibility and feature availability across environments
|
|
197
200
|
|
|
198
|
-
The application features a separated client-server architecture that enables remote hosting. However,
|
|
201
|
+
The application features a separated client-server architecture that enables remote hosting. **Basic password authentication is available** via the `CLAUDE_CODE_VIEWER_AUTH_PASSWORD` environment variable. When set, users must authenticate with the configured password before accessing the application. However, this is a simple single-password authentication mechanism without advanced features like multi-user support, role-based access control, or OAuth integration. If you require more sophisticated authentication, carefully evaluate your security requirements and implement appropriate access controls at the infrastructure level (e.g., reverse proxy with OAuth, VPN, IP whitelisting).
|
|
199
202
|
|
|
200
203
|
## License
|
|
201
204
|
|