toolnet-memory 0.3.17 → 0.3.18
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 -16
- package/bundle/public/index.html +1087 -2353
- package/package.json +1 -1
- package/release-manifest.json +6 -39
package/README.md
CHANGED
|
@@ -656,7 +656,6 @@ keeps it in sessionStorage for that browser session.
|
|
|
656
656
|
`TOOLNET_GRAPH_TOKEN` controls Graph API access only. It is not an encryption
|
|
657
657
|
key and is not required for normal localhost usage.
|
|
658
658
|
|
|
659
|
-
|
|
660
659
|
## Runtime Capability Truth
|
|
661
660
|
|
|
662
661
|
ToolNet Memory is local-first and deterministic.
|
|
@@ -1162,8 +1161,6 @@ See [CHANGELOG.md](CHANGELOG.md) for release history.
|
|
|
1162
1161
|
|
|
1163
1162
|
MIT © 2026 LBT-AI. See [LICENSE](LICENSE).
|
|
1164
1163
|
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
1164
|
Docker
|
|
1168
1165
|
|
|
1169
1166
|
ToolNet Memory includes a hardened Node.js 22 container build.
|
|
@@ -1174,16 +1171,16 @@ docker run --rm toolnet-memory:local --version
|
|
|
1174
1171
|
Run the daemon with persistent ToolNet runtime state:
|
|
1175
1172
|
|
|
1176
1173
|
docker run --rm \
|
|
1177
|
-
|
|
1178
|
-
|
|
1174
|
+
-v toolnet-memory-home:/home/node/.toolnet \
|
|
1175
|
+
toolnet-memory:local
|
|
1179
1176
|
|
|
1180
1177
|
Run against the current project:
|
|
1181
1178
|
|
|
1182
1179
|
docker run --rm \
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1180
|
+
-v "$PWD:/workspace" \
|
|
1181
|
+
-v toolnet-memory-home:/home/node/.toolnet \
|
|
1182
|
+
toolnet-memory:local \
|
|
1183
|
+
doctor
|
|
1187
1184
|
|
|
1188
1185
|
The final image runs as a non-root user and the Docker health check uses the
|
|
1189
1186
|
ToolNet daemon's real Unix-socket ping protocol.
|
|
@@ -1201,15 +1198,14 @@ when Docker Hub publishing is explicitly enabled in repository settings.
|
|
|
1201
1198
|
See docs/docker.md for Compose, shared-volume dedupe, permissions, health
|
|
1202
1199
|
checks, and multi-architecture release details.
|
|
1203
1200
|
|
|
1204
|
-
|
|
1205
1201
|
Standalone binaries
|
|
1206
1202
|
|
|
1207
1203
|
ToolNet Memory can run without a separately installed Node.js/npm runtime.
|
|
1208
1204
|
|
|
1209
1205
|
Release targets:
|
|
1210
1206
|
|
|
1211
|
-
Linux
|
|
1212
|
-
macOS
|
|
1207
|
+
Linux x64 / arm64
|
|
1208
|
+
macOS x64 / arm64
|
|
1213
1209
|
Windows x64
|
|
1214
1210
|
|
|
1215
1211
|
Example:
|
|
@@ -1225,8 +1221,6 @@ dependency graph. The npm package remains fully supported.
|
|
|
1225
1221
|
See [`docs/standalone.md`](docs/standalone.md) for platform support,
|
|
1226
1222
|
service limitations, checksums, and build instructions.
|
|
1227
1223
|
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
1224
|
Audit log and automatic GC
|
|
1231
1225
|
|
|
1232
1226
|
ToolNet can maintain a tamper-evident project audit history:
|
|
@@ -1257,8 +1251,6 @@ unless `TOOLNET_AUTO_GC_REMOTE=on` is explicitly configured.
|
|
|
1257
1251
|
See [`docs/audit-log.md`](docs/audit-log.md) and
|
|
1258
1252
|
[`docs/auto-gc.md`](docs/auto-gc.md).
|
|
1259
1253
|
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
1254
|
Non-TypeScript local code search
|
|
1263
1255
|
|
|
1264
1256
|
Structural graph parsing remains TypeScript/JavaScript-only.
|