githits 0.4.5 → 0.4.7

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.
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "GitHits plugins for Claude Code - code examples from global open source",
9
- "version": "0.4.5"
9
+ "version": "0.4.7"
10
10
  },
11
11
  "plugins": [
12
12
  {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "githits",
3
- "version": "0.4.5",
3
+ "version": "0.4.7",
4
4
  "description": "Code examples from global open source for developers and AI assistants",
5
5
  "author": {
6
6
  "name": "GitHits"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "githits",
3
- "version": "0.4.5",
3
+ "version": "0.4.7",
4
4
  "description": "Code examples from global open source for developers and AI assistants",
5
5
  "author": {
6
6
  "name": "GitHits"
package/GEMINI.md CHANGED
@@ -71,7 +71,8 @@ Do not use `get_example` for:
71
71
 
72
72
  GitHits also exposes indexed dependency/package tools such as `search`,
73
73
  `search_status`, `docs_list`, `docs_read`, `pkg_info`, `pkg_vulns`,
74
- `pkg_deps`, `pkg_changelog`, `code_files`, `code_read`, and `code_grep`.
74
+ `pkg_deps`, `pkg_changelog`, `pkg_upgrade_review`, `code_files`,
75
+ `code_read`, and `code_grep`.
75
76
 
76
77
  ## License Filtering
77
78
 
package/README.md CHANGED
@@ -10,9 +10,9 @@ GitHits gives your AI coding assistant access to verified, canonical code exampl
10
10
  npx githits init
11
11
  ```
12
12
 
13
- `init` authenticates with your [GitHits](https://githits.com) account, then auto-detects your installed coding tools and configures each one with GitHits MCP.
13
+ `init` walks you through setup: choose the local MCP server or Agent Skills, detect your coding tools, sign in, and connect everything to GitHits.
14
14
 
15
- Supported tools: Claude Code, Cursor, Windsurf, VS Code / Copilot, Cline, Claude Desktop, Codex CLI, Gemini CLI, Google Antigravity, and OpenCode.
15
+ Supported tools: Claude Code, Cursor, Windsurf, VS Code / Copilot, Cline, Claude Desktop, Codex CLI, Pi, Gemini CLI, Google Antigravity, and OpenCode.
16
16
 
17
17
  If you are using a tool that is not listed above, use the manual MCP setup instructions near the end of this README.
18
18
 
@@ -110,6 +110,7 @@ GitHits also exposes indexed package/source tools:
110
110
  | `pkg_vulns` | CVE / OSV advisories for a package or specific version, with filter echo and compact/verbose modes |
111
111
  | `pkg_deps` | Direct dependencies, dependency groups, and optional transitive graph |
112
112
  | `pkg_changelog` | Release notes / changelog entries for a package or GitHub repo, with compact timeline and body-preview controls |
113
+ | `pkg_upgrade_review` | Evidence for dependency upgrades, including vulnerabilities, changelog entries, deprecation metadata, peer changes, and dependency changes |
113
114
  | `code_files` | Discover what files a dependency or repo contains |
114
115
  | `code_read` | Read a dependency file by path |
115
116
  | `code_grep` | Deterministic text grep across indexed dependency or repo files |
@@ -203,7 +204,7 @@ These indexed package/source commands are also available:
203
204
  ```
204
205
  githits search ... Unified indexed dependency/repository search
205
206
  githits search-status Follow up a prior indexed search
206
- githits pkg ... Package metadata: overview, advisories, deps, changelog
207
+ githits pkg ... Package metadata: overview, advisories, deps, changelog, upgrade reviews
207
208
  githits docs ... Package documentation: browse pages and read content
208
209
  githits code ... Dependency source inspection: search, files, read, grep
209
210
  ```
@@ -261,7 +262,7 @@ After the initial `npm link`, only `bun run build` is needed for subsequent chan
261
262
 
262
263
  ## Requirements
263
264
 
264
- - Node.js 24 or later
265
+ - Node.js 20.12+, 22.13+, or later
265
266
 
266
267
  ## License
267
268
 
package/commands/help.md CHANGED
@@ -35,7 +35,8 @@ This plugin connects to the GitHits MCP server and always exposes these core too
35
35
 
36
36
  Additional indexed dependency/package tools are available by default:
37
37
  `search`, `search_status`, `docs_list`, `docs_read`, `pkg_info`, `pkg_vulns`,
38
- `pkg_deps`, `pkg_changelog`, `code_files`, `code_read`, and `code_grep`.
38
+ `pkg_deps`, `pkg_changelog`, `pkg_upgrade_review`, `code_files`,
39
+ `code_read`, and `code_grep`.
39
40
 
40
41
  ## Authentication
41
42