github-brain-linux-x64 0.0.6
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 +25 -0
- package/github-brain +0 -0
- package/package.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# github-brain-linux-x64
|
|
2
|
+
|
|
3
|
+
This package contains the native Linux x64 binary for [github-brain](https://www.npmjs.com/package/github-brain).
|
|
4
|
+
|
|
5
|
+
**You should not install this package directly.** It is automatically installed as an optional dependency when you install the main `github-brain` package:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g github-brain
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## About github-brain
|
|
12
|
+
|
|
13
|
+
GitHub Brain is an MCP server for searching and summarizing GitHub discussions, issues, and pull requests.
|
|
14
|
+
|
|
15
|
+
- **Repository:** https://github.com/wham/github-brain
|
|
16
|
+
- **Main package:** https://www.npmjs.com/package/github-brain
|
|
17
|
+
- **License:** MIT
|
|
18
|
+
|
|
19
|
+
This package is part of a platform-specific binary distribution system that includes:
|
|
20
|
+
|
|
21
|
+
- `github-brain-darwin-arm64` (macOS Apple Silicon)
|
|
22
|
+
- `github-brain-darwin-x64` (macOS Intel)
|
|
23
|
+
- `github-brain-linux-arm64` (Linux ARM64)
|
|
24
|
+
- `github-brain-linux-x64` (Linux x64)
|
|
25
|
+
- `github-brain-win32-x64` (Windows x64)
|
package/github-brain
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "github-brain-linux-x64",
|
|
3
|
+
"version": "0.0.6",
|
|
4
|
+
"description": "github-brain binary for Linux x64",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/wham/github-brain.git"
|
|
8
|
+
},
|
|
9
|
+
"os": [
|
|
10
|
+
"linux"
|
|
11
|
+
],
|
|
12
|
+
"cpu": [
|
|
13
|
+
"x64"
|
|
14
|
+
],
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"files": [
|
|
17
|
+
"github-brain",
|
|
18
|
+
"README.md"
|
|
19
|
+
]
|
|
20
|
+
}
|