Topics met learning_relevance="exclude" of relevance_locked=true werden door de Full Analysis stilletjes verwijderd: het model zag exclude als "irrelevant" en stelde ze voor in actions.deletions / actions.merges, en analyzeGraph paste die zonder filter toe. Het locked-vlaggetje werd in full-scope payload niet eens meegestuurd, dus zelfs een nieuwe prompt kon niet helpen. Defense-in-depth fixes: 1. Pure graphGuard.filterAiActions strips elke deletion/merge waarvan de target excluded of locked is, vóór bulkSave. Merges waarin een protected topic juist de keepId is (canonical survivor) blijven door. 2. SYSTEM_PROMPTS.full krijgt een expliciete "PROTECTED TOPICS" sectie die exclude en locked topics als nooit-te-verwijderen markeert. 3. relevance_locked wordt nu ook in de full-scope compactTopics payload meegestuurd, zodat het model de vlag überhaupt ziet. 4. UI-feedback: GraphControls toont een ShieldCheck banner met aantal geblokkeerde acties na de analyze, en het excluded-aantal naast de "Show Excluded Nodes" toggle (visible/hidden). 5. 13 nieuwe Vitest cases dekken protected detection en alle drop/keep paden van filterAiActions. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
82 lines
2.8 KiB
JavaScript
82 lines
2.8 KiB
JavaScript
/**
|
|
* Knowledge-graph safety guards.
|
|
*
|
|
* The "Full Analysis" pass lets the LLM propose `merges` (collapse two topics
|
|
* into one) and `deletions` (drop a topic entirely). Both are destructive and
|
|
* persisted via bulkSave → db.saveTopics, which wipes-and-rewrites the
|
|
* `topics` collection.
|
|
*
|
|
* Two classes of topic must NEVER be removed by an AI suggestion:
|
|
*
|
|
* 1. `learning_relevance === 'exclude'`
|
|
* Reference material — kept on purpose, surfaced only to R42 search,
|
|
* intentionally excluded from theme topics. An admin made this choice;
|
|
* the AI's "irrelevant" judgement must not override it.
|
|
*
|
|
* 2. `relevance_locked === true`
|
|
* Admin pinned this row's relevance. By extension the row itself is
|
|
* also pinned — deleting it would be a louder change than re-scoring it.
|
|
*
|
|
* `filterAiActions` strips any merge/deletion that would touch a protected id
|
|
* BEFORE it reaches bulkSave. The model still gets to suggest them (we can't
|
|
* stop it generating), but those suggestions are dropped client-side.
|
|
*
|
|
* The function is intentionally pure so it is trivially unit-testable.
|
|
*/
|
|
|
|
/**
|
|
* @param {{ learning_relevance?: string, relevance_locked?: boolean }} topic
|
|
*/
|
|
export function isProtectedTopic(topic) {
|
|
if (!topic) return false;
|
|
if (topic.learning_relevance === 'exclude') return true;
|
|
if (topic.relevance_locked === true) return true;
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Strip protected topics out of `actions.deletions` and `actions.merges`.
|
|
*
|
|
* Merges have two ids:
|
|
* - `keepId` — the survivor
|
|
* - `deleteId` — gets removed and its relations re-pointed
|
|
*
|
|
* If `deleteId` is protected we drop the entire merge (we will not delete a
|
|
* protected topic, even to consolidate it). If `keepId` is protected we keep
|
|
* the merge — folding others into a protected canonical topic is fine.
|
|
*
|
|
* @param {object[]} currentTopics
|
|
* @param {{ merges?: {keepId: string, deleteId: string}[], deletions?: string[], newRelations?: object[], relevanceUpdates?: object[] }} actions
|
|
* @returns {{ filtered: object, dropped: { deletions: string[], merges: object[] } }}
|
|
*/
|
|
export function filterAiActions(currentTopics, actions) {
|
|
const byId = new Map(currentTopics.map(t => [t.id, t]));
|
|
const isProtected = (id) => isProtectedTopic(byId.get(id));
|
|
|
|
const droppedDeletions = [];
|
|
const keptDeletions = [];
|
|
for (const id of actions?.deletions ?? []) {
|
|
if (isProtected(id)) droppedDeletions.push(id);
|
|
else keptDeletions.push(id);
|
|
}
|
|
|
|
const droppedMerges = [];
|
|
const keptMerges = [];
|
|
for (const m of actions?.merges ?? []) {
|
|
if (isProtected(m?.deleteId)) droppedMerges.push(m);
|
|
else keptMerges.push(m);
|
|
}
|
|
|
|
return {
|
|
filtered: {
|
|
...(actions || {}),
|
|
deletions: keptDeletions,
|
|
merges: keptMerges,
|
|
},
|
|
dropped: {
|
|
deletions: droppedDeletions,
|
|
merges: droppedMerges,
|
|
},
|
|
};
|
|
}
|