Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
/plugin marketplace add vshulcz/deja-vunpx agentmods add plugins/vshulcz/deja-vu/claude-plugingit clone --depth 1 https://github.com/vshulcz/deja-vuGrade A, and why
claude-plugin scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.
{
"name": "deja-vu",
"version": "0.19.1",
"description": "Memory for AI coding agents: your own past sessions, recalled before you ask.",
"author": {
"name": "vshulcz",
"url": "https://github.com/vshulcz"
},
"homepage": "https://github.com/vshulcz/deja-vu",
"repository": "https://github.com/vshulcz/deja-vu",
"license": "MIT",
"skills": "./skills/",
"hooks": {
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/deja.sh hook-context",
"timeout": 10,
"statusMessage": "Recalling past sessions\u2026"
}
]
}
],
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/deja.sh hook-prompt",
"timeout": 10,
"statusMessage": "Searching past sessions\u2026"
}
]
}
],
"PreCompact": [
{
"matcher": "manual|auto",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/deja.sh hook-precompact",
"timeout": 10,
"statusMessage": "Saving this session to memory\u2026"
}
]
}
],
"PreToolUse": [
{
"matcher": "Bash|Edit|Write|MultiEdit|NotebookEdit|Task|Agent",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/deja.sh hook-tool",
"timeout": 10,
"statusMessage": "Checking what this touches\u2026"
}
]
}
],
"PostToolUse": [
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/deja.sh hook-tool-after",
"timeout": 10,
"statusMessage": "Checking what fixed this before\u2026"
}
]
}
]
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 85 lines scan A b3dcd8d20f04
claude-plugin is a plugin published in the GitHub repository vshulcz/deja-vu (740 stars, last pushed 2d ago), licensed MIT. Its token cost is not measured: this kind of file is read by the harness, not the model. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other plugins, from other repositories
iai-memory
Persistent local memory for your assistant: every turn captured verbatim, relevant memory injected at session start and before each turn, and fifteen memory tools over MCP. Requires the iai-pme package (pip install iai-pme).
emulo
Mine real AI coding sessions into a bounded, evidence-backed personal layer.
perenna
A lightweight, Git-backed permanent memory for AI agents.
commitlore
Recorded decisions from git history, delivered to the agent before it edits. Constraints, alternatives already ruled out, and warnings left by whoever was here last.
memseek-memory
Durable, provenance-aware project memory for Claude Code.
memxt
Persistent, private, local-first memory for Claude Code. Your agent remembers your code and decisions across sessions — one static binary, no cloud, nothing leaves your machine.