lorekeeper-link-memories — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited lorekeeper-link-memories (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use lore_recommend_links to find high-confidence link candidates between memories, then confirm them via lore_insert.
lore_reflect + lore_insert creates new facts; follow up with lore_recommend_links on key new memorieslore_recommend_links on orphaned memories (those with links: [] in search results)candidates = mcp_lore_recommend_links(lore_id="<memory-id>")Optional top_k parameter overrides the max candidates returned.
Each candidate has:
weighted_score (0.0–1.0): combined score from all 4 signals (cosine, BM25, entity overlap, temporal proximity)scores: per-signal breakdown for transparencyThe agent evaluates candidates itself — it already has an LLM. lore_recommend_links only surfaces the data.
depends_on for dependencies, references for generic relationssupersedes for newer versions replacing older onescontradicts when two memories make conflicting claims about the same thinglore_recommend_links never writes anything. To create a link:
mcp_lore_insert(
links=[{
"source_memory_id": "<source-id>",
"target_memory_id": "<target-id>",
"relation_type": "references",
"reason": "similar topic about Python web frameworks"
}]
)| Type | Meaning |
|---|---|
references | Mentions or cites — clean default for most links |
depends_on | Requires or builds upon another memory |
supersedes | Newer memory that replaces an older one |
contradicts | Conflicting claims between memories |
part_of | Hierarchical composition — child belongs to parent |
derived_from | Based on, inferred from, or generalised from another |
causes | Direct causal relationship |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.