@fre4x/github 1.0.32 → 1.0.42

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.
Files changed (3) hide show
  1. package/README.md +12 -1
  2. package/dist/index.js +32445 -0
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -34,13 +34,15 @@ To use this with Claude Desktop, add the following to your `claude_desktop_confi
34
34
  "command": "npx",
35
35
  "args": ["-y", "@fre4x/github"],
36
36
  "env": {
37
- "GITHUB_PAT": "your_personal_access_token_here"
37
+ "GITHUB_TOKEN": "your_personal_access_token_here"
38
38
  }
39
39
  }
40
40
  }
41
41
  }
42
42
  ```
43
43
 
44
+ > **Note:** Both `GITHUB_TOKEN` and `GITHUB_PAT` are accepted. Token is optional — unauthenticated requests work but are rate-limited to 60 req/hour.
45
+
44
46
  Or run in mock mode:
45
47
 
46
48
  ```json
@@ -56,3 +58,12 @@ Or run in mock mode:
56
58
  }
57
59
  }
58
60
  ```
61
+
62
+ ## Development
63
+
64
+ ```bash
65
+ npm install
66
+ npm run dev # tsx, no build
67
+ npm run build # esbuild → dist/
68
+ npm test # vitest unit tests
69
+ ```