session-start — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited session-start (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.
Run this skill at the start of every session, before responding to the user's first message. It loads the most important memories from prior sessions for the current project, so the assistant can pick up exactly where the last session left off.
Call get_project_context. Optional but useful: pass a context parameter describing the current task, which biases the returned memories toward what's most relevant.
get_project_context({
context: "implementing the new payments flow"
})The response includes:
health_score (0-100) indicating overall memory qualityset_reminderget_tasks (or the embedded task list) shows in-progress or todo items, surface them to the user as "here's what was open" so the user can choose what to tackle.Without get_project_context at session start:
With it:
When Claude Code or any agent compacts your context mid-session (you'll see a summary of the prior conversation in your context window):
get_project_context immediately to reload memoriescontext parameter for relevanceThis recovery pattern is what turns a 200k-token conversation into one that can run indefinitely.
If get_project_context returns no memories (first session for this project):
ingest_document to extract key facts from the documentationpreference memories with scope: "project"The next session will benefit from this groundwork via this same get_project_context call.
cogmemai-memory — full reference for memory managementsave-context — preserve in-flight work during a sessionremember-this — save explicit user instructionssearch-before-debugging — recall specific past fixes when a bug appears~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.