github-brain-windows 0.0.8

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 ADDED
@@ -0,0 +1,25 @@
1
+ # github-brain-win32-x64
2
+
3
+ This package contains the native Windows 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)
Binary file
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "github-brain-windows",
3
+ "version": "0.0.8",
4
+ "description": "github-brain binary for Windows x64",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/wham/github-brain.git"
8
+ },
9
+ "os": [
10
+ "win32"
11
+ ],
12
+ "cpu": [
13
+ "x64"
14
+ ],
15
+ "license": "MIT",
16
+ "files": [
17
+ "github-brain.exe",
18
+ "README.md"
19
+ ]
20
+ }