xtctx 0.11.5 → 0.11.6

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +5 -3
package/CHANGELOG.md CHANGED
@@ -5,6 +5,15 @@ All notable changes to this project are documented in this file.
5
5
  The format is based on Keep a Changelog, and this project follows Semantic Versioning.
6
6
  This file is maintained automatically by Release Please.
7
7
 
8
+ ## [0.11.6](https://github.com/fstubner/xtctx/compare/xtctx-v0.11.5...xtctx-v0.11.6) (2026-08-20)
9
+
10
+
11
+ ### Tests
12
+
13
+ * add a retrieval ranking eval and a cross-tool pickup smoke ([7709330](https://github.com/fstubner/xtctx/commit/77093303c6c0f610fd72ff32da87aaaca9e98b80))
14
+ * add retrieval ranking eval and cross-tool pickup smoke ([1a006bd](https://github.com/fstubner/xtctx/commit/1a006bdf02b9a284be523a3b41f1138d29bf2160))
15
+ * **smoke:** canonicalise the sandbox root before seeding ([73a4600](https://github.com/fstubner/xtctx/commit/73a4600ff53308c8fb7e907c7f26610ae100dfac))
16
+
8
17
  ## [0.11.5](https://github.com/fstubner/xtctx/compare/xtctx-v0.11.4...xtctx-v0.11.5) (2026-08-20)
9
18
 
10
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xtctx",
3
- "version": "0.11.5",
3
+ "version": "0.11.6",
4
4
  "description": "Local cross-tool handoff for AI coding agents.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -16,7 +16,7 @@
16
16
  "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
17
17
  "build": "npm run clean && tsc",
18
18
  "dev": "tsx watch src/cli/index.ts",
19
- "test": "vitest run --exclude=tests/smoke/** --exclude=tests/drift/**",
19
+ "test": "vitest run --exclude=tests/smoke/** --exclude=tests/drift/** --exclude=tests/eval/**",
20
20
  "test:security": "vitest run tests/security",
21
21
  "test:integration": "vitest run tests/integration",
22
22
  "test:drift": "vitest run tests/drift",
@@ -30,7 +30,9 @@
30
30
  "landing:preview": "npm --prefix landing run preview",
31
31
  "prepack": "npm run build",
32
32
  "smoke:cli": "node dist/src/cli/index.js --help",
33
- "verify:release": "npm run lint && npm test && npm run test:security && npm run security:checklist && npm audit --omit=dev && npm --prefix landing audit && npm run test:drift && npm run build && npm pack --dry-run && npm run demo:public && npm run landing:build && npm run smoke:cli"
33
+ "verify:release": "npm run lint && npm test && npm run test:security && npm run security:checklist && npm audit --omit=dev && npm --prefix landing audit && npm run test:drift && npm run build && npm pack --dry-run && npm run demo:public && npm run landing:build && npm run smoke:cli",
34
+ "test:eval": "vitest run tests/eval",
35
+ "test:smoke": "vitest run tests/smoke"
34
36
  },
35
37
  "dependencies": {
36
38
  "@huggingface/transformers": "^4.2.0",