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.
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.plugin/plugin.json +1 -1
- package/GEMINI.md +2 -1
- package/README.md +5 -4
- package/commands/help.md +2 -1
- package/dist/cli.js +1427 -360
- package/dist/index.js +1 -1
- package/dist/shared/{chunk-zzmbjttb.js → chunk-70bn2pmx.js} +2 -2
- package/dist/shared/{chunk-vfyz65v1.js → chunk-7b4f7fd5.js} +1 -1
- package/dist/shared/{chunk-ygqss6gp.js → chunk-tm11qwgr.js} +416 -78
- package/gemini-extension.json +1 -1
- package/package.json +11 -11
- package/plugins/claude/.claude-plugin/plugin.json +1 -1
- package/plugins/claude/commands/help.md +2 -1
- package/skills/githits-code/SKILL.md +1 -1
- package/skills/githits-code/references/code-and-docs.md +2 -2
package/.plugin/plugin.json
CHANGED
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`, `
|
|
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`
|
|
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
|
|
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`, `
|
|
38
|
+
`pkg_deps`, `pkg_changelog`, `pkg_upgrade_review`, `code_files`,
|
|
39
|
+
`code_read`, and `code_grep`.
|
|
39
40
|
|
|
40
41
|
## Authentication
|
|
41
42
|
|