Demo Claude Code — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Demo Claude Code (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.
SAIHM memory inside Claude Code, Cursor, and any MCP host.
A tiny MCP server that gives your AI coding assistant a persistent, client-side-encrypted memory it can remember, recall, and forget — backed by SAIHM. The memory is portable across models, non-custodial, and provably erasable.
⭐ [Star SAIHM on GitHub](https://github.com/SAIHM-Admin/saihm-mcp) and share it if it's useful — help every agent get portable, provable memory. Share on X.
Four tools — saihm_remember, saihm_recall, saihm_forget, saihm_status — all sealed client-side via @saihm/mcp-server-pro. The endpoint only ever sees ciphertext.
git clone https://github.com/citw2/demo-claude-code
cd demo-claude-code
npm installclaude mcp add saihm-memory -- node /absolute/path/to/demo-claude-code/server.mjsAdd to ~/.cursor/mcp.json (or a project .cursor/mcp.json):
{
"mcpServers": {
"saihm-memory": {
"command": "node",
"args": ["/absolute/path/to/demo-claude-code/server.mjs"]
}
}
}Now ask your assistant to remember things — they persist through the session and any model can recall them. Out of the box this uses a local, in-process blind sandbox (memory lasts for the editor session) so you can try it with zero signup.
For memory that follows you across machines and sessions — stored on the real, blind, non-custodial SAIHM endpoint — [join SAIHM](https://saihm.coti.global/join) and add env to the same config:
{
"mcpServers": {
"saihm-memory": {
"command": "node",
"args": ["/absolute/path/to/demo-claude-code/server.mjs"],
"env": {
"SAIHM_ENDPOINT_URL": "https://saihm.coti.global/mcp",
"SAIHM_AUTH_HEADER": "Bearer <your-onboard-JWT>",
"SAIHM_MASTER_SECRET_HEX": "<at least 64 hex chars, generated and held only by you>"
}
}
}
}Your master secret never leaves your machine; the endpoint stores only ciphertext.
Apache-2.0 © SAIHM
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.