@andespindola/brainlink 0.1.0-beta.12 → 0.1.0-beta.14
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 +2 -1
- package/dist/application/analyze-vault.js +8 -2
- package/dist/application/search-knowledge.js +2 -1
- package/dist/infrastructure/search-packs.js +113 -6
- package/dist/infrastructure/sqlite/recovery.js +89 -9
- package/docs/AGENT_USAGE.md +2 -1
- package/docs/ARCHITECTURE.md +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -57,9 +57,10 @@ LLMs do not have infinite context. Brainlink gives agents an external memory lay
|
|
|
57
57
|
6. Brainlink returns compact, source-backed context.
|
|
58
58
|
|
|
59
59
|
Markdown is the source of truth. `.brainlink/brainlink.db` is only a rebuildable index.
|
|
60
|
-
Brainlink now keeps an automatic rollback snapshot at `.brainlink/brainlink.db.backup`. If the main SQLite file is corrupted, Brainlink automatically restores
|
|
60
|
+
Brainlink now keeps an automatic rollback snapshot at `.brainlink/brainlink.db.backup` plus rotating snapshots in `.brainlink/brainlink.db.backup.snapshots/`. If the main SQLite file is corrupted, Brainlink automatically restores the newest valid snapshot (or recreates a clean index when no snapshot exists).
|
|
61
61
|
After each index run, Brainlink also writes private encrypted search packs at `.brainlink/search-packs/*.blpk`. If SQLite is unavailable, search falls back to these packs automatically.
|
|
62
62
|
Pack decryption uses a Brainlink key from `$BRAINLINK_HOME/keys` or from `BRAINLINK_SEARCH_PACK_KEY` when explicitly configured.
|
|
63
|
+
On upgrade, if a legacy SQLite index exists without private packs, Brainlink imports index rows into `.blpk` automatically on first search/context access.
|
|
63
64
|
|
|
64
65
|
## Features
|
|
65
66
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { stat } from 'node:fs/promises';
|
|
2
|
-
import { existsSync } from 'node:fs';
|
|
2
|
+
import { existsSync, readdirSync } from 'node:fs';
|
|
3
3
|
import { performance } from 'node:perf_hooks';
|
|
4
4
|
import { join } from 'node:path';
|
|
5
5
|
import { validateGraph, getBrokenLinks, getOrphanNodes, getVaultStats } from '../domain/graph-analysis.js';
|
|
@@ -97,7 +97,11 @@ export const doctorVault = async (vaultPath) => {
|
|
|
97
97
|
const graph = await getGraphSummary(absoluteVaultPath);
|
|
98
98
|
const validation = validateGraph(graph);
|
|
99
99
|
const backupPath = join(absoluteVaultPath, '.brainlink', 'brainlink.db.backup');
|
|
100
|
+
const snapshotDirectory = join(absoluteVaultPath, '.brainlink', 'brainlink.db.backup.snapshots');
|
|
100
101
|
const hasBackup = existsSync(backupPath);
|
|
102
|
+
const snapshotCount = existsSync(snapshotDirectory)
|
|
103
|
+
? readdirSync(snapshotDirectory).filter((name) => name.endsWith('.db')).length
|
|
104
|
+
: 0;
|
|
101
105
|
const backupReady = graph.nodes.length === 0 || hasBackup;
|
|
102
106
|
const checks = [
|
|
103
107
|
createCheck('vault', true, `Vault ready at ${absoluteVaultPath}`),
|
|
@@ -105,7 +109,9 @@ export const doctorVault = async (vaultPath) => {
|
|
|
105
109
|
createCheck('index', graph.nodes.length > 0, `${graph.nodes.length} indexed documents found`),
|
|
106
110
|
createCheck('broken-links', validation.brokenLinks.length === 0, `${validation.brokenLinks.length} broken links found`),
|
|
107
111
|
createCheck('index-backup', backupReady, backupReady
|
|
108
|
-
? (hasBackup
|
|
112
|
+
? (hasBackup
|
|
113
|
+
? `SQLite recovery snapshot is available (${snapshotCount} rotating snapshots)`
|
|
114
|
+
: 'No index yet. Snapshot will be created after first indexing run')
|
|
109
115
|
: 'Recovery snapshot missing. Run blink index to create a rollback snapshot')
|
|
110
116
|
];
|
|
111
117
|
const recommendations = files.length === 0 && graph.nodes.length === 0
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { stat } from 'node:fs/promises';
|
|
2
2
|
import { join } from 'node:path';
|
|
3
3
|
import { ensureVault } from '../infrastructure/file-system-vault.js';
|
|
4
|
-
import { searchInPacks } from '../infrastructure/search-packs.js';
|
|
4
|
+
import { ensurePrivatePacksFromLegacyIndex, searchInPacks } from '../infrastructure/search-packs.js';
|
|
5
5
|
import { openSqliteIndex } from '../infrastructure/sqlite-index.js';
|
|
6
6
|
import { createEmbeddingProvider } from '../domain/embeddings.js';
|
|
7
7
|
import { loadBrainlinkConfig, sanitizeSearchMode } from '../infrastructure/config.js';
|
|
@@ -47,6 +47,7 @@ export const searchKnowledge = async (vaultPath, query, limit, agentId, mode) =>
|
|
|
47
47
|
const absoluteVaultPath = await ensureVault(vaultPath);
|
|
48
48
|
const config = await loadBrainlinkConfig();
|
|
49
49
|
const searchMode = sanitizeSearchMode(mode, config.defaultSearchMode);
|
|
50
|
+
await ensurePrivatePacksFromLegacyIndex(absoluteVaultPath);
|
|
50
51
|
const cacheKey = searchMode === 'hybrid' ? toCacheKey(absoluteVaultPath, query, limit, agentId) : undefined;
|
|
51
52
|
const indexMtimeMs = cacheKey ? await readIndexMtimeMs(absoluteVaultPath) : 0;
|
|
52
53
|
const cached = cacheKey ? cacheGet(cacheKey, indexMtimeMs) : undefined;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import Database from 'better-sqlite3';
|
|
1
2
|
import { gunzipSync } from 'node:zlib';
|
|
2
3
|
import { mkdir, readdir, readFile, rm, writeFile } from 'node:fs/promises';
|
|
3
4
|
import { join } from 'node:path';
|
|
5
|
+
import { existsSync } from 'node:fs';
|
|
4
6
|
import { decodePrivatePack, encodePrivatePack, isPrivatePackPayload } from './private-pack-codec.js';
|
|
5
7
|
const packsDirectoryName = 'search-packs';
|
|
6
8
|
const manifestFileName = 'manifest.json';
|
|
@@ -8,6 +10,7 @@ const rowChunkSize = 5_000;
|
|
|
8
10
|
const queryTokenPattern = /[\p{L}\p{N}_-]+/gu;
|
|
9
11
|
const toPackDirectory = (vaultPath) => join(vaultPath, '.brainlink', packsDirectoryName);
|
|
10
12
|
const toManifestPath = (vaultPath) => join(toPackDirectory(vaultPath), manifestFileName);
|
|
13
|
+
const toDatabasePath = (vaultPath) => join(vaultPath, '.brainlink', 'brainlink.db');
|
|
11
14
|
const parseRowsFromPack = async (vaultPath, content) => {
|
|
12
15
|
const raw = isPrivatePackPayload(content) ? await decodePrivatePack(vaultPath, content) : gunzipSync(content);
|
|
13
16
|
return raw
|
|
@@ -29,6 +32,15 @@ const toRows = (documents) => documents.flatMap((document) => document.chunks.ma
|
|
|
29
32
|
const writeManifest = async (vaultPath, manifest) => {
|
|
30
33
|
await writeFile(toManifestPath(vaultPath), `${JSON.stringify(manifest, null, 2)}\n`, 'utf8');
|
|
31
34
|
};
|
|
35
|
+
const parseTags = (value) => {
|
|
36
|
+
try {
|
|
37
|
+
const parsed = JSON.parse(value);
|
|
38
|
+
return Array.isArray(parsed) ? parsed.filter((item) => typeof item === 'string') : [];
|
|
39
|
+
}
|
|
40
|
+
catch {
|
|
41
|
+
return [];
|
|
42
|
+
}
|
|
43
|
+
};
|
|
32
44
|
const chunkRows = (rows, size) => {
|
|
33
45
|
const chunks = [];
|
|
34
46
|
for (let index = 0; index < rows.length; index += size) {
|
|
@@ -100,14 +112,15 @@ const sortedPackFiles = async (vaultPath) => {
|
|
|
100
112
|
throw error;
|
|
101
113
|
}
|
|
102
114
|
};
|
|
103
|
-
|
|
115
|
+
const writeRowsAsPrivatePacks = async (vaultPath, rows, clearExisting) => {
|
|
104
116
|
const directory = toPackDirectory(vaultPath);
|
|
105
|
-
const rows = toRows(documents);
|
|
106
117
|
await mkdir(directory, { recursive: true });
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
118
|
+
if (clearExisting) {
|
|
119
|
+
const current = await readdir(directory);
|
|
120
|
+
await Promise.all(current
|
|
121
|
+
.filter((name) => name.endsWith('.blpk') || name.endsWith('.jsonl.gz') || name === manifestFileName)
|
|
122
|
+
.map((name) => rm(join(directory, name), { force: true })));
|
|
123
|
+
}
|
|
111
124
|
const chunks = chunkRows(rows, rowChunkSize);
|
|
112
125
|
await Promise.all(chunks.map(async (chunk, index) => {
|
|
113
126
|
const fileName = `pack-${String(index + 1).padStart(4, '0')}.blpk`;
|
|
@@ -127,6 +140,100 @@ export const buildSearchPacks = async (vaultPath, documents) => {
|
|
|
127
140
|
recordCount: rows.length
|
|
128
141
|
};
|
|
129
142
|
};
|
|
143
|
+
const tableExists = (database, table) => {
|
|
144
|
+
const row = database.prepare("SELECT name FROM sqlite_master WHERE type = 'table' AND name = ?").get(table);
|
|
145
|
+
return row?.name === table;
|
|
146
|
+
};
|
|
147
|
+
const tableColumns = (database, table) => {
|
|
148
|
+
const rows = database.prepare(`SELECT name FROM pragma_table_info('${table.replaceAll("'", "''")}')`).all();
|
|
149
|
+
return new Set(rows.map((row) => row.name));
|
|
150
|
+
};
|
|
151
|
+
const loadRowsFromLegacySqlite = (vaultPath) => {
|
|
152
|
+
const databasePath = toDatabasePath(vaultPath);
|
|
153
|
+
if (!existsSync(databasePath)) {
|
|
154
|
+
return [];
|
|
155
|
+
}
|
|
156
|
+
const database = new Database(databasePath, { readonly: true, fileMustExist: true });
|
|
157
|
+
try {
|
|
158
|
+
if (!tableExists(database, 'documents') || !tableExists(database, 'chunks')) {
|
|
159
|
+
return [];
|
|
160
|
+
}
|
|
161
|
+
const documentColumns = tableColumns(database, 'documents');
|
|
162
|
+
const chunkColumns = tableColumns(database, 'chunks');
|
|
163
|
+
if (!documentColumns.has('id') || !documentColumns.has('title') || !chunkColumns.has('document_id')) {
|
|
164
|
+
return [];
|
|
165
|
+
}
|
|
166
|
+
const agentExpr = documentColumns.has('agent_id') ? 'documents.agent_id' : "'shared'";
|
|
167
|
+
const pathExpr = documentColumns.has('path') ? 'documents.path' : "documents.title";
|
|
168
|
+
const tagsExpr = documentColumns.has('tags_json') ? 'documents.tags_json' : "'[]'";
|
|
169
|
+
const chunkIdExpr = chunkColumns.has('id') ? 'chunks.id' : "documents.id || ':' || chunks.rowid";
|
|
170
|
+
const chunkContentExpr = chunkColumns.has('content')
|
|
171
|
+
? 'chunks.content'
|
|
172
|
+
: documentColumns.has('content')
|
|
173
|
+
? 'documents.content'
|
|
174
|
+
: "''";
|
|
175
|
+
const chunkOrderExpr = chunkColumns.has('ordinal') ? 'chunks.ordinal' : 'chunks.rowid';
|
|
176
|
+
const statement = database.prepare(`
|
|
177
|
+
SELECT
|
|
178
|
+
documents.id AS document_id,
|
|
179
|
+
${agentExpr} AS agent_id,
|
|
180
|
+
documents.title AS title,
|
|
181
|
+
${pathExpr} AS path,
|
|
182
|
+
${chunkIdExpr} AS chunk_id,
|
|
183
|
+
${chunkContentExpr} AS content,
|
|
184
|
+
${tagsExpr} AS tags_json
|
|
185
|
+
FROM chunks
|
|
186
|
+
JOIN documents ON documents.id = chunks.document_id
|
|
187
|
+
ORDER BY documents.title, ${chunkOrderExpr}
|
|
188
|
+
`);
|
|
189
|
+
const rows = statement.all();
|
|
190
|
+
return rows.map((row) => ({
|
|
191
|
+
documentId: row.document_id,
|
|
192
|
+
agentId: typeof row.agent_id === 'string' && row.agent_id.length > 0 ? row.agent_id : 'shared',
|
|
193
|
+
title: row.title,
|
|
194
|
+
path: row.path,
|
|
195
|
+
chunkId: row.chunk_id,
|
|
196
|
+
content: row.content ?? '',
|
|
197
|
+
tags: parseTags(row.tags_json)
|
|
198
|
+
}));
|
|
199
|
+
}
|
|
200
|
+
finally {
|
|
201
|
+
database.close();
|
|
202
|
+
}
|
|
203
|
+
};
|
|
204
|
+
export const buildSearchPacks = async (vaultPath, documents) => {
|
|
205
|
+
return writeRowsAsPrivatePacks(vaultPath, toRows(documents), true);
|
|
206
|
+
};
|
|
207
|
+
export const ensurePrivatePacksFromLegacyIndex = async (vaultPath) => {
|
|
208
|
+
const files = await sortedPackFiles(vaultPath);
|
|
209
|
+
if (files.some((file) => file.endsWith('.blpk'))) {
|
|
210
|
+
return { imported: false };
|
|
211
|
+
}
|
|
212
|
+
const legacyPackFiles = files.filter((file) => file.endsWith('.jsonl.gz'));
|
|
213
|
+
if (legacyPackFiles.length > 0) {
|
|
214
|
+
const rows = [];
|
|
215
|
+
for (const file of legacyPackFiles) {
|
|
216
|
+
const parsed = await parseRowsFromPack(vaultPath, await readFile(join(toPackDirectory(vaultPath), file)));
|
|
217
|
+
rows.push(...parsed);
|
|
218
|
+
}
|
|
219
|
+
const report = await writeRowsAsPrivatePacks(vaultPath, rows, true);
|
|
220
|
+
return {
|
|
221
|
+
imported: true,
|
|
222
|
+
source: 'legacy-packs',
|
|
223
|
+
...report
|
|
224
|
+
};
|
|
225
|
+
}
|
|
226
|
+
const legacyRows = loadRowsFromLegacySqlite(vaultPath);
|
|
227
|
+
if (legacyRows.length === 0) {
|
|
228
|
+
return { imported: false };
|
|
229
|
+
}
|
|
230
|
+
const report = await writeRowsAsPrivatePacks(vaultPath, legacyRows, true);
|
|
231
|
+
return {
|
|
232
|
+
imported: true,
|
|
233
|
+
source: 'legacy-sqlite',
|
|
234
|
+
...report
|
|
235
|
+
};
|
|
236
|
+
};
|
|
130
237
|
export const searchInPacks = async (vaultPath, query, limit, agentId) => {
|
|
131
238
|
const normalizedAgent = agentId?.trim();
|
|
132
239
|
const tokens = tokenize(query);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import Database from 'better-sqlite3';
|
|
2
|
-
import { copyFileSync, existsSync, mkdirSync, renameSync, rmSync, unlinkSync } from 'node:fs';
|
|
3
|
-
import { dirname } from 'node:path';
|
|
2
|
+
import { copyFileSync, existsSync, mkdirSync, readdirSync, renameSync, rmSync, statSync, unlinkSync, writeFileSync } from 'node:fs';
|
|
3
|
+
import { basename, dirname, join } from 'node:path';
|
|
4
4
|
const sqliteCorruptionHints = [
|
|
5
5
|
'database disk image is malformed',
|
|
6
6
|
'file is not a database',
|
|
@@ -8,6 +8,7 @@ const sqliteCorruptionHints = [
|
|
|
8
8
|
'malformed database schema',
|
|
9
9
|
'sqlite quick_check failed'
|
|
10
10
|
];
|
|
11
|
+
const maxSnapshotFiles = 24;
|
|
11
12
|
const normalizeMessage = (error) => error instanceof Error ? error.message.toLowerCase() : String(error).toLowerCase();
|
|
12
13
|
const isSqliteCorruptionError = (error) => sqliteCorruptionHints.some((hint) => normalizeMessage(error).includes(hint));
|
|
13
14
|
const safeUnlink = (path) => {
|
|
@@ -39,15 +40,19 @@ const archiveCorruptedDatabase = (databasePath) => {
|
|
|
39
40
|
const archivedPath = `${databasePath}.corrupt-${Date.now()}`;
|
|
40
41
|
renameSync(databasePath, archivedPath);
|
|
41
42
|
};
|
|
42
|
-
const
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
clearSidecars(databasePath);
|
|
43
|
+
const snapshotDirectoryPath = (backupPath) => join(dirname(backupPath), `${basename(backupPath)}.snapshots`);
|
|
44
|
+
const snapshotFileName = () => `snapshot-${new Date().toISOString().replace(/[:.]/g, '-')}.db`;
|
|
45
|
+
const cleanupSnapshotOverflow = (backupPath) => {
|
|
46
|
+
const directory = snapshotDirectoryPath(backupPath);
|
|
47
|
+
if (!existsSync(directory)) {
|
|
48
48
|
return;
|
|
49
49
|
}
|
|
50
|
-
|
|
50
|
+
const snapshots = readdirSync(directory)
|
|
51
|
+
.filter((name) => name.endsWith('.db'))
|
|
52
|
+
.sort((left, right) => right.localeCompare(left));
|
|
53
|
+
snapshots.slice(maxSnapshotFiles).forEach((name) => {
|
|
54
|
+
rmSync(join(directory, name), { force: true });
|
|
55
|
+
});
|
|
51
56
|
};
|
|
52
57
|
const openCheckedDatabase = (databasePath) => {
|
|
53
58
|
const database = new Database(databasePath);
|
|
@@ -60,13 +65,88 @@ const openCheckedDatabase = (databasePath) => {
|
|
|
60
65
|
}
|
|
61
66
|
return database;
|
|
62
67
|
};
|
|
68
|
+
const isValidDatabaseSnapshot = (path) => {
|
|
69
|
+
if (!existsSync(path)) {
|
|
70
|
+
return false;
|
|
71
|
+
}
|
|
72
|
+
try {
|
|
73
|
+
const size = statSync(path).size;
|
|
74
|
+
if (size <= 0) {
|
|
75
|
+
return false;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
catch {
|
|
79
|
+
return false;
|
|
80
|
+
}
|
|
81
|
+
try {
|
|
82
|
+
const database = new Database(path);
|
|
83
|
+
try {
|
|
84
|
+
assertQuickCheck(database);
|
|
85
|
+
return true;
|
|
86
|
+
}
|
|
87
|
+
finally {
|
|
88
|
+
database.close();
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
catch {
|
|
92
|
+
return false;
|
|
93
|
+
}
|
|
94
|
+
};
|
|
95
|
+
const candidateBackupFiles = (backupPath) => {
|
|
96
|
+
const directory = snapshotDirectoryPath(backupPath);
|
|
97
|
+
const snapshots = existsSync(directory)
|
|
98
|
+
? readdirSync(directory)
|
|
99
|
+
.filter((name) => name.endsWith('.db'))
|
|
100
|
+
.sort((left, right) => right.localeCompare(left))
|
|
101
|
+
.map((name) => join(directory, name))
|
|
102
|
+
: [];
|
|
103
|
+
return [backupPath, ...snapshots];
|
|
104
|
+
};
|
|
105
|
+
const ensureSnapshotDirectory = (backupPath) => {
|
|
106
|
+
mkdirSync(snapshotDirectoryPath(backupPath), { recursive: true, mode: 0o700 });
|
|
107
|
+
};
|
|
108
|
+
const writeRecoveryMarker = (backupPath, restoredFrom) => {
|
|
109
|
+
const markerPath = join(dirname(backupPath), 'recovery-last-restore.json');
|
|
110
|
+
const payload = {
|
|
111
|
+
restoredAt: new Date().toISOString(),
|
|
112
|
+
restoredFrom
|
|
113
|
+
};
|
|
114
|
+
writeFileSync(markerPath, `${JSON.stringify(payload, null, 2)}\n`, { encoding: 'utf8', mode: 0o600 });
|
|
115
|
+
};
|
|
116
|
+
const restoreFromBackupOrReset = (databasePath, backupPath) => {
|
|
117
|
+
clearSidecars(databasePath);
|
|
118
|
+
archiveCorruptedDatabase(databasePath);
|
|
119
|
+
for (const candidate of candidateBackupFiles(backupPath)) {
|
|
120
|
+
if (!isValidDatabaseSnapshot(candidate)) {
|
|
121
|
+
continue;
|
|
122
|
+
}
|
|
123
|
+
copyFileSync(candidate, databasePath);
|
|
124
|
+
clearSidecars(databasePath);
|
|
125
|
+
if (isValidDatabaseSnapshot(databasePath)) {
|
|
126
|
+
writeRecoveryMarker(backupPath, candidate);
|
|
127
|
+
return;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
rmSync(databasePath, { force: true });
|
|
131
|
+
};
|
|
63
132
|
export const createRecoverySnapshot = (database, backupPath) => {
|
|
64
133
|
const backupDirectory = dirname(backupPath);
|
|
65
134
|
const tempBackupPath = `${backupPath}.tmp`;
|
|
135
|
+
const snapshotDirectory = snapshotDirectoryPath(backupPath);
|
|
136
|
+
const snapshotPath = join(snapshotDirectory, snapshotFileName());
|
|
66
137
|
mkdirSync(backupDirectory, { recursive: true });
|
|
138
|
+
ensureSnapshotDirectory(backupPath);
|
|
67
139
|
rmSync(tempBackupPath, { force: true });
|
|
140
|
+
try {
|
|
141
|
+
database.pragma('wal_checkpoint(PASSIVE)');
|
|
142
|
+
}
|
|
143
|
+
catch {
|
|
144
|
+
// Checkpoint is best-effort.
|
|
145
|
+
}
|
|
68
146
|
database.prepare('VACUUM INTO ?').run(tempBackupPath);
|
|
69
147
|
renameSync(tempBackupPath, backupPath);
|
|
148
|
+
copyFileSync(backupPath, snapshotPath);
|
|
149
|
+
cleanupSnapshotOverflow(backupPath);
|
|
70
150
|
};
|
|
71
151
|
export const openDatabaseWithRecovery = (databasePath, backupPath) => {
|
|
72
152
|
mkdirSync(dirname(databasePath), { recursive: true });
|
package/docs/AGENT_USAGE.md
CHANGED
|
@@ -634,9 +634,10 @@ GET /api/validate
|
|
|
634
634
|
|
|
635
635
|
The HTTP API is read-only. Use the CLI for writes and indexing.
|
|
636
636
|
|
|
637
|
-
Brainlink maintains an automatic SQLite rollback snapshot at `.brainlink/brainlink.db.backup`. When `.brainlink/brainlink.db` is corrupted, Brainlink restores
|
|
637
|
+
Brainlink maintains an automatic SQLite rollback snapshot at `.brainlink/brainlink.db.backup` and rotating snapshots in `.brainlink/brainlink.db.backup.snapshots/`. When `.brainlink/brainlink.db` is corrupted, Brainlink restores the newest valid snapshot automatically or recreates a clean index if no snapshot exists yet.
|
|
638
638
|
Indexing also writes private encrypted search packs at `.brainlink/search-packs/*.blpk`; when SQLite cannot be opened, Brainlink falls back to pack-based search automatically.
|
|
639
639
|
Pack decryption keys are resolved from `$BRAINLINK_HOME/keys` (or `BRAINLINK_SEARCH_PACK_KEY` when explicitly set).
|
|
640
|
+
For legacy installations, when SQLite already exists but private packs are missing, Brainlink auto-imports index context rows from `brainlink.db` into `.blpk` on first retrieval.
|
|
640
641
|
|
|
641
642
|
## Agent Integration Contract
|
|
642
643
|
|
package/docs/ARCHITECTURE.md
CHANGED
|
@@ -300,9 +300,10 @@ Markdown keeps the system portable, inspectable, Git-friendly, and compatible wi
|
|
|
300
300
|
|
|
301
301
|
SQLite gives fast local search, local vector storage and rebuildable retrieval without forcing users to run external infrastructure.
|
|
302
302
|
Hybrid retrieval also uses a short-lived in-memory cache keyed by vault/query/agent and invalidated by index file mtime to reduce repeated query latency.
|
|
303
|
-
Brainlink also writes a local rollback snapshot (`.brainlink/brainlink.db.backup`) after successful indexing. On corruption detection (`quick_check`/SQLite malformed errors), Brainlink restores
|
|
303
|
+
Brainlink also writes a local rollback snapshot (`.brainlink/brainlink.db.backup`) plus rotating point-in-time snapshots (`.brainlink/brainlink.db.backup.snapshots/`) after successful indexing. On corruption detection (`quick_check`/SQLite malformed errors), Brainlink restores the newest valid snapshot automatically before reopening the index.
|
|
304
304
|
Indexing additionally exports private encrypted pack files (`.brainlink/search-packs/*.blpk`) from indexed chunks. Search falls back to these packs when SQLite is unavailable, preserving retrieval continuity in degraded mode.
|
|
305
305
|
Pack encryption keys are resolved from `$BRAINLINK_HOME/keys` or from `BRAINLINK_SEARCH_PACK_KEY` when configured.
|
|
306
|
+
Legacy upgrades are automatic: when a vault has `brainlink.db` but no `.blpk` packs yet, Brainlink extracts indexed context rows from SQLite and writes private packs on first retrieval flow.
|
|
306
307
|
|
|
307
308
|
### CLI First
|
|
308
309
|
|
package/package.json
CHANGED