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
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
"email": "support@githits.com"
|
|
6
6
|
},
|
|
7
7
|
"metadata": {
|
|
8
|
-
"description": "
|
|
9
|
-
"version": "0.6.
|
|
8
|
+
"description": "The code context layer for AI coding agents",
|
|
9
|
+
"version": "0.6.4"
|
|
10
10
|
},
|
|
11
11
|
"plugins": [
|
|
12
12
|
{
|
|
13
13
|
"name": "githits",
|
|
14
14
|
"source": "./plugins/claude",
|
|
15
|
-
"description": "
|
|
15
|
+
"description": "The code context layer for AI coding agents",
|
|
16
16
|
"author": {
|
|
17
17
|
"name": "GitHits"
|
|
18
18
|
},
|
package/.plugin/plugin.json
CHANGED
package/GEMINI.md
CHANGED
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<h1 align="center">GitHits CLI</h1>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
|
|
8
|
+
The code context layer for AI coding agents.
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
@@ -313,7 +313,7 @@ This repository contains the GitHits CLI and reusable MCP package:
|
|
|
313
313
|
|
|
314
314
|
Requirements:
|
|
315
315
|
|
|
316
|
-
- Node.js `^20.
|
|
316
|
+
- Node.js `^20.18.1 || >=22.13.0`
|
|
317
317
|
- Bun
|
|
318
318
|
|
|
319
319
|
Common commands:
|
|
@@ -334,6 +334,17 @@ bun run smoke:mcp
|
|
|
334
334
|
bun run smoke:cli
|
|
335
335
|
```
|
|
336
336
|
|
|
337
|
+
CI also checks the built product without credentials or live backend calls. Run
|
|
338
|
+
the same checks locally after `bun run build`:
|
|
339
|
+
|
|
340
|
+
```sh
|
|
341
|
+
bun run smoke:cli:built
|
|
342
|
+
bun run smoke:mcp:built
|
|
343
|
+
```
|
|
344
|
+
|
|
345
|
+
The harness remains on Bun, while product subprocesses execute `dist/cli.js`
|
|
346
|
+
with `node` from `PATH`. CI provisions that runtime from `.node-version`.
|
|
347
|
+
|
|
337
348
|
When changing MCP instructions, tool descriptions, or agent-facing behavior,
|
|
338
349
|
use the targeted agent evals described in `eval/agentic/README.md`:
|
|
339
350
|
|