@ayushporwal/coja 0.0.1 → 0.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.
- package/README.md +38 -0
- package/package.json +19 -1
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# @ayushporwal/coja
|
|
2
|
+
|
|
3
|
+
Local code review for GitHub pull requests, with an AI sidepanel that helps the human reviewer.
|
|
4
|
+
|
|
5
|
+
Coja pulls a pull request into a local clone and reviews it in a fast, GitHub-style diff UI — file tree, line comments, pending review, approve or request changes. An AI sidepanel sits next to the diff, grounded in the same PR: it reads the changed files, answers questions, and helps you write the review. Everything runs on your machine.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm install -g @ayushporwal/coja
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
or, if you don't want to install
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
npx @ayushporwal/coja
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Then run:
|
|
20
|
+
|
|
21
|
+
```sh
|
|
22
|
+
coja
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Coja starts a local server on `http://localhost:4321` and opens your browser. First-run setup walks you through adding a GitHub token (stored in your OS keychain), a project to review, and — optionally — an AI provider key for the sidepanel.
|
|
26
|
+
|
|
27
|
+
## Requirements
|
|
28
|
+
|
|
29
|
+
- Node.js 22.13 or newer
|
|
30
|
+
|
|
31
|
+
## Links
|
|
32
|
+
|
|
33
|
+
- [Repository & full documentation](https://github.com/ayush-porwal/coja)
|
|
34
|
+
- [Issue tracker](https://github.com/ayush-porwal/coja/issues)
|
|
35
|
+
|
|
36
|
+
## License
|
|
37
|
+
|
|
38
|
+
[MIT](https://github.com/ayush-porwal/coja/blob/main/LICENSE)
|
package/package.json
CHANGED
|
@@ -1,7 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ayushporwal/coja",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Local code review for GitHub pull requests, with an AI sidepanel that helps the human reviewer",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Ayush Porwal <ayush.porwal@ef.com>",
|
|
7
|
+
"homepage": "https://github.com/ayush-porwal/coja#readme",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/ayush-porwal/coja.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": "https://github.com/ayush-porwal/coja/issues",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"github",
|
|
15
|
+
"pull-request",
|
|
16
|
+
"code-review",
|
|
17
|
+
"review",
|
|
18
|
+
"diff",
|
|
19
|
+
"ai",
|
|
20
|
+
"llm",
|
|
21
|
+
"local-first"
|
|
22
|
+
],
|
|
5
23
|
"type": "module",
|
|
6
24
|
"bin": {
|
|
7
25
|
"coja": "./bin/coja.js"
|