viewcc 1.0.2 → 1.1.1
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 +43 -12
- package/package.json +12 -3
package/README.md
CHANGED
|
@@ -1,18 +1,24 @@
|
|
|
1
|
-
# Claude Code
|
|
1
|
+
# View Claude Code
|
|
2
2
|
|
|
3
3
|
> Interactive visualization tool for Claude Code agents and skills
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/viewcc)
|
|
6
|
+
[](https://www.npmjs.com/package/viewcc)
|
|
5
7
|
[](https://opensource.org/licenses/MIT)
|
|
6
8
|
|
|
7
|
-
**Claude Code
|
|
9
|
+
📊 **View Claude Code** is a powerful tool that visualizes your Claude Code agents and skills in an interactive graph.
|
|
10
|
+
Perfect for understanding agent-skill relationships, navigating complex configurations, and executing agents/skills directly from the UI.
|
|
8
11
|
|
|
9
12
|
## ✨ Features
|
|
10
13
|
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
14
|
+
- 🎨 **Interactive Graph Visualization** - Beautiful hierarchical layout showing all agents and skills
|
|
15
|
+
- 🔍 **Smart Relationship Mapping** - Automatically detects and visualizes agent-skill connections
|
|
16
|
+
- ⚡ **One-Command Setup** - Just run `npx viewcc` - no installation needed
|
|
17
|
+
- 🎯 **Execute from UI** - Run agents and skills directly from the graph interface
|
|
18
|
+
- 🔄 **Real-time Monitoring** *(Coming Soon)* - Live connection status and activity tracking
|
|
19
|
+
- 🎭 **Visual Clarity** - Color-coded nodes and Bezier curves for easy understanding
|
|
20
|
+
- 🚀 **Zero Configuration** - Works out of the box with any Claude Code project
|
|
21
|
+
- 📱 **Responsive Design** - Smooth zoom, pan, and navigation controls
|
|
16
22
|
|
|
17
23
|
## 🚀 Quick Start
|
|
18
24
|
|
|
@@ -52,15 +58,40 @@ That's it! The visualizer will:
|
|
|
52
58
|
|
|
53
59
|
**Basic usage:**
|
|
54
60
|
```bash
|
|
61
|
+
# Visualize current project
|
|
62
|
+
npx viewcc
|
|
63
|
+
|
|
64
|
+
# Visualize specific project
|
|
65
|
+
cd /path/to/my-claude-project
|
|
55
66
|
npx viewcc
|
|
56
67
|
```
|
|
57
68
|
|
|
58
|
-
**
|
|
69
|
+
**CLI Options:**
|
|
70
|
+
|
|
71
|
+
| Option | Description | Default |
|
|
72
|
+
|--------|-------------|---------|
|
|
73
|
+
| `-p, --port <number>` | Server port | `3000` |
|
|
74
|
+
| `--no-open` | Don't open browser automatically | `false` |
|
|
75
|
+
| `--no-scan` | Skip scanning, use existing data | `false` |
|
|
76
|
+
| `-v, --verbose` | Show detailed logs | `false` |
|
|
77
|
+
|
|
78
|
+
**Examples:**
|
|
79
|
+
|
|
59
80
|
```bash
|
|
60
|
-
|
|
61
|
-
npx viewcc --
|
|
62
|
-
|
|
63
|
-
|
|
81
|
+
# Use custom port
|
|
82
|
+
npx viewcc --port 8080
|
|
83
|
+
|
|
84
|
+
# Don't open browser (useful for remote servers)
|
|
85
|
+
npx viewcc --no-open
|
|
86
|
+
|
|
87
|
+
# Skip rescanning (faster startup)
|
|
88
|
+
npx viewcc --no-scan
|
|
89
|
+
|
|
90
|
+
# Debug mode with verbose logging
|
|
91
|
+
npx viewcc --verbose
|
|
92
|
+
|
|
93
|
+
# Combine options
|
|
94
|
+
npx viewcc --port 5000 --no-open --verbose
|
|
64
95
|
```
|
|
65
96
|
|
|
66
97
|
### Local Development
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "viewcc",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Interactive visualization for Claude Code
|
|
3
|
+
"version": "1.1.1",
|
|
4
|
+
"description": "Interactive graph visualization for Claude Code agents and skills - explore relationships and hierarchy in a beautiful interactive layout",
|
|
5
5
|
"main": "./lib/cli.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"viewcc": "./bin/claude-viz.js"
|
|
@@ -23,13 +23,22 @@
|
|
|
23
23
|
"test": "npm run build && npm link"
|
|
24
24
|
},
|
|
25
25
|
"keywords": [
|
|
26
|
+
"claude",
|
|
26
27
|
"claude-code",
|
|
27
28
|
"visualization",
|
|
29
|
+
"visualizer",
|
|
28
30
|
"graph",
|
|
31
|
+
"interactive",
|
|
29
32
|
"agents",
|
|
30
33
|
"skills",
|
|
34
|
+
"ai",
|
|
35
|
+
"ai-tools",
|
|
36
|
+
"developer-tools",
|
|
31
37
|
"cli",
|
|
32
|
-
"
|
|
38
|
+
"npx",
|
|
39
|
+
"codebase",
|
|
40
|
+
"project-structure",
|
|
41
|
+
"dependency-graph"
|
|
33
42
|
],
|
|
34
43
|
"author": "",
|
|
35
44
|
"license": "MIT",
|