githits 0.6.2 → 0.6.4
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 +3 -3
- package/.claude-plugin/plugin.json +2 -2
- package/.plugin/plugin.json +2 -2
- package/GEMINI.md +1 -1
- package/README.md +13 -2
- package/dist/cli.js +55 -44
- package/dist/index.js +1 -1
- package/dist/shared/chunk-502sxvqf.js +2 -0
- package/dist/shared/{chunk-3vmhm7an.js → chunk-psmh6f7t.js} +1 -1
- package/dist/shared/chunk-rbsx8ed5.js +1529 -0
- package/gemini-extension.json +2 -2
- package/package.json +7 -3
- package/plugins/claude/.claude-plugin/plugin.json +2 -2
- package/plugins/claude/skills/githits-mcp/SKILL.md +2 -0
- package/plugins/claude/skills/search/SKILL.md +2 -0
- package/server.json +2 -2
- package/skills/githits-mcp/SKILL.md +2 -0
- package/dist/shared/chunk-572afq8h.js +0 -2
- package/dist/shared/chunk-k9n5z10a.js +0 -1529
package/gemini-extension.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "githits",
|
|
3
|
-
"version": "0.6.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.6.4",
|
|
4
|
+
"description": "The code context layer for AI coding agents",
|
|
5
5
|
"mcpServers": {
|
|
6
6
|
"githits": {
|
|
7
7
|
"command": "npx",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "githits",
|
|
3
|
-
"description": "
|
|
4
|
-
"version": "0.6.
|
|
3
|
+
"description": "The code context layer for AI coding agents",
|
|
4
|
+
"version": "0.6.4",
|
|
5
5
|
"mcpName": "com.githits/githits",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"workspaces": [
|
|
@@ -39,7 +39,10 @@
|
|
|
39
39
|
"dev": "bun run ./src/cli.ts",
|
|
40
40
|
"inspector": "npx @modelcontextprotocol/inspector bun run dev mcp",
|
|
41
41
|
"smoke:cli": "bun run scripts/cli-smoke.ts",
|
|
42
|
+
"smoke:cli:built": "bun run scripts/cli-smoke.ts --mode unauthenticated --cli-entry dist/cli.js",
|
|
42
43
|
"smoke:mcp": "bun run scripts/mcp-smoke.ts",
|
|
44
|
+
"smoke:mcp:built": "bun run scripts/mcp-smoke.ts --mode registration --cli-entry dist/cli.js",
|
|
45
|
+
"smoke:proxy-node": "bun run scripts/run-proxy-node-smoke.ts",
|
|
43
46
|
"validate:packages": "bun run scripts/validate-public-packages.ts",
|
|
44
47
|
"validate:packages:mcp-publish": "bun run scripts/validate-public-packages.ts --mcp-publish-dry-run",
|
|
45
48
|
"sync:claude-skills": "bun run scripts/sync-claude-skill-assets.ts",
|
|
@@ -79,7 +82,7 @@
|
|
|
79
82
|
"url": "https://github.com/githits-com/githits-cli/issues"
|
|
80
83
|
},
|
|
81
84
|
"engines": {
|
|
82
|
-
"node": "^20.
|
|
85
|
+
"node": "^20.18.1 || >=22.13.0"
|
|
83
86
|
},
|
|
84
87
|
"publishConfig": {
|
|
85
88
|
"access": "public"
|
|
@@ -96,6 +99,7 @@
|
|
|
96
99
|
"open": "^11.0.0",
|
|
97
100
|
"semver": "7.8.5",
|
|
98
101
|
"smol-toml": "^1.6.1",
|
|
102
|
+
"undici": "7.28.0",
|
|
99
103
|
"yaml": "^2.9.0",
|
|
100
104
|
"zod": "^4.4.3"
|
|
101
105
|
},
|
|
@@ -22,6 +22,8 @@ Use the most targeted GitHits MCP tool or combination of tools for the job:
|
|
|
22
22
|
- Use `pkg_info`, `pkg_vulns`, `pkg_deps`, `pkg_changelog`, and `pkg_upgrade_review` for package metadata, versions, adoption, vulnerabilities, dependency graphs, changelogs, and upgrade-review evidence.
|
|
23
23
|
- Use `get_example` as the broad OSS-first discovery, planning, and research path for vague issues, unfamiliar errors, "how do others do this" questions, multi-library/API combinations, global implementation-pattern scans, and rare needle-in-the-haystack examples that may appear in only one or a few repositories. When the dependency or repository is already known, default to `search`, `docs_*`, and `code_*` first; add `get_example` when you need broader cross-project evidence or a hard-to-find real-world example.
|
|
24
24
|
|
|
25
|
+
Prefer the default compact text output. Request JSON only when exact structured fields are necessary.
|
|
26
|
+
|
|
25
27
|
When answering, ground claims in fetched GitHits evidence and cite the relevant package, repository, file, docs page, or version facts when available. If GitHits does not have enough evidence, say what is missing and then use the next best source.
|
|
26
28
|
|
|
27
29
|
## External Content Posture
|
|
@@ -36,6 +36,8 @@ Guidelines:
|
|
|
36
36
|
- When the task is about indexed dependency or repository internals, prefer
|
|
37
37
|
unified `search` instead of
|
|
38
38
|
`get_example`.
|
|
39
|
+
- Prefer the default compact text output. Request JSON only when exact
|
|
40
|
+
structured fields are necessary.
|
|
39
41
|
- After using results, send `feedback` with helpful/unhelpful outcome.
|
|
40
42
|
|
|
41
43
|
Tool argument details and rich query guidance are provided directly in the MCP
|
package/server.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"source": "github",
|
|
17
17
|
"id": "1165453165"
|
|
18
18
|
},
|
|
19
|
-
"version": "0.6.
|
|
19
|
+
"version": "0.6.4",
|
|
20
20
|
"remotes": [
|
|
21
21
|
{
|
|
22
22
|
"type": "streamable-http",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"registryType": "npm",
|
|
29
29
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
30
30
|
"identifier": "githits",
|
|
31
|
-
"version": "0.6.
|
|
31
|
+
"version": "0.6.4",
|
|
32
32
|
"runtimeHint": "npx",
|
|
33
33
|
"transport": {
|
|
34
34
|
"type": "stdio"
|
|
@@ -22,6 +22,8 @@ Use the most targeted GitHits MCP tool or combination of tools for the job:
|
|
|
22
22
|
- Use `pkg_info`, `pkg_vulns`, `pkg_deps`, `pkg_changelog`, and `pkg_upgrade_review` for package metadata, versions, adoption, vulnerabilities, dependency graphs, changelogs, and upgrade-review evidence.
|
|
23
23
|
- Use `get_example` as the broad OSS-first discovery, planning, and research path for vague issues, unfamiliar errors, "how do others do this" questions, multi-library/API combinations, global implementation-pattern scans, and rare needle-in-the-haystack examples that may appear in only one or a few repositories. When the dependency or repository is already known, default to `search`, `docs_*`, and `code_*` first; add `get_example` when you need broader cross-project evidence or a hard-to-find real-world example.
|
|
24
24
|
|
|
25
|
+
Prefer the default compact text output. Request JSON only when exact structured fields are necessary.
|
|
26
|
+
|
|
25
27
|
When answering, ground claims in fetched GitHits evidence and cite the relevant package, repository, file, docs page, or version facts when available. If GitHits does not have enough evidence, say what is missing and then use the next best source.
|
|
26
28
|
|
|
27
29
|
## External Content Posture
|