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.
Files changed (2) hide show
  1. package/README.md +15 -3
  2. 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
  [![Watch the Tutorial](https://img.youtube.com/vi/OuKnfCbmfTg/maxresdefault.jpg)](https://youtu.be/OuKnfCbmfTg)
6
6
  > 📺 **[Watch the Tutorial Video](https://youtu.be/OuKnfCbmfTg)** - See the plugin in action!
7
7
 
8
- ## Requirements
8
+ ## Easy Setup with Claude Code Plugin
9
9
 
10
- This plugin requires **Claude Code** CLI to be installed:
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 that provides AI assistance. [Learn more](https://docs.anthropic.com/en/docs/claude-code)
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plugin-ai-annotator",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "AI-powered element annotator for Vite - Pick elements and get instant AI code modifications",
5
5
  "type": "module",
6
6
  "main": "dist/vite-plugin.js",