vite-plugin-ai-annotator 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.
- package/README.md +15 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,15 +5,27 @@ AI-powered element annotator for Vite - Pick elements and get instant AI code mo
|
|
|
5
5
|
[](https://youtu.be/OuKnfCbmfTg)
|
|
6
6
|
> 📺 **[Watch the Tutorial Video](https://youtu.be/OuKnfCbmfTg)** - See the plugin in action!
|
|
7
7
|
|
|
8
|
-
##
|
|
8
|
+
## Easy Setup with Claude Code Plugin
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
Don't want to manually install? Install the **Claude Code plugin** and let AI set everything up for you:
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
claude plugin install claude-annotator-plugin@nguyenvanduocit
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Then just ask Claude: *"Set up ai-annotator for my project"* - it will handle the rest!
|
|
17
|
+
|
|
18
|
+
## Manual Setup
|
|
19
|
+
|
|
20
|
+
### Requirements
|
|
21
|
+
|
|
22
|
+
This plugin requires **Claude Code** CLI:
|
|
11
23
|
|
|
12
24
|
```bash
|
|
13
25
|
bun install -g @anthropic-ai/claude-code
|
|
14
26
|
```
|
|
15
27
|
|
|
16
|
-
> Claude Code is Anthropic's official CLI tool
|
|
28
|
+
> Claude Code is Anthropic's official CLI tool. [Learn more](https://docs.anthropic.com/en/docs/claude-code)
|
|
17
29
|
|
|
18
30
|
## What can this plugin help you?
|
|
19
31
|
|
package/package.json
CHANGED