githits 0.6.3 → 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.
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "The code context layer for AI coding agents",
9
- "version": "0.6.3"
9
+ "version": "0.6.4"
10
10
  },
11
11
  "plugins": [
12
12
  {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "githits",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "description": "The code context layer for AI coding agents",
5
5
  "author": {
6
6
  "name": "GitHits"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "githits",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "description": "The code context layer for AI coding agents",
5
5
  "author": {
6
6
  "name": "GitHits"
package/README.md CHANGED
@@ -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