recall-before-claim

recall-before-claim is a skill for Claude Code, Codex from Bitterbot-AI/bitterbot-desktop. It costs 45 tokens per session (430 once invoked), scanned A, original, MIT.

A guard that requires the agent to search its saved memory before sending an unsupported factual claim. It checks the claim’s subject and uses the result before the message is sent.

In plain words
What is it for?
Use it when you want factual replies to trigger memory searches automatically, while allowing opinions and other non-factual wording through.
Why use it?
It reduces confident statements that are not grounded in available information and encourages the agent to use facts it has already stored.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when you want factual replies to trigger memory searches automatically, while allowing opinions and other non-factual wording through.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bitterbot-ai/bitterbot-desktop/recall-before-claim
About the project

Bitterbot is a local-first personal AI agent that runs on a user’s devices, keeps persistent memories, performs tasks, and can exchange reusable skills with other agents. It is intended for people who want a personal assistant that remains available across conversations and activities. The catalogue entries provide instructions and agents for working with Bitterbot.

Bitterbot-AI/bitterbot-desktop · 2,462 stars · on GitHub · bitterbot.ai

Install

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.

Any agent
npx skills add Bitterbot-AI/bitterbot-desktop --skill recall-before-claim
Clone the repo
git clone --depth 1 https://github.com/Bitterbot-AI/bitterbot-desktop

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for recall-before-claim

README.md
[![agentmods](https://agentmods.dev/badge/skills/bitterbot-ai/bitterbot-desktop/recall-before-claim/github.svg)](https://agentmods.dev/skills/bitterbot-ai/bitterbot-desktop/recall-before-claim)
Your own site
<a href="https://agentmods.dev/skills/bitterbot-ai/bitterbot-desktop/recall-before-claim"><img src="https://agentmods.dev/badge/skills/bitterbot-ai/bitterbot-desktop/recall-before-claim/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for recall-before-claim

Your own site · 80×15
<a href="https://agentmods.dev/skills/bitterbot-ai/bitterbot-desktop/recall-before-claim"><img src="https://agentmods.dev/badge/skills/bitterbot-ai/bitterbot-desktop/recall-before-claim.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 430 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00045 $0.00430
Opus 5 $0.00023 $0.00215
Sonnet 5 $0.00009 $0.00086
Haiku 4.5 $0.00005 $0.00043

Measured 11d ago against content hash 7787878d4ec8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

recall-before-claim 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 11d 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.

skills/recall-before-claim/SKILL.md · 37 lines

What it actually says

recall-before-claim

This skill installs a deterministic guard around the agent's outgoing messages. When the candidate message contains a factual-assertion shape ("X is Y", "A did B") and no memory tool (memory_search / deep_recall / knowledge_graph_search) has fired in the current turn, the interceptor requires a memory_search call against the assertion's subject before the message goes out.

Why this exists

Bitterbot has a strong memory system, but it only helps the user if the agent actually consults it before making claims. In practice the agent skips memory recall a meaningful fraction of the time — relying on its in-context knowledge instead. This produces ungrounded assertions that the user has no easy way to spot.

The interceptor closes that loop without depending on the LLM remembering to do it.

What you'll see

When this fires, the agent will run a memory_search first, integrate the result, and then send. You may notice slightly longer responses to factual questions; you should notice that the agent stops making confidently wrong statements about things it actually has memory of.

How it decides not to fire

  • Opinion shapes ("I think", "maybe", "in my opinion") are skipped.
  • Questions are skipped.
  • If a memory tool already fired in the last ~30 seconds, the assertion is considered grounded.

Implementation

Built-in interceptor recall-before-claim:default lives in src/agents/skills/builtin-interceptors/recall-before-claim.ts. Fires at most 8 times per session.

Changes

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.

  1. 11d ago First seen · 37 lines · 45 tokens per session scan A 7787878d4ec8

Subscribe to this mod's changes

recall-before-claim is a skill published in the GitHub repository Bitterbot-AI/bitterbot-desktop (2,462 stars, last pushed yesterday), licensed MIT. It adds 45 tokens to every session and 430 once invoked, about $0.0002 per session on Opus 5. 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.