@agent-inspect/index-sqlite 6.7.1 → 6.7.2
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/README.md +8 -4
- 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
|
-
|
|
6
|
-
|
|
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
|
-
|
|
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.
|
|
3
|
+
"version": "6.7.2",
|
|
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.
|
|
41
|
+
"agent-inspect": "6.7.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/better-sqlite3": "^7.6.11"
|