Skip to content

Commit 1cdd3e4

Browse files
committed
🚚 Move marketplace.json to repo root for proper GitHub install
- Moved .claude-plugin/marketplace.json from vizzly-plugin/ to repo root - Updated source path to ./vizzly-plugin/plugins/vizzly - Updated README with correct install instructions Now `/plugin marketplace add vizzly-testing/cli` works correctly.
1 parent 1dd867f commit 1cdd3e4

2 files changed

Lines changed: 34 additions & 24 deletions

File tree

vizzly-plugin/.claude-plugin/marketplace.json renamed to .claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"name": "vizzly",
1313
"version": "0.2.0",
1414
"description": "Visual regression testing with Vizzly - debug failures, check test status, and learn visual testing best practices",
15-
"source": "./plugins/vizzly",
15+
"source": "./vizzly-plugin/plugins/vizzly",
1616
"category": "testing"
1717
}
1818
]

vizzly-plugin/README.md

Lines changed: 33 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,56 @@
1-
# Vizzly Plugin Marketplace
1+
# Vizzly Plugin for Claude Code
22

3-
This directory contains the Vizzly plugin marketplace for Claude Code.
3+
Visual regression testing with Vizzly - debug failures, check test status, and learn visual testing best practices.
44

5-
## For Users
5+
## Installation
66

7-
See the [plugin README](./plugins/vizzly/README.md) for installation instructions.
8-
9-
**Quick install:**
10-
11-
```
7+
```bash
8+
# Add the marketplace
129
/plugin marketplace add vizzly-testing/cli
10+
11+
# Install the plugin
1312
/plugin install vizzly@vizzly-marketplace
1413
```
1514

15+
Or via CLI:
16+
17+
```bash
18+
claude plugin marketplace add vizzly-testing/cli
19+
claude plugin install vizzly@vizzly-marketplace
20+
```
21+
1622
Then restart Claude Code.
1723

24+
## What's Included
25+
26+
### Skills (auto-activated)
27+
28+
- **vizzly-knowledge** - Core knowledge about Vizzly file structure, CLI commands, and how it works
29+
- **debug-visual-regression** - Analyze visual test failures and screenshot differences
30+
- **check-visual-tests** - Check test status and get summaries
31+
- **visual-testing-philosophy** - Best practices for visual testing
32+
33+
### Commands (manual)
34+
35+
- `/vizzly:setup` - Initialize Vizzly in a project
36+
- `/vizzly:suggest-screenshots` - Analyze tests and suggest where to add visual screenshots
37+
1838
## Structure
1939

2040
```
2141
vizzly-plugin/
22-
├── .claude-plugin/
23-
│ └── marketplace.json # Marketplace definition
2442
└── plugins/
25-
└── vizzly/ # The actual plugin
43+
└── vizzly/
2644
├── .claude-plugin/
2745
│ └── plugin.json
28-
├── skills/ # Auto-activated skills
29-
├── commands/ # Manual slash commands
30-
└── README.md # User documentation
46+
├── skills/
47+
└── commands/
3148
```
3249

33-
## For Plugin Developers
50+
## Development
3451

35-
To test the plugin locally:
52+
Test the plugin locally:
3653

3754
```bash
3855
claude --plugin-dir ./vizzly-plugin/plugins/vizzly
3956
```
40-
41-
To test via marketplace:
42-
43-
```bash
44-
/plugin marketplace add ./vizzly-plugin
45-
/plugin install vizzly@vizzly-marketplace
46-
```

0 commit comments

Comments
 (0)