provenance-grounded-memory — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited provenance-grounded-memory (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.
Build memory around evidence before belief. Persistent agents need memory that can be retrieved, audited, updated, corrected, and erased without collapsing raw evidence, derived beliefs, retrieval logic, and answer policy into one opaque prompt path.
Activate when:
Raw evidence (immutable)
-> typed signals and hard anchors
-> candidate canonical facts
-> provenance validation
-> novelty-aware write gate
-> ADD
-> NOOP
-> UPDATE / MERGE with LLM only when uncertain
-> canonical fact store linked to evidence
-> deterministic multi-route retrieval
-> bounded retrieved context
-> separate answer policy and answer modelwhether the source statement is world-level truth.
the answer model.
facts, or route every candidate through expensive LLM deliberation.
ADD, clearly redundantfacts as NOOP, and send ambiguous cases to an UPDATE or merge path.
evidence:
id: evidence-001
uri: source-or-session
content_hash: sha256
captured_at: ISO-8601
immutable: true
deletion_scope: user|project|organization
fact:
id: fact-001
statement: text
evidence_ids: [evidence-001]
entity_scope: []
temporal_scope: {}
typed_signals: []
status: active|superseded|deleted|needs-review
confidence: 0.0
last_verified_at: ISO-8601Store the original source before extraction. Preserve source ID, capture time, content hash, access scope, and deletion semantics.
Detect signals such as:
Validate derived facts against source support before promotion.
Compute a novelty score against the current memory scope. Use an adaptive threshold that changes as store density changes.
if store is empty:
ADD
elif novelty >= threshold + uncertainty_margin:
ADD
elif novelty < threshold:
NOOP
else:
UPDATE_OR_MERGE_WITH_LLMThe exact scoring function is implementation-specific. SAGE uses a von Mises-Fisher density estimate over normalized memory embeddings. Do not invent universal thresholds; calibrate on a deployment-specific split.
Every promoted fact must retain:
Combine bounded routes such as:
Return retrieved evidence separately from answer instructions.
For each wrong answer, classify:
| Layer | Failure |
|---|---|
| Evidence capture | Original evidence missing |
| Extraction | Unsupported or omitted fact |
| Write gate | Wrong ADD, NOOP, or UPDATE decision |
| Canonical store | Stale, contradictory, or duplicated state |
| Retrieval | Relevant fact not selected within budget |
| Answer policy | Evidence received but misused, overgeneralized, or refused incorrectly |
Deletion is first-class:
Created: 2026-06-02 Version: 1.0.0
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.