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.
Files changed (2) hide show
  1. package/README.md +43 -12
  2. package/package.json +12 -3
package/README.md CHANGED
@@ -1,18 +1,24 @@
1
- # Claude Code Visualizer
1
+ # View Claude Code
2
2
 
3
3
  > Interactive visualization tool for Claude Code agents and skills
4
4
 
5
+ [![npm version](https://img.shields.io/npm/v/viewcc.svg)](https://www.npmjs.com/package/viewcc)
6
+ [![npm downloads](https://img.shields.io/npm/dm/viewcc.svg)](https://www.npmjs.com/package/viewcc)
5
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
8
 
7
- **Claude Code Visualizer** helps you understand and navigate your Claude Code project structure through an interactive graph visualization.
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
- - 📊 **Interactive Graph Visualization** - See all your agents and skills in a hierarchical layout
12
- - 🔄 **Real-time Connection Status** - Monitor SSE server connectivity
13
- - 🎯 **Execute from UI** - Run agents and skills directly from the graph
14
- - 🎨 **Clear Visual Hierarchy** - Distinguish between agents, skills, and their relationships
15
- - **Fast Navigation** - Click nodes to see details, zoom and pan freely
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
- **Advanced options:**
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
- npx viewcc --no-open # Don't open browser
61
- npx viewcc --no-scan # Use existing data
62
- npx viewcc --port 8080 # Custom port
63
- npx viewcc --verbose # Show detailed logs
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.0.2",
4
- "description": "Interactive visualization for Claude Code projects - run with npx",
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
- "developer-tools"
38
+ "npx",
39
+ "codebase",
40
+ "project-structure",
41
+ "dependency-graph"
33
42
  ],
34
43
  "author": "",
35
44
  "license": "MIT",