github-brain 1.10.0 → 1.12.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/README.md +11 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -26,7 +26,13 @@ GitHub Brain is [programmed in Markdown](https://github.blog/ai-and-ml/generativ
|
|
|
26
26
|
npm i -g github-brain
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
Rerun to update. `sudo` may be required on some systems.
|
|
30
|
+
|
|
31
|
+
Alternatively use `npx` to run without installing globally and needing `sudo`.
|
|
32
|
+
|
|
33
|
+
```sh
|
|
34
|
+
npx github-brain@latest
|
|
35
|
+
```
|
|
30
36
|
|
|
31
37
|
## Usage
|
|
32
38
|
|
|
@@ -36,7 +42,10 @@ github-brain
|
|
|
36
42
|
|
|
37
43
|
Launches the interactive TUI where you can:
|
|
38
44
|
|
|
39
|
-
1. **
|
|
45
|
+
1. **Setup** - Configure authentication and settings
|
|
46
|
+
- Login with GitHub (OAuth) - Recommended for most users
|
|
47
|
+
- Login with Personal Access Token - For fine-grained tokens or when OAuth is unavailable
|
|
48
|
+
- Open configuration file - Edit `.env` directly
|
|
40
49
|
2. **Pull** - Populate the local database with GitHub data
|
|
41
50
|
|
|
42
51
|
Re-run pull anytime to update the database with new GitHub data.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "github-brain",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"description": "MCP server for searching GitHub discussions, issues, and pull requests",
|
|
5
5
|
"bin": {
|
|
6
6
|
"github-brain": "bin/github-brain.js"
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
"author": "wham",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"github-brain-darwin-arm64": "1.
|
|
27
|
-
"github-brain-darwin-x64": "1.
|
|
28
|
-
"github-brain-linux-arm64": "1.
|
|
29
|
-
"github-brain-linux-x64": "1.
|
|
30
|
-
"github-brain-windows": "1.
|
|
26
|
+
"github-brain-darwin-arm64": "1.12.0",
|
|
27
|
+
"github-brain-darwin-x64": "1.12.0",
|
|
28
|
+
"github-brain-linux-arm64": "1.12.0",
|
|
29
|
+
"github-brain-linux-x64": "1.12.0",
|
|
30
|
+
"github-brain-windows": "1.12.0"
|
|
31
31
|
},
|
|
32
32
|
"files": [
|
|
33
33
|
"bin",
|