skill-viewer 0.1.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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Tyler Ho
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,54 @@
1
+ # skill-viewer
2
+
3
+ Browse and inspect [Claude Code](https://docs.anthropic.com/en/docs/claude-code) skills installed in `~/.claude/`.
4
+
5
+ 3-panel UI with source browsing, skill search, dependency graph, health badges, file tree exploration, and live reload.
6
+
7
+ ## Quick start
8
+
9
+ ```bash
10
+ npx skill-viewer
11
+ ```
12
+
13
+ Then open [http://localhost:8080](http://localhost:8080).
14
+
15
+ ## Install globally
16
+
17
+ ```bash
18
+ npm install -g skill-viewer
19
+ skill-viewer
20
+ ```
21
+
22
+ ## What it scans
23
+
24
+ Defaults to Claude Code. Skills, commands, agents, and plugins are discovered from:
25
+
26
+ | Source | Path |
27
+ |--------|------|
28
+ | Plugins | `~/.claude/plugins/cache/claude-plugins-official/` |
29
+ | Custom skills | `~/.claude/skills/` |
30
+ | Commands | `~/.claude/commands/` |
31
+ | Project skills | `<project>/.claude/commands/` and `<project>/.claude/skills/` |
32
+
33
+ Project directories can be added dynamically via the UI. The viewer will scan for commands and skills inside each project's `.claude/` directory.
34
+
35
+ ## Multi-agent support
36
+
37
+ While primarily built for Claude Code, the viewer can also browse skills for other AI coding agents. Switch between agents using the dropdown in the header.
38
+
39
+ | Agent | Global directory | Project directory |
40
+ |-------|-----------------|-------------------|
41
+ | Claude Code | `~/.claude/` | `.claude/` |
42
+ | Gemini CLI | `~/.gemini/` | `.gemini/` |
43
+ | OpenCode | `~/.config/opencode/` | `.opencode/` |
44
+ | Codex CLI | `~/.codex/` | `.codex/` |
45
+ | Cursor | `~/.cursor/` | `.cursor/` |
46
+ | Cline | `~/.cline/` | `.clinerules/` |
47
+
48
+ Each agent has its own set of supported file extensions and subdirectories. Switching agents re-scans the relevant directories and updates the UI.
49
+
50
+ ## Options
51
+
52
+ | Env var | Default | Description |
53
+ |---------|---------|-------------|
54
+ | `PORT` | `8080` | Server port |