@kimuson/claude-code-viewer 0.4.7 → 0.4.9

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 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, **authentication and authorization features are not included** (and are not on the roadmap). If you plan to host Claude Code Viewer remotely, carefully evaluate your security requirements and implement appropriate access controls at the infrastructure level.
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