journal-recall

journal-recall is a skill for Claude Code, Codex from backspace-shmackspace/claude-devkit. It costs 87 tokens per session (1,805 once invoked), scanned A, original, MIT.

A journal search and summary skill for finding past entries by date, keyword, topic, project, or entry type. It can also summarize a week or retrieve meetings and decisions.

In plain words
What is it for?
Use it to look up daily notes, meetings, projects, learnings, and decisions in the journal directory.
Why use it?
It avoids manually searching old journal files when you need to remember past work or choices.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/backspace-shmackspace/claude-devkit/journal-recall
Any agent
npx skills add backspace-shmackspace/claude-devkit --skill journal-recall
Clone the repo
git clone --depth 1 https://github.com/backspace-shmackspace/claude-devkit

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 journal-recall

README.md
[![agentmods](https://agentmods.dev/badge/skills/backspace-shmackspace/claude-devkit/journal-recall.svg)](https://agentmods.dev/skills/backspace-shmackspace/claude-devkit/journal-recall)
Your own site
<a href="https://agentmods.dev/skills/backspace-shmackspace/claude-devkit/journal-recall"><img src="https://agentmods.dev/badge/skills/backspace-shmackspace/claude-devkit/journal-recall.svg" alt="Measured on agentmods" height="20"></a>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,805 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00087 $0.01805
Opus 5 $0.00044 $0.00903
Sonnet 5 $0.00017 $0.00361
Haiku 4.5 $0.00009 $0.00180

Measured 5d ago against content hash 876cd045e919, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

journal-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 5d 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.

contrib/journal-recall/SKILL.md · 184 lines

How it starts

The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/journal-recall Workflow

Inputs

User provides:

  • Natural language query describing what to find (date, keyword, topic, project, etc.)
  • Optional: date range, entry type filter, project name

Scope parameters:

  • JOURNAL_BASE: ~/journal/ (hardcoded, matches /journal skill)
  • Entry types: daily, meetings, projects, learnings, decisions
  • Search modes: date lookup, date range, keyword search, topic search, project filter, weekly review

Step 0 — Classify Intent

Action: Determine what type of retrieval the user wants.

Intent classification:

  1. Specific date lookup: User mentions a date ("yesterday", "Feb 23", "2026-02-22", "last Tuesday")
  2. Date range: User mentions a span ("this week", "last month", "between X and Y")
  3. Keyword search: User provides search terms ("worktree isolation", "Docker socket")
  4. Topic/project: User asks about a specific topic or project ("what did I do on claude-devkit?")
  5. Meeting lookup: User asks about meetings ("what meetings did I have?", "standup notes")
  6. Weekly review: User asks for a summary ("summarize this week", "weekly review", "what happened this week")
  7. Project status: User asks about a project's current state ("what's the status of X?", "where am I on X?")

Disambiguation:

  • If intent unclear, default to keyword search across all entries
  • For time-based queries, resolve relative dates ("yesterday" = YYYY-MM-DD, "this week" = past 7 days)

Tool declarations: Bash (date calculations for relative dates)

Output: Search intent classification and search parameters

Step 1 — Retrieve Entries

Action: Use appropriate tools to find and read matching journal entries.

Retrieval strategies by intent:

Specific date lookup:

  • Read daily/YYYY-MM-DD.md directly
  • If date is in past and daily entry doesn't exist, report "No daily entry for YYYY-MM-DD"
  • Also check for meetings/decisions on that date using Glob: meetings/YYYY-MM-DD-*.md, decisions/YYYY-MM-DD-*.md

Read the full file on GitHub · 184 lines

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. 5d ago First seen · 184 lines · 87 tokens per session scan A 876cd045e919

Subscribe to this mod's changes

journal-recall is a skill published in the GitHub repository backspace-shmackspace/claude-devkit (15 stars, last pushed 11d ago), licensed MIT. It adds 87 tokens to every session and 1,805 once invoked, about $0.0004 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.

Related

Other skills, from other repositories

capture-to-vault

Use during /research, /scope (or any recipe) to write or update a vault note via dossier-mcp. Agent drafts slug + frontmatter + body + citations, writes the note, and surfaces what was captured so the user can redirect afterward. Supports create (new note) and update (refine existing note) modes.

ethanaubuchon/dossier-tradecraft · 72 tokens

load-context

Use at the start of /research and other workflow recipes to establish vault grounding. Loads vault bootstrap (profile.md), checks inbox, and pre-warms project context if a topic anchor is implied. Repo/git detection lands with /plan and /implement.

ethanaubuchon/dossier-tradecraft · 53 tokens

golang-security

Security best practices and vulnerability prevention for Golang. Covers injection (SQL, command, XSS), cryptography, filesystem safety, network security, cookies, secrets management, memory safety, and logging. Apply when writing, reviewing, or auditing Go code for security, or when working on any risky code involving…

FilippoDeSilva/skills · 86 tokens

company-brain

Your team's shared, AI-ready knowledge base — people, companies, meetings, SOPs, and decisions structured so Claude can answer questions on your team's behalf. Team-scope sibling to second-brain (which is personal-scope). Seven modes — capture (drop something into the right structured dir), compile (process into wiki…

coreyhaines31/makerskills · 322 tokens

compound-docs

Searchable Elixir/Phoenix/Ecto solution documentation system with YAML frontmatter. Builds institutional knowledge from solved problems. Use when consulting past solutions before investigating new issues.

oliver-kriska/claude-elixir-phoenix · 38 tokens

claude-md-updater

Scans the session for lessons and workflows, then proposes scoped CLAUDE.md edits. Use for save this lesson or add to context.

jamditis/claude-skills-journalism · 34 tokens