vite-plugin-ai-annotator 1.0.0 → 1.0.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.
- package/README.md +10 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,6 +5,16 @@ 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
|
+
## Requirements
|
|
9
|
+
|
|
10
|
+
This plugin requires **Claude Code** CLI to be installed:
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
bun install -g @anthropic-ai/claude-code
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
> Claude Code is Anthropic's official CLI tool that provides AI assistance. [Learn more](https://docs.anthropic.com/en/docs/claude-code)
|
|
17
|
+
|
|
8
18
|
## What can this plugin help you?
|
|
9
19
|
|
|
10
20
|
After installing the plugin, you can:
|
|
@@ -15,18 +25,6 @@ After installing the plugin, you can:
|
|
|
15
25
|
|
|
16
26
|
> Save cognitive load, because it's precious.
|
|
17
27
|
|
|
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
28
|
## Quick Start
|
|
31
29
|
|
|
32
30
|
This is an **ESM-only Vite plugin**. Installation is simple!
|
package/package.json
CHANGED