vantaverse-ai-reviewer 0.1.0 → 0.1.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 +19 -56
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,9 +1,7 @@
1
- # 🤖 AI Code Reviewer
1
+ # 🤖 Vantaverse AI Reviewer
2
2
 
3
3
  > AI-powered code review CLI - analyze your codebase with Gemini AI
4
4
 
5
- [![npm version](https://badge.fury.io/js/%40anthropic%2Fai-reviewer.svg)](https://badge.fury.io/js/%40anthropic%2Fai-reviewer)
6
-
7
5
  ## Features
8
6
 
9
7
  - 🔍 **Intelligent Scanning** - Auto-detects framework (Next.js, React, Vue, Django, etc.)
@@ -17,14 +15,14 @@
17
15
 
18
16
  ```bash
19
17
  # Run directly with npx (no install needed)
20
- npx @anthropic/ai-reviewer
18
+ npx vantaverse-ai-reviewer
21
19
 
22
20
  # Or install globally
23
- npm install -g @anthropic/ai-reviewer
24
- ai-reviewer scan
21
+ npm install -g vantaverse-ai-reviewer
22
+ vantaverse-ai-reviewer scan
25
23
  ```
26
24
 
27
- On first run, you'll be prompted for your **Gemini API key**.
25
+ On first run, you'll be prompted for your **Gemini API key**.
28
26
  Get one free at: https://aistudio.google.com/apikey
29
27
 
30
28
  ## Usage
@@ -33,29 +31,29 @@ Get one free at: https://aistudio.google.com/apikey
33
31
 
34
32
  ```bash
35
33
  # Basic scan
36
- ai-reviewer scan
34
+ vantaverse-ai-reviewer scan
37
35
 
38
36
  # With options
39
- ai-reviewer scan --output custom-report.md --verbose
37
+ vantaverse-ai-reviewer scan --output custom-report.md --verbose
40
38
 
41
39
  # Include JSON output
42
- ai-reviewer scan --json
40
+ vantaverse-ai-reviewer scan --json
43
41
 
44
42
  # Select specific analysis types
45
- ai-reviewer scan --types security,codeQuality
43
+ vantaverse-ai-reviewer scan --types security,codeQuality
46
44
  ```
47
45
 
48
46
  ### Manage Configuration
49
47
 
50
48
  ```bash
51
49
  # Show current config
52
- ai-reviewer config
50
+ vantaverse-ai-reviewer config
53
51
 
54
52
  # Update API token
55
- ai-reviewer config --action token
53
+ vantaverse-ai-reviewer config --action token
56
54
 
57
55
  # Reset all settings
58
- ai-reviewer config --action reset
56
+ vantaverse-ai-reviewer config --action reset
59
57
  ```
60
58
 
61
59
  ## Analysis Types
@@ -71,25 +69,12 @@ ai-reviewer config --action reset
71
69
 
72
70
  ## Output
73
71
 
74
- The tool generates `AI_REVIEW_REPORT.md` in your project root:
75
-
76
- ```md
77
- # 🤖 AI Code Review Report
78
-
79
- ## 📊 Project Information
80
- | Property | Value |
81
- |----------|-------|
82
- | Framework | Next.js |
83
- | Files Scanned | 42 |
84
- ...
85
-
86
- ## 🔒 Security Analysis
87
- [AI-generated security findings]
88
-
89
- ## 🔧 Code Quality Review
90
- [AI-generated quality analysis]
91
- ...
92
- ```
72
+ Generates `AI_REVIEW_REPORT.md` in your project root with:
73
+ - Project information and framework detection
74
+ - Security analysis findings
75
+ - Code quality review
76
+ - Accessibility audit results
77
+ - Suggested improvements
93
78
 
94
79
  ## Security
95
80
 
@@ -100,29 +85,7 @@ The tool generates `AI_REVIEW_REPORT.md` in your project root:
100
85
 
101
86
  ## Supported Frameworks
102
87
 
103
- - Next.js / React
104
- - Vue.js / Nuxt
105
- - Angular
106
- - Svelte / SvelteKit
107
- - Vite projects
108
- - Django / Flask
109
- - Express / NestJS
110
- - Generic Node.js projects
111
-
112
- ## Development
113
-
114
- ```bash
115
- # Clone and install
116
- git clone https://github.com/your-username/ai-reviewer-package
117
- cd ai-reviewer-package
118
- npm install
119
-
120
- # Build
121
- npm run build
122
-
123
- # Run locally
124
- node bin/cli.js scan
125
- ```
88
+ Next.js, React, Vue.js, Angular, Svelte, Vite, Django, Flask, Express, NestJS, and generic Node.js projects.
126
89
 
127
90
  ## License
128
91
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "vantaverse-ai-reviewer",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "AI-powered code review CLI - analyze your codebase with Gemini AI",
5
5
  "type": "module",
6
6
  "bin": {
7
- "vantaverse-ai-reviewer": "./bin/cli.js"
7
+ "vantaverse-ai-reviewer": "bin/cli.js"
8
8
  },
9
9
  "main": "./dist/index.js",
10
10
  "types": "./dist/index.d.ts",