save-context — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited save-context (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.
This skill captures the live conversation state into CogmemAi so it survives context compaction, the end of the session, or a switch to a different agent.
Trigger on any of these signals:
Pick the right tool for the volume of information:
extract_memoriesWhen the conversation covers several distinct facts (decisions, preferences, constraints, file paths, bugs), call extract_memories once. It identifies and saves each fact with the right type, importance, and tags automatically.
Faster and more thorough than calling save_memory five times.
save_memoryWhen there's one specific thing to capture, use save_memory with:
content — one or two sentences, concrete and self-containedmemory_type — pick from: architecture, decision, preference, bug, dependency, pattern, context, identity, session_summary, task, correction, reminderimportance — 1-10 (see the cogmemai-memory skill for the scoring guide)scope — project (default) or global if the fact applies everywheretags — short labels for grouping related memoriessave_session_summaryWhen wrapping up, call save_session_summary to capture what was accomplished, decisions made, and concrete next steps. The next session will see this immediately via get_project_context.
Save:
Do not save:
save_task)The user has been deep in a debugging session. The conversation is 80k tokens and may compact soon. Call extract_memories to preserve the root cause, the fix, and the verification steps so the next session can pick up cleanly.
The user just decided to switch from REST to GraphQL for the new service. Call save_memory with:
memory_type: "decision"importance: 9content: "API for the orders service uses GraphQL (decided 2026-05-13). Why: client needs nested resource fetching in one request to keep mobile latency under 200ms."Planning produced 4 decisions, 2 constraints, and a list of file paths to touch. Call extract_memories once to capture all of them, then start the implementation phase with the planning context preserved.
CogmemAi memories survive everything that can erase your in-context knowledge:
Saving context is the single highest-leverage action you can take to prevent re-discovery work in the next session.
cogmemai-memory — full reference for memory managementsession-start — load saved context at the start of a sessionremember-this — quick save when the user explicitly askssave-bugfix — specialized save for "we fixed this before" debugging memories~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.