claude-terminal-prism 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +14 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # claude-terminal-prism
2
2
 
3
+ ```
4
+ ██████╗ ██████╗ ██╗███████╗███╗ ███╗
5
+ ██╔══██╗██╔══██╗██║██╔════╝████╗ ████║
6
+ ██████╔╝██████╔╝██║███████╗██╔████╔██║
7
+ ██╔═══╝ ██╔══██╗██║╚════██║██║╚██╔╝██║
8
+ ██║ ██║ ██║██║███████║██║ ╚═╝ ██║
9
+ ╚═╝ ╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝
10
+ ```
11
+
3
12
  **PRISM** — Agentic visibility layer for Claude. Intercept, record, and debug multi-agent sessions in a real-time dashboard.
4
13
 
5
14
  ---
@@ -12,18 +21,16 @@ npm install -g claude-terminal-prism
12
21
 
13
22
  ---
14
23
 
15
- ## Getting started — two commands
24
+ ## Setup
16
25
 
17
26
  ```bash
18
27
  prism setup
19
28
  source ~/.zshrc
20
29
  ```
21
30
 
22
- `prism setup` starts the collector + dashboard daemon, adds a shell alias so every `claude` session is auto-captured, and opens the browser at `http://localhost:4700`.
23
-
24
- ---
31
+ `prism setup` starts the collector + dashboard daemon, adds a shell alias so every `claude` session is auto-captured, and opens the browser at **http://localhost:4700**.
25
32
 
26
- ## Global setup (all Claude sessions on this machine)
33
+ For more control, run the steps individually:
27
34
 
28
35
  ```bash
29
36
  prism start # Start collector + dashboard → http://localhost:4700
@@ -45,10 +52,8 @@ prism uninit # Remove shell integration and hooks
45
52
  prism start [--port N] [--no-open] # Start collector + dashboard daemon
46
53
  prism stop # Stop the daemon
47
54
  prism status # Show running state
48
- prism init # Global: shell integration + hooks
49
- prism init --local [--port N] # Local: project hooks only (default port: 4701)
50
- prism uninit # Remove global shell integration
51
- prism uninit --local # Remove local project hooks
55
+ prism init # Add shell integration + Claude Code hooks
56
+ prism uninit # Remove shell integration and hooks
52
57
  prism tui # Inline terminal dashboard
53
58
  prism exec <cmd> # Run a command with full capture
54
59
  prism shell # Spawn a captured interactive shell
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-terminal-prism",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "PRISM — Agentic visibility layer for Claude. Intercepts, records, and replays multi-agent sessions.",
5
5
  "author": "ashrit-v",
6
6
  "homepage": "https://www.npmjs.com/package/claude-terminal-prism",