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 GiulioDER/RE-callnpx agentmods add plugins/giulioder/re-call/plugingit clone --depth 1 https://github.com/GiulioDER/RE-callGrade A, and why
recall 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 yesterday.
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 — 61 lines — stays where its author put it; the contents beside it link to each section on GitHub.
{
"name": "recall",
"displayName": "RE-call",
"description": "Memory that abstains instead of guessing. Searches your project's own notes and decisions, marks a retracted claim as superseded, and refuses when nothing clears the threshold.",
"version": "0.11.0",
"author": {
"name": "Giulio D'Erme",
"url": "https://github.com/GiulioDER"
},
"homepage": "https://giulioder.github.io/RE-call/",
"repository": "https://github.com/GiulioDER/RE-call",
"license": "Apache-2.0",
"keywords": [
"memory",
"rag",
"retrieval",
"agent-memory",
"pgvector",
"postgresql",
"abstention"
],
"mcpServers": {
"memory": {
"command": "recall-mcp",
"env": {
"RECALL_SERVING_DSN": "${user_config.serving_dsn}",
"RECALL_TENANT": "${user_config.tenant}",
"RECALL_TRUST_MODE": "${user_config.trust_mode}",
"RECALL_TABLE": "${user_config.table}"
}
}
},
"userConfig": {
"serving_dsn": {
"type": "string",
"title": "PostgreSQL DSN",
"description": "The database RE-call reads. Run `recall quickstart` or `recall setup` first; both print the DSN when they finish. Looks like postgresql://recall:[email protected]:5497/recall",
"sensitive": true,
"required": true
},
"table": {
"type": "string",
"title": "Table",
"description": "The chunk table inside that database. `recall quickstart` indexes into `quickstart_chunks` so its sample corpus can never be retrieved beside your real memory; `recall setup` uses `chunks`. Getting this wrong returns no hits and no error, so it is asked rather than assumed.",
"default": "chunks"
},
"tenant": {
"type": "string",
"title": "Tenant",
"description": "Which corpus in that database to search. `recall quickstart` writes to the `quickstart` tenant; `recall setup` writes to `default`.",
"default": "default"
},
"trust_mode": {
"type": "string",
"titleWhat 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.
- yesterday First seen · 61 lines scan A c69835ab55c7
recall is a plugin published in the GitHub repository GiulioDER/RE-call (3 stars, last pushed yesterday), licensed Apache-2.0. 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-31.
Other plugins, from other repositories
cocosearch
Local-first hybrid semantic code search with dependency graphs and cross-repo search. Powered by CocoIndex, Tree-sitter, pgvector, and Ollama.
cocosearch
Plugin marketplace listing 1 plugin: cocosearch.
subcog
Persistent memory system for AI coding assistants. Captures decisions, learnings, and context from coding sessions and surfaces them when relevant.
kb-workflow
팀 지식베이스(kb MCP) 개발 워크플로 — 착수 브리핑(kb-brief) · 발생 즉시 기록(kb-log) · 원장 flush(kb-wrap) 스킬 + 기록 유실 방지 훅(Stop/SessionStart/PreCompact) + kb MCP 서버 연결. 설치 시 서버 URL/토큰을 물어본다 (로컬 compose는 기본값 엔터).
knowledge-base
Plugin marketplace listing 1 plugin: kb-workflow.
melchizedek
Persistent memory for Claude Code. Indexes your conversation transcripts and provides hybrid search (BM25 + vectors + reranker).