memo-eod

memo-eod is a command for Claude Code from bakabaka91/claude-baton. It costs 0 tokens per session (437 once invoked), scanned A, original, MIT.

A command that prepares an end-of-day summary from a project’s Git history and saved checkpoints. It groups commits, reviews recent changed files, and combines that information into a report.

In plain words
What is it for?
Use it to summarize the day’s commits, changed files, decisions, and project work for a specific repository.
Why use it?
It turns scattered development activity into a single record of what was built, decided, and left unfinished. This makes daily progress easier to review.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md).

Good fit Use it to summarize the day’s commits, changed files, decisions, and project work for a specific repository.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/bakabaka91/claude-baton/memo-eod
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.

Clone the repo
git clone --depth 1 https://github.com/bakabaka91/claude-baton

Made for: Claude Code.

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 memo-eod

README.md
[![agentmods](https://agentmods.dev/badge/commands/bakabaka91/claude-baton/memo-eod.svg)](https://agentmods.dev/commands/bakabaka91/claude-baton/memo-eod)
Your own site
<a href="https://agentmods.dev/commands/bakabaka91/claude-baton/memo-eod"><img src="https://agentmods.dev/badge/commands/bakabaka91/claude-baton/memo-eod.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 437 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.
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.00000 $0.00437
Opus 5 $0.00000 $0.00218
Sonnet 5 $0.00000 $0.00087
Haiku 4.5 $0.00000 $0.00044

Measured 5d ago against content hash 7193165da7e8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

memo-eod 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.

commands/memo-eod.md · 49 lines

What it actually says

End-of-day summary combining git activity with stored checkpoints.

Important: Run all git commands exactly as written below — do NOT add -C flags or path arguments. The working directory is already the project root.

Steps

  1. Detect the project from the current working directory.

  2. Collect git activity for today by running (replace YYYY-MM-DD with today's actual date as a literal string — do NOT use $() command substitution):

    • git log --since="YYYY-MM-DD 00:00:00" --until="YYYY-MM-DD 23:59:59" --format="%h|||%s|||%ai|||%an" --all
    • Parse and group commits by conventional commit prefix (feat/fix/chore/refactor/test/docs).
  3. Review changed files:

    • git diff --name-only HEAD~10 HEAD
  4. Call the daily_summary MCP tool (defaults to today). This internally gathers checkpoints and sends them to Sonnet for synthesis, then stores the result.

  5. Merge git activity from step 2 with the daily_summary output.

  6. Display formatted summary:

## 📊 EOD Summary — [Project Name] — [DATE]

### 🏗️ What Was Built / Shipped
[Commits grouped by area + what_was_built from daily_summary]

### 🧭 Decisions Made
[From daily_summary + checkpoint decisions]

### 🚧 Blockers and Failures
[From daily_summary blockers -- or "✅ None"]

### 🔮 Open Questions / Tomorrow
[next_steps from daily_summary]

### 📈 Git Stats
- 📝 Commits today: [count]
- 📁 Files changed: [count]
- 🏷️ Feature areas: [list of commit prefixes]

### 💰 Baton Usage
- LLM calls today: [usage.llm_calls_today from daily_summary response] ([N] auto-checkpoints + 1 EOD)
- Database: [usage.db_size from daily_summary response]
  1. Confirm: "✅ EOD saved for [Project Name] — [DATE]. [N] commits today."
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 · 49 lines · 0 tokens per session scan A 7193165da7e8

Subscribe to this mod's changes

memo-eod is a command published in the GitHub repository bakabaka91/claude-baton (25 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 437 tokens. 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-09-01.