pika-review 2.0.0 → 2.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 +3 -1
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
# Pika Review 🦊
|
|
2
2
|
### Enterprise-grade AI Architectural Sentinel
|
|
3
3
|
|
|
4
|
-
Pika Review is a high-performance CLI tool designed to perform surgical code reviews using
|
|
4
|
+
Pika Review is a high-performance CLI tool designed to perform surgical code reviews using AI. It focuses on deep architectural debt, security vulnerabilities, and UI/UX anomalies that traditional linters miss.
|
|
5
|
+
|
|
6
|
+
**GitHub**: [HackX-IN/pika-review](https://github.com/HackX-IN/pika-review)
|
|
5
7
|
|
|
6
8
|
---
|
|
7
9
|
|
package/package.json
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pika-review",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Enterprise-grade AI Architectural Code Reviewer powered by Cloudflare Workers AI.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/HackX-IN/pika-review.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/HackX-IN/pika-review/issues"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/HackX-IN/pika-review#readme",
|
|
7
15
|
"bin": {
|
|
8
16
|
"pika-review": "dist/index.js"
|
|
9
17
|
},
|