git-code-review-agent 0.4.0 → 0.5.0
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/.cursor-plugin/plugin.json +1 -1
- package/README.md +0 -48
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "codereviewagent",
|
|
3
3
|
"displayName": "Code Review Agent (Architect / Dev Lead)",
|
|
4
4
|
"description": "Branch-to-branch git diff code review with Technical Architect and Engineering Lead analysis: PR-style merge-base diffs, architecture, security, delivery risk, and prioritized findings",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.5.0",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"code-review",
|
package/README.md
CHANGED
|
@@ -43,51 +43,3 @@ Commands: `install` | `update` | `uninstall` | `status` | `help`.
|
|
|
43
43
|
## License
|
|
44
44
|
MIT
|
|
45
45
|
|
|
46
|
-
|
|
47
|
-
# Steps to update in npm package
|
|
48
|
-
|
|
49
|
-
Publish Package
|
|
50
|
-
First-time publish
|
|
51
|
-
```bash
|
|
52
|
-
npm login
|
|
53
|
-
npm publish --access public
|
|
54
|
-
```
|
|
55
|
-
|
|
56
|
-
Publish scoped package (recommended)
|
|
57
|
-
|
|
58
|
-
```bash
|
|
59
|
-
npm publish --access public
|
|
60
|
-
```
|
|
61
|
-
Update Version (Very Important)
|
|
62
|
-
|
|
63
|
-
npm requires version change before publishing again.
|
|
64
|
-
|
|
65
|
-
Patch (bug fixes)
|
|
66
|
-
```bash
|
|
67
|
-
npm version patch
|
|
68
|
-
```
|
|
69
|
-
Example: 1.0.0 → 1.0.1
|
|
70
|
-
|
|
71
|
-
Minor (new features, backward compatible)
|
|
72
|
-
```bash
|
|
73
|
-
npm version minor
|
|
74
|
-
```
|
|
75
|
-
👉 Example: 1.0.0 → 1.1.0
|
|
76
|
-
|
|
77
|
-
Major (breaking changes)
|
|
78
|
-
```bash
|
|
79
|
-
npm version major
|
|
80
|
-
```
|
|
81
|
-
👉 Example: 1.0.0 → 2.0.0
|
|
82
|
-
|
|
83
|
-
Custom version
|
|
84
|
-
```bash
|
|
85
|
-
npm version 1.2.5
|
|
86
|
-
```
|
|
87
|
-
Publish Updated Version
|
|
88
|
-
npm publish
|
|
89
|
-
Full Flow (Most Common)
|
|
90
|
-
```bash
|
|
91
|
-
npm version patch
|
|
92
|
-
npm publish
|
|
93
|
-
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-code-review-agent",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Cursor IDE plugin: Technical Architect and Dev Lead skills for branch-to-branch git diff code review, merge-base PR-style analysis, and delivery risk assessment",
|
|
5
5
|
"author": "",
|
|
6
6
|
"license": "MIT",
|