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.
@@ -5,14 +5,14 @@
5
5
  "email": "support@githits.com"
6
6
  },
7
7
  "metadata": {
8
- "description": "GitHits plugins for Claude Code - code examples from global open source",
9
- "version": "0.6.2"
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": "Code examples from global open source for developers and AI assistants",
15
+ "description": "The code context layer for AI coding agents",
16
16
  "author": {
17
17
  "name": "GitHits"
18
18
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "githits",
3
- "version": "0.6.2",
4
- "description": "Code examples from global open source for developers and AI assistants",
3
+ "version": "0.6.4",
4
+ "description": "The code context layer for AI coding agents",
5
5
  "author": {
6
6
  "name": "GitHits"
7
7
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "githits",
3
- "version": "0.6.2",
4
- "description": "Code examples from global open source for developers and AI assistants",
3
+ "version": "0.6.4",
4
+ "description": "The code context layer for AI coding agents",
5
5
  "author": {
6
6
  "name": "GitHits"
7
7
  },
package/GEMINI.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # GitHits
2
2
 
3
- Code examples from global open source for developers and AI assistants.
3
+ The code context layer for AI coding agents.
4
4
 
5
5
  ## Available Tools
6
6
 
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  <h1 align="center">GitHits CLI</h1>
6
6
 
7
7
  <p align="center">
8
- Version-aware open-source context for agentic software development.
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.12.0 || >=22.13.0`
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