vite-plugin-ai-annotator 1.0.0 → 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 +22 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,6 +5,28 @@ 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
|
+
## Easy Setup with Claude Code Plugin
|
|
9
|
+
|
|
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:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
bun install -g @anthropic-ai/claude-code
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
> Claude Code is Anthropic's official CLI tool. [Learn more](https://docs.anthropic.com/en/docs/claude-code)
|
|
29
|
+
|
|
8
30
|
## What can this plugin help you?
|
|
9
31
|
|
|
10
32
|
After installing the plugin, you can:
|
|
@@ -15,18 +37,6 @@ After installing the plugin, you can:
|
|
|
15
37
|
|
|
16
38
|
> Save cognitive load, because it's precious.
|
|
17
39
|
|
|
18
|
-
## Prerequisites
|
|
19
|
-
|
|
20
|
-
This plugin requires **Claude Code** to provide AI assistance:
|
|
21
|
-
|
|
22
|
-
```bash
|
|
23
|
-
# Install Claude Code globally
|
|
24
|
-
bun install -g @anthropic-ai/claude-code
|
|
25
|
-
|
|
26
|
-
# Verify installation
|
|
27
|
-
claude --version
|
|
28
|
-
```
|
|
29
|
-
|
|
30
40
|
## Quick Start
|
|
31
41
|
|
|
32
42
|
This is an **ESM-only Vite plugin**. Installation is simple!
|
package/package.json
CHANGED