@agent-inspect/index-sqlite 6.7.1 → 6.7.3

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/README.md +8 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,10 +2,13 @@
2
2
 
3
3
  Optional, disposable **local SQLite index** for faster queries over [AgentInspect](https://github.com/rajudandigam/agent-inspect) JSONL traces.
4
4
 
5
- - **Experimental** (added in v4.1).
6
- - **Local-only:** no network, no upload.
5
+
6
+ **Support level:** Beta see [SUPPORT-LEVELS.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SUPPORT-LEVELS.md).
7
+
8
+ - **Local-only:** no network, no default upload.
7
9
  - **JSONL stays the source of truth.** The index is a derived cache and is always safe to delete.
8
10
  - **Never mutates trace files.**
11
+ - Cross-platform native install is only claimed where tested — see adoption evidence / pack smoke.
9
12
 
10
13
  ## Install
11
14
 
@@ -51,6 +54,7 @@ await cleanIndex(resolveIndexDbPath(".agent-inspect/runs"));
51
54
  - No SQLite dependency in `agent-inspect` core or root — it lives only here.
52
55
  - No vector/semantic search, no daemon, no remote service.
53
56
 
54
- ## Version ownership
55
57
 
56
- Linked to the `agent-inspect` release line; published at the same version.
58
+ ## Version
59
+
60
+ Part of the fixed AgentInspect release line. See the npm badge / package manifest for the current version.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-inspect/index-sqlite",
3
- "version": "6.7.1",
3
+ "version": "6.7.3",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "Optional, disposable local SQLite index for faster queries over AgentInspect JSONL traces",
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "better-sqlite3": "^11.8.0",
41
- "agent-inspect": "6.7.1"
41
+ "agent-inspect": "6.7.3"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/better-sqlite3": "^7.6.11"