knowledge-graph — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited knowledge-graph (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.
Maintain a lightweight, append-only entity graph that compounds durable facts across sessions.
Store the graph under:
<workspace>/life/areas/
people/<slug>/
companies/<slug>/
projects/<slug>/Each entity folder should contain:
summary.md for the short, current snapshotfacts.jsonl for atomic, append-only factsUse one JSON object per line:
{
"id": "<slug>-NNN",
"fact": "Plain-English fact",
"category": "relationship|milestone|status|preference|context|decision",
"ts": "YYYY-MM-DD",
"source": "conversation|manual|inference",
"status": "active|superseded",
"supersedes": "<older-id>"
}Durable facts usually include:
facts.jsonl.summary.md in 3 to 8 concise lines.summary.md first.facts.jsonl only if the summary is stale or the user asked for detail.Recall should be triggered, not automatic.
Create the core directories once:
mkdir -p life/areas/people life/areas/companies life/areas/projectsIf multiple agents share one workspace, point them at the same life/ directory so they operate on the same entity store.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.