@andespindola/brainlink 0.1.0-beta.4 → 0.1.0-beta.40
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/AGENTS.md +5 -5
- package/CHANGELOG.md +43 -2
- package/CONTRIBUTING.md +2 -2
- package/COPYRIGHT.md +5 -0
- package/README.md +213 -20
- package/SECURITY.md +1 -1
- package/dist/application/add-note.js +62 -13
- package/dist/application/analyze-vault.js +95 -8
- package/dist/application/build-context.js +56 -1
- package/dist/application/dedupe-notes.js +226 -0
- package/dist/application/frontend/client-css.js +214 -100
- package/dist/application/frontend/client-html.js +60 -45
- package/dist/application/frontend/client-js.js +656 -94
- package/dist/application/get-graph-layout.js +22 -7
- package/dist/application/get-graph-node.js +12 -0
- package/dist/application/get-graph-summary.js +12 -0
- package/dist/application/get-graph.js +3 -3
- package/dist/application/import-legacy-sqlite.js +296 -0
- package/dist/application/index-vault.js +11 -4
- package/dist/application/list-agents.js +3 -3
- package/dist/application/list-links.js +5 -5
- package/dist/application/migrate-vault.js +91 -0
- package/dist/application/search-graph-node-ids.js +12 -0
- package/dist/application/search-knowledge.js +75 -5
- package/dist/application/server/routes.js +27 -1
- package/dist/benchmarks/large-vault.js +1 -1
- package/dist/cli/commands/agent-commands.js +412 -0
- package/dist/cli/commands/config-commands.js +167 -0
- package/dist/cli/commands/read-commands.js +25 -8
- package/dist/cli/commands/write-commands.js +669 -9
- package/dist/cli/main.js +4 -0
- package/dist/cli/runtime.js +5 -2
- package/dist/domain/context.js +53 -11
- package/dist/domain/embeddings.js +2 -1
- package/dist/domain/graph-layout.js +20 -14
- package/dist/domain/markdown.js +36 -4
- package/dist/domain/middle-out.js +18 -0
- package/dist/infrastructure/config.js +94 -8
- package/dist/infrastructure/file-index.js +328 -0
- package/dist/infrastructure/file-system-vault.js +15 -0
- package/dist/infrastructure/paths.js +9 -1
- package/dist/infrastructure/private-pack-codec.js +73 -0
- package/dist/infrastructure/search-packs.js +348 -0
- package/dist/infrastructure/session-state.js +172 -0
- package/dist/mcp/main.js +11 -3
- package/dist/mcp/server.js +27 -2
- package/dist/mcp/startup.js +35 -0
- package/dist/mcp/tools.js +633 -19
- package/docs/AGENT_USAGE.md +144 -16
- package/docs/ARCHITECTURE.md +37 -26
- package/docs/QUICKSTART.md +111 -0
- package/package.json +6 -4
- package/dist/infrastructure/sqlite/document-writer.js +0 -51
- package/dist/infrastructure/sqlite/graph-reader.js +0 -120
- package/dist/infrastructure/sqlite/schema.js +0 -111
- package/dist/infrastructure/sqlite/search-reader.js +0 -156
- package/dist/infrastructure/sqlite/types.js +0 -1
- package/dist/infrastructure/sqlite-index.js +0 -25
package/dist/cli/main.js
CHANGED
|
@@ -3,6 +3,8 @@ import { Command } from 'commander';
|
|
|
3
3
|
import { readFileSync } from 'node:fs';
|
|
4
4
|
import { basename, dirname, join } from 'node:path';
|
|
5
5
|
import { fileURLToPath } from 'node:url';
|
|
6
|
+
import { registerAgentCommands } from './commands/agent-commands.js';
|
|
7
|
+
import { registerConfigCommands } from './commands/config-commands.js';
|
|
6
8
|
import { registerReadCommands } from './commands/read-commands.js';
|
|
7
9
|
import { registerWriteCommands } from './commands/write-commands.js';
|
|
8
10
|
const readPackageVersion = () => {
|
|
@@ -21,6 +23,8 @@ program
|
|
|
21
23
|
.version(readPackageVersion());
|
|
22
24
|
registerWriteCommands(program);
|
|
23
25
|
registerReadCommands(program);
|
|
26
|
+
registerConfigCommands(program);
|
|
27
|
+
registerAgentCommands(program);
|
|
24
28
|
program.parseAsync().catch((error) => {
|
|
25
29
|
const message = error instanceof Error ? error.message : String(error);
|
|
26
30
|
console.error(message);
|
package/dist/cli/runtime.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { loadBrainlinkConfig } from '../infrastructure/config.js';
|
|
1
|
+
import { loadBrainlinkConfig, resolveAgentRuntimeDefaults } from '../infrastructure/config.js';
|
|
2
2
|
import { assertVaultAllowed } from '../infrastructure/file-system-vault.js';
|
|
3
3
|
export const parsePositiveInteger = (value, fallback) => {
|
|
4
4
|
const parsed = Number.parseInt(value, 10);
|
|
@@ -8,10 +8,13 @@ export const resolveOptions = async (options) => {
|
|
|
8
8
|
const config = await loadBrainlinkConfig();
|
|
9
9
|
const vault = options.vault ?? config.vault;
|
|
10
10
|
const allowedVault = assertVaultAllowed(vault, config.allowedVaults);
|
|
11
|
+
const agent = options.agent ?? config.defaultAgent;
|
|
12
|
+
const defaults = resolveAgentRuntimeDefaults(config, agent);
|
|
11
13
|
return {
|
|
12
14
|
config,
|
|
13
15
|
vault: allowedVault,
|
|
14
|
-
agent
|
|
16
|
+
agent,
|
|
17
|
+
defaults
|
|
15
18
|
};
|
|
16
19
|
};
|
|
17
20
|
export const print = (json, value, human) => {
|
package/dist/domain/context.js
CHANGED
|
@@ -1,13 +1,50 @@
|
|
|
1
|
+
import { middleOutIndices } from './middle-out.js';
|
|
2
|
+
const maxSectionsPerDocument = 3;
|
|
3
|
+
const byScore = (left, right) => right.score - left.score || left.title.localeCompare(right.title);
|
|
4
|
+
const byOrdinal = (left, right) => (left.chunkOrdinal ?? Number.MAX_SAFE_INTEGER) - (right.chunkOrdinal ?? Number.MAX_SAFE_INTEGER);
|
|
5
|
+
const middleOutDocumentResults = (results) => {
|
|
6
|
+
if (results.length <= 1) {
|
|
7
|
+
return results;
|
|
8
|
+
}
|
|
9
|
+
const sortedByOrdinal = [...results].sort(byOrdinal);
|
|
10
|
+
const pivotChunkId = [...results].sort(byScore)[0]?.chunkId;
|
|
11
|
+
const pivotIndex = sortedByOrdinal.findIndex((result) => result.chunkId === pivotChunkId);
|
|
12
|
+
if (pivotIndex < 0) {
|
|
13
|
+
return [...results].sort(byScore);
|
|
14
|
+
}
|
|
15
|
+
return middleOutIndices(sortedByOrdinal.length, pivotIndex).map((index) => sortedByOrdinal[index]);
|
|
16
|
+
};
|
|
1
17
|
export const selectContextSections = (results, maxTokens) => {
|
|
2
|
-
const
|
|
3
|
-
const
|
|
4
|
-
|
|
5
|
-
|
|
18
|
+
const grouped = results.reduce((state, result) => {
|
|
19
|
+
const current = state.get(result.documentId) ?? [];
|
|
20
|
+
state.set(result.documentId, [...current, result]);
|
|
21
|
+
return state;
|
|
22
|
+
}, new Map());
|
|
23
|
+
const documentOrder = Array.from(results.reduce((state, result) => {
|
|
24
|
+
if (!state.has(result.documentId)) {
|
|
25
|
+
state.set(result.documentId, result.score);
|
|
6
26
|
}
|
|
7
|
-
return
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
27
|
+
return state;
|
|
28
|
+
}, new Map()).entries())
|
|
29
|
+
.sort((left, right) => right[1] - left[1] || left[0].localeCompare(right[0]))
|
|
30
|
+
.map(([documentId]) => documentId);
|
|
31
|
+
const selected = documentOrder.reduce((state, documentId) => {
|
|
32
|
+
const ordered = middleOutDocumentResults(grouped.get(documentId) ?? []);
|
|
33
|
+
let usedTokens = state.usedTokens;
|
|
34
|
+
let sections = state.sections;
|
|
35
|
+
let seenChunks = state.seenChunks;
|
|
36
|
+
for (let index = 0; index < ordered.length && index < maxSectionsPerDocument; index += 1) {
|
|
37
|
+
const result = ordered[index];
|
|
38
|
+
if (seenChunks.has(result.chunkId)) {
|
|
39
|
+
continue;
|
|
40
|
+
}
|
|
41
|
+
const tokenCost = Math.ceil(result.content.length / 4);
|
|
42
|
+
if (usedTokens + tokenCost > maxTokens) {
|
|
43
|
+
break;
|
|
44
|
+
}
|
|
45
|
+
usedTokens += tokenCost;
|
|
46
|
+
sections = [
|
|
47
|
+
...sections,
|
|
11
48
|
{
|
|
12
49
|
title: result.title,
|
|
13
50
|
path: result.path,
|
|
@@ -16,13 +53,18 @@ export const selectContextSections = (results, maxTokens) => {
|
|
|
16
53
|
searchMode: result.searchMode,
|
|
17
54
|
tags: result.tags
|
|
18
55
|
}
|
|
19
|
-
]
|
|
20
|
-
|
|
56
|
+
];
|
|
57
|
+
seenChunks = new Set([...seenChunks, result.chunkId]);
|
|
58
|
+
}
|
|
59
|
+
return {
|
|
60
|
+
usedTokens,
|
|
61
|
+
sections,
|
|
62
|
+
seenChunks
|
|
21
63
|
};
|
|
22
64
|
}, {
|
|
23
65
|
usedTokens: 0,
|
|
24
66
|
sections: [],
|
|
25
|
-
|
|
67
|
+
seenChunks: new Set()
|
|
26
68
|
});
|
|
27
69
|
return selected.sections;
|
|
28
70
|
};
|
|
@@ -58,7 +58,8 @@ const tokenize = (input) => input
|
|
|
58
58
|
.match(tokenPattern)
|
|
59
59
|
?.map(normalizeToken)
|
|
60
60
|
.filter((token) => token.length > 1 && !stopWords.has(token)) ?? [];
|
|
61
|
-
const
|
|
61
|
+
const getAliasesForToken = (token) => Object.hasOwn(aliases, token) ? aliases[token] ?? [] : [];
|
|
62
|
+
const expandTokens = (tokens) => tokens.flatMap((token) => [token, ...getAliasesForToken(token)]);
|
|
62
63
|
const hash = (value) => Array.from(value).reduce((state, char) => Math.imul(state ^ char.charCodeAt(0), 16777619), 2166136261) >>> 0;
|
|
63
64
|
const featureHash = (feature) => {
|
|
64
65
|
const value = hash(feature);
|
|
@@ -45,20 +45,17 @@ const countDegrees = (edges) => edges.reduce((degrees, edge) => {
|
|
|
45
45
|
? incrementDegreeBy(incrementDegreeBy(degrees, edge.source, weight), edge.target, weight)
|
|
46
46
|
: incrementDegreeBy(degrees, edge.source, weight);
|
|
47
47
|
}, new Map());
|
|
48
|
-
const uniqueIds = (ids) => Array.from(new Set(ids));
|
|
49
48
|
const createAdjacency = (nodes, edges) => {
|
|
50
49
|
const nodeIds = new Set(nodes.map((node) => node.id));
|
|
51
|
-
const
|
|
52
|
-
|
|
50
|
+
const adjacency = new Map(nodes.map((node) => [node.id, new Set()]));
|
|
51
|
+
edges.forEach((edge) => {
|
|
53
52
|
if (!edge.target || !nodeIds.has(edge.source) || !nodeIds.has(edge.target)) {
|
|
54
|
-
return
|
|
53
|
+
return;
|
|
55
54
|
}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
]);
|
|
61
|
-
}, emptyAdjacency);
|
|
55
|
+
adjacency.get(edge.source)?.add(edge.target);
|
|
56
|
+
adjacency.get(edge.target)?.add(edge.source);
|
|
57
|
+
});
|
|
58
|
+
return new Map(Array.from(adjacency.entries(), ([id, neighbors]) => [id, Array.from(neighbors)]));
|
|
62
59
|
};
|
|
63
60
|
const byTitle = (left, right) => left.title.localeCompare(right.title);
|
|
64
61
|
const byDegreeThenTitle = (degrees) => (left, right) => {
|
|
@@ -117,10 +114,19 @@ const assignSegments = (nodes, edges, degrees) => {
|
|
|
117
114
|
}
|
|
118
115
|
return new Map(nodes.map((node) => [node.id, assignments.get(node.id) ?? groupLabel(groupKey(node))]));
|
|
119
116
|
};
|
|
120
|
-
const groupNodesBySegment = (nodes, segments) =>
|
|
121
|
-
const
|
|
122
|
-
|
|
123
|
-
|
|
117
|
+
const groupNodesBySegment = (nodes, segments) => {
|
|
118
|
+
const groups = new Map();
|
|
119
|
+
nodes.forEach((node) => {
|
|
120
|
+
const segment = segments.get(node.id) ?? groupLabel(groupKey(node));
|
|
121
|
+
const bucket = groups.get(segment);
|
|
122
|
+
if (bucket) {
|
|
123
|
+
bucket.push(node);
|
|
124
|
+
return;
|
|
125
|
+
}
|
|
126
|
+
groups.set(segment, [node]);
|
|
127
|
+
});
|
|
128
|
+
return new Map(groups);
|
|
129
|
+
};
|
|
124
130
|
const segmentAngle = (segment, index, count) => segmentAngles[segment] ?? (Math.PI * 2 * index) / Math.max(count, 1) - Math.PI / 2;
|
|
125
131
|
const createSegmentNodes = (segments, degrees, segmentCount) => ([segment, nodes], segmentIndex) => {
|
|
126
132
|
const sortedNodes = [...nodes].sort(byDegreeThenTitle(degrees));
|
package/dist/domain/markdown.js
CHANGED
|
@@ -77,11 +77,13 @@ export const extractWikiLinkReferences = (content) => visibleMarkdownLines(conte
|
|
|
77
77
|
}));
|
|
78
78
|
});
|
|
79
79
|
const priorityFromWeight = (weight) => weight >= 8 ? 'critical' : weight >= 4 ? 'high' : 'normal';
|
|
80
|
+
const normalizeAccumulatedWeight = (weight) => Math.max(1, Math.min(12, weight));
|
|
80
81
|
export const extractWikiLinkWeights = (content) => {
|
|
81
82
|
const weights = extractWikiLinkReferences(content).reduce((state, reference) => {
|
|
82
83
|
const titleKey = reference.title.toLowerCase();
|
|
83
84
|
const current = state.get(titleKey);
|
|
84
|
-
const
|
|
85
|
+
const rawWeight = (current?.weight ?? 0) + reference.weight;
|
|
86
|
+
const weight = normalizeAccumulatedWeight(rawWeight);
|
|
85
87
|
const explicitPriority = reference.priority
|
|
86
88
|
? maxPriority(current?.priority ?? reference.priority, reference.priority)
|
|
87
89
|
: current?.priority;
|
|
@@ -116,10 +118,38 @@ const normalizeChunkContent = (content) => content
|
|
|
116
118
|
.join('\n')
|
|
117
119
|
.replace(/\n{3,}/g, '\n\n')
|
|
118
120
|
.trim();
|
|
121
|
+
const splitLongParagraph = (paragraph, maxCharacters) => {
|
|
122
|
+
if (paragraph.length <= maxCharacters) {
|
|
123
|
+
return [paragraph];
|
|
124
|
+
}
|
|
125
|
+
const sentences = paragraph
|
|
126
|
+
.split(/(?<=[.!?])\s+/)
|
|
127
|
+
.map((sentence) => sentence.trim())
|
|
128
|
+
.filter(Boolean);
|
|
129
|
+
if (sentences.length <= 1) {
|
|
130
|
+
const chunks = [];
|
|
131
|
+
for (let index = 0; index < paragraph.length; index += maxCharacters) {
|
|
132
|
+
chunks.push(paragraph.slice(index, index + maxCharacters).trim());
|
|
133
|
+
}
|
|
134
|
+
return chunks.filter(Boolean);
|
|
135
|
+
}
|
|
136
|
+
return sentences.reduce((state, sentence) => {
|
|
137
|
+
const last = state.at(-1);
|
|
138
|
+
if (!last) {
|
|
139
|
+
return [sentence];
|
|
140
|
+
}
|
|
141
|
+
const merged = `${last} ${sentence}`;
|
|
142
|
+
if (merged.length <= maxCharacters) {
|
|
143
|
+
return [...state.slice(0, -1), merged];
|
|
144
|
+
}
|
|
145
|
+
return [...state, sentence];
|
|
146
|
+
}, []);
|
|
147
|
+
};
|
|
119
148
|
export const splitIntoChunks = (documentId, content, maxCharacters = 1200) => {
|
|
120
149
|
const paragraphs = normalizeChunkContent(stripFrontmatter(content))
|
|
121
150
|
.split(/\n{2,}/)
|
|
122
|
-
.filter(Boolean)
|
|
151
|
+
.filter(Boolean)
|
|
152
|
+
.flatMap((paragraph) => splitLongParagraph(paragraph, maxCharacters));
|
|
123
153
|
const chunks = paragraphs.reduce((state, paragraph) => {
|
|
124
154
|
const lastChunk = state.at(-1);
|
|
125
155
|
if (!lastChunk) {
|
|
@@ -162,13 +192,15 @@ export const parseMarkdownDocument = (input) => {
|
|
|
162
192
|
export const createIndexedDocument = (document, titleToDocumentId, maxChunkCharacters = 1200) => {
|
|
163
193
|
const chunks = splitIntoChunks(document.id, document.content, maxChunkCharacters);
|
|
164
194
|
const linkWeights = new Map(extractWikiLinkWeights(document.content).map((link) => [link.title.toLowerCase(), link]));
|
|
165
|
-
const links = document.links
|
|
195
|
+
const links = document.links
|
|
196
|
+
.map((toTitle) => ({
|
|
166
197
|
fromDocumentId: document.id,
|
|
167
198
|
toTitle,
|
|
168
199
|
toDocumentId: titleToDocumentId.get(toTitle.toLowerCase()) ?? null,
|
|
169
200
|
weight: linkWeights.get(toTitle.toLowerCase())?.weight ?? 1,
|
|
170
201
|
priority: linkWeights.get(toTitle.toLowerCase())?.priority ?? 'normal'
|
|
171
|
-
}))
|
|
202
|
+
}))
|
|
203
|
+
.filter((link) => link.toDocumentId !== document.id);
|
|
172
204
|
return {
|
|
173
205
|
document,
|
|
174
206
|
chunks,
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export const middleOutIndices = (size, pivotIndex) => {
|
|
2
|
+
if (!Number.isFinite(size) || size <= 0) {
|
|
3
|
+
return [];
|
|
4
|
+
}
|
|
5
|
+
const clampedPivot = Math.max(0, Math.min(Math.floor(pivotIndex), size - 1));
|
|
6
|
+
const indices = [clampedPivot];
|
|
7
|
+
for (let offset = 1; indices.length < size; offset += 1) {
|
|
8
|
+
const left = clampedPivot - offset;
|
|
9
|
+
const right = clampedPivot + offset;
|
|
10
|
+
if (left >= 0) {
|
|
11
|
+
indices.push(left);
|
|
12
|
+
}
|
|
13
|
+
if (right < size) {
|
|
14
|
+
indices.push(right);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
return indices;
|
|
18
|
+
};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { readFile } from 'node:fs/promises';
|
|
2
|
-
import { resolve } from 'node:path';
|
|
1
|
+
import { mkdir, readFile, writeFile } from 'node:fs/promises';
|
|
2
|
+
import { dirname, join, resolve } from 'node:path';
|
|
3
|
+
import { homedir } from 'node:os';
|
|
3
4
|
import { sanitizeAgentId } from '../domain/agents.js';
|
|
4
|
-
import { getDefaultVaultPath } from './paths.js';
|
|
5
|
+
import { getBrainlinkHomePath, getDefaultVaultPath } from './paths.js';
|
|
5
6
|
export const defaultBrainlinkConfig = {
|
|
6
7
|
vault: getDefaultVaultPath(),
|
|
7
8
|
host: '127.0.0.1',
|
|
@@ -13,15 +14,61 @@ export const defaultBrainlinkConfig = {
|
|
|
13
14
|
defaultContextTokens: 2000,
|
|
14
15
|
embeddingProvider: 'local',
|
|
15
16
|
defaultSearchMode: 'hybrid',
|
|
16
|
-
chunkSize: 1200
|
|
17
|
+
chunkSize: 1200,
|
|
18
|
+
agentProfiles: {}
|
|
17
19
|
};
|
|
18
20
|
const configFilenames = ['brainlink.config.json', '.brainlink.json'];
|
|
21
|
+
const localConfigFilename = 'brainlink.config.json';
|
|
22
|
+
const globalConfigFilename = 'brainlink.config.json';
|
|
23
|
+
const globalConfigDirectoryMode = 0o700;
|
|
24
|
+
const globalConfigFileMode = 0o600;
|
|
25
|
+
const safeCwd = () => {
|
|
26
|
+
try {
|
|
27
|
+
return process.cwd();
|
|
28
|
+
}
|
|
29
|
+
catch {
|
|
30
|
+
return homedir();
|
|
31
|
+
}
|
|
32
|
+
};
|
|
19
33
|
const isRecord = (value) => typeof value === 'object' && value !== null && !Array.isArray(value);
|
|
20
34
|
const embeddingProviders = new Set(['none', 'local']);
|
|
21
35
|
const searchModes = new Set(['fts', 'semantic', 'hybrid']);
|
|
22
36
|
const sanitizeEmbeddingProvider = (value) => typeof value === 'string' && embeddingProviders.has(value) ? value : defaultBrainlinkConfig.embeddingProvider;
|
|
23
37
|
export const sanitizeSearchMode = (value, fallback = defaultBrainlinkConfig.defaultSearchMode) => typeof value === 'string' && searchModes.has(value) ? value : fallback;
|
|
24
38
|
const sanitizeAllowedVaults = (value) => Array.isArray(value) ? value.filter((item) => typeof item === 'string' && item.trim().length > 0) : [];
|
|
39
|
+
const sanitizePositiveNumber = (value) => typeof value === 'number' && Number.isFinite(value) && value > 0 ? value : undefined;
|
|
40
|
+
const sanitizeAgentProfile = (value) => {
|
|
41
|
+
if (!isRecord(value)) {
|
|
42
|
+
return null;
|
|
43
|
+
}
|
|
44
|
+
const defaultSearchLimit = sanitizePositiveNumber(value.defaultSearchLimit);
|
|
45
|
+
const defaultContextTokens = sanitizePositiveNumber(value.defaultContextTokens);
|
|
46
|
+
const defaultSearchMode = typeof value.defaultSearchMode === 'string' && searchModes.has(value.defaultSearchMode)
|
|
47
|
+
? value.defaultSearchMode
|
|
48
|
+
: undefined;
|
|
49
|
+
const profile = {
|
|
50
|
+
...(defaultSearchLimit ? { defaultSearchLimit } : {}),
|
|
51
|
+
...(defaultContextTokens ? { defaultContextTokens } : {}),
|
|
52
|
+
...(defaultSearchMode ? { defaultSearchMode } : {})
|
|
53
|
+
};
|
|
54
|
+
return Object.keys(profile).length > 0 ? profile : null;
|
|
55
|
+
};
|
|
56
|
+
const sanitizeAgentProfiles = (value) => {
|
|
57
|
+
if (!isRecord(value)) {
|
|
58
|
+
return {};
|
|
59
|
+
}
|
|
60
|
+
return Object.entries(value).reduce((state, [key, profile]) => {
|
|
61
|
+
const normalizedKey = key === '*' ? '*' : sanitizeAgentId(key);
|
|
62
|
+
const sanitizedProfile = sanitizeAgentProfile(profile);
|
|
63
|
+
if (!sanitizedProfile || normalizedKey.length === 0) {
|
|
64
|
+
return state;
|
|
65
|
+
}
|
|
66
|
+
return {
|
|
67
|
+
...state,
|
|
68
|
+
[normalizedKey]: sanitizedProfile
|
|
69
|
+
};
|
|
70
|
+
}, {});
|
|
71
|
+
};
|
|
25
72
|
const readAllowedVaultsFromEnv = () => (process.env.BRAINLINK_ALLOWED_VAULTS ?? '')
|
|
26
73
|
.split(',')
|
|
27
74
|
.map((value) => value.trim())
|
|
@@ -39,6 +86,34 @@ const readJsonConfig = async (path) => {
|
|
|
39
86
|
throw error;
|
|
40
87
|
}
|
|
41
88
|
};
|
|
89
|
+
export const getGlobalConfigPath = () => join(getBrainlinkHomePath(), globalConfigFilename);
|
|
90
|
+
export const getLocalConfigPath = (cwd = safeCwd()) => resolve(cwd, localConfigFilename);
|
|
91
|
+
export const resolveConfigPath = (scope, cwd = safeCwd()) => scope === 'global' ? getGlobalConfigPath() : getLocalConfigPath(cwd);
|
|
92
|
+
export const loadRawConfig = async (scope, cwd = safeCwd()) => readJsonConfig(resolveConfigPath(scope, cwd));
|
|
93
|
+
export const loadLegacyLocalRawConfig = async (cwd = safeCwd()) => readJsonConfig(resolve(cwd, '.brainlink.json'));
|
|
94
|
+
export const detectVaultConfigSource = async (cwd = safeCwd()) => {
|
|
95
|
+
const [globalConfig, localConfig, legacyLocalConfig] = await Promise.all([
|
|
96
|
+
loadRawConfig('global', cwd),
|
|
97
|
+
loadRawConfig('local', cwd),
|
|
98
|
+
loadLegacyLocalRawConfig(cwd)
|
|
99
|
+
]);
|
|
100
|
+
if (typeof legacyLocalConfig.vault === 'string' && legacyLocalConfig.vault.trim().length > 0) {
|
|
101
|
+
return 'local-legacy';
|
|
102
|
+
}
|
|
103
|
+
if (typeof localConfig.vault === 'string' && localConfig.vault.trim().length > 0) {
|
|
104
|
+
return 'local';
|
|
105
|
+
}
|
|
106
|
+
if (typeof globalConfig.vault === 'string' && globalConfig.vault.trim().length > 0) {
|
|
107
|
+
return 'global';
|
|
108
|
+
}
|
|
109
|
+
return 'default';
|
|
110
|
+
};
|
|
111
|
+
export const writeRawConfig = async (scope, value, cwd = safeCwd()) => {
|
|
112
|
+
const path = resolveConfigPath(scope, cwd);
|
|
113
|
+
await mkdir(dirname(path), { recursive: true, mode: globalConfigDirectoryMode });
|
|
114
|
+
await writeFile(path, `${JSON.stringify(value, null, 2)}\n`, { encoding: 'utf8', mode: globalConfigFileMode });
|
|
115
|
+
return path;
|
|
116
|
+
};
|
|
42
117
|
const sanitizeConfig = (value) => ({
|
|
43
118
|
...defaultBrainlinkConfig,
|
|
44
119
|
...value,
|
|
@@ -56,11 +131,22 @@ const sanitizeConfig = (value) => ({
|
|
|
56
131
|
allowedVaults: [...sanitizeAllowedVaults(value.allowedVaults), ...readAllowedVaultsFromEnv()],
|
|
57
132
|
chunkSize: typeof value.chunkSize === 'number' && value.chunkSize > 0 ? value.chunkSize : defaultBrainlinkConfig.chunkSize,
|
|
58
133
|
embeddingProvider: sanitizeEmbeddingProvider(value.embeddingProvider),
|
|
59
|
-
defaultSearchMode: sanitizeSearchMode(value.defaultSearchMode)
|
|
134
|
+
defaultSearchMode: sanitizeSearchMode(value.defaultSearchMode),
|
|
135
|
+
agentProfiles: sanitizeAgentProfiles(value.agentProfiles)
|
|
60
136
|
});
|
|
61
|
-
export const
|
|
62
|
-
const
|
|
63
|
-
const
|
|
137
|
+
export const resolveAgentRuntimeDefaults = (config, agent) => {
|
|
138
|
+
const normalizedAgent = agent?.trim().length ? sanitizeAgentId(agent) : undefined;
|
|
139
|
+
const profile = (normalizedAgent ? config.agentProfiles[normalizedAgent] : undefined) ?? config.agentProfiles['*'];
|
|
140
|
+
return {
|
|
141
|
+
defaultSearchLimit: profile?.defaultSearchLimit ?? config.defaultSearchLimit,
|
|
142
|
+
defaultContextTokens: profile?.defaultContextTokens ?? config.defaultContextTokens,
|
|
143
|
+
defaultSearchMode: profile?.defaultSearchMode ?? config.defaultSearchMode
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
export const loadBrainlinkConfig = async (cwd = safeCwd()) => {
|
|
147
|
+
const globalConfig = await readJsonConfig(getGlobalConfigPath());
|
|
148
|
+
const localConfigs = await Promise.all(configFilenames.map((filename) => readJsonConfig(resolve(cwd, filename))));
|
|
149
|
+
const merged = [globalConfig, ...localConfigs].reduce((state, config) => ({
|
|
64
150
|
...state,
|
|
65
151
|
...config
|
|
66
152
|
}), {});
|