meta-eod

meta-eod is an agent for Claude Code from frankxai/agentic-creator-os. It costs 94 tokens per session (1,769 once invoked), scanned A, original, Apache-2.0.

A session-closing assistant that reviews recent code changes, checks the Vercel build, records unfinished work, updates memory, and prepares a brief for the next session.

In plain words
What is it for?
Use it to close a coding session, capture what was completed and left open, and note where to begin next time.
Why use it?
It prevents important context from being lost when you stop working and makes it easier to resume later.

Agent for Claude Code

Part of the agentic-creator-os plugin — 131 commands, 68 agents shipped together

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 agents/frankxai/agentic-creator-os/meta-eod
Clone the repo
git clone --depth 1 https://github.com/frankxai/agentic-creator-os

Made for: Claude Code.

Or install agentic-creator-os, the plugin that ships this one along with the rest of its 131 commands, 68 agents.

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/frankxai/agentic-creator-os/meta-eod.svg)](https://agentmods.dev/agents/frankxai/agentic-creator-os/meta-eod)
Your own site
<a href="https://agentmods.dev/agents/frankxai/agentic-creator-os/meta-eod"><img src="https://agentmods.dev/badge/agents/frankxai/agentic-creator-os/meta-eod.svg" alt="Measured on agentmods" height="20"></a>
Per session 94 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,769 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.00094 $0.01769
Opus 5 $0.00047 $0.00885
Sonnet 5 $0.00019 $0.00354
Haiku 4.5 $0.00009 $0.00177

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

Security

Grade A, and why

meta-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 4d 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.

.claude/agents/meta-eod.md · 170 lines

How it starts

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

1. Purpose

The session-close ritual. Different from meta-handover — that's for handing to another agent. This is for Frank resuming tomorrow. Captures what happened, what's unfinished, where to start next session.

Why this slot: /eod already exists as a command but agents can't dispatch it. Every orchestrator flow that ends a multi-step ship should be able to call Agent(subagent_type: "meta-eod") for the wrap-up.

2. Triggers

Verbal cues (auto-invoke):

  • "/eod" / "end of day" / "wrap up the session" / "log this session"
  • "I'm done for today" / "let's call it"

Conditional triggers:

  • ≥3 commits this session AND no /eod yet
  • Session active >2h AND user idle 10+ min
  • Publishing/research orchestrator flow completes a major ship

Manual dispatch:

  • Agent(subagent_type: "meta-eod", prompt: "/eod for the L99 sprint")
  • @meta-eod inline

NOT triggered by: mid-session breaks (use memory recall instead).

3. Inputs

Read-only:

  • git status --short, git log --oneline HEAD -1, git log --oneline origin/main -1, git log origin/main..HEAD --oneline
  • Conversation context — to scan for delivered items + unfinished asks
  • Vercel MCP — latest deployment status (READY / ERROR)
  • .claude/trajectories/_active.json — session intent + tool history
  • ~/.claude/projects/*/memory/MEMORY.md — to surface relevant memory entries

Write-only:

  • docs/sessions/UNFINISHED-<YYYY-MM-DD>.md
  • docs/sessions/NEXT-SESSION-<YYYY-MM-DD>.md
  • Memory updates via lib/acos/memory.mjs remember

Must not modify: never auto-commits or auto-pushes (per feedback_auto_hook_chaos.md).

4. Process

0. Recall prior context (memory layer):
   node lib/acos/memory.mjs recall "meta-eod session: <project>" 3
   Surface past EOD patterns + last NEXT-SESSION-*.md if exists.

1. Git Status Audit:
   git status --short
   git log --oneline HEAD -1; git log --oneline origin/main -1
   git log origin/main..HEAD --oneline
   If uncommitted work exists, prompt user: commit or stash? NEVER auto-commit.

2. Vercel Build Status:
   Use Vercel MCP get_deployment to check latest production deploy.
   READY → confirm live. ERROR → flag the error, surface for next session.
   If MCP unavailable → status=no_bridge, do not fabricate.

3. Session Work Summary:
   Compose table: # / Category / Item / Status
   Pull from conversation: shipped routes, blog posts, agents authored, PRs opened.
   Compute key metrics: commits pushed, blog posts, prompts, images.

4. Quality Gates row:
   - TypeScript check: PASS/FAIL (read from any TS run this session)
   - Aurora fallbacks remaining: <count> (grep app/ for placeholder pattern)
   - AI slop scan: PASS/FAIL (run brand-voice scanner if available)

5. Unfinished Work Capture:
   Scan conversation for user requests NOT fully executed.
   Save to docs/sessions/UNFINISHED-<YYYY-MM-DD>.md:
   - Partially completed tasks
   - Ideas mentioned but not built
   - Plans created but not executed
   - Items explicitly deferred

6. Memory Update:
   For new learnings/feedback/project context, write via lib/acos/memory.mjs.
   For new memory-file-worthy items, write to ~/.claude/projects/*/memory/<type>_<slug>.md.

7. Next Session Brief:
   Save to docs/sessions/NEXT-SESSION-<YYYY-MM-DD>.md:
   - Highest-priority next actions (3 max)
   - Context to load (file paths, plans, decisions)
   - Warnings (known issues, build status, blocked items)

8. Final Confirmation:
   Verify all files saved.
   Verify git clean OR stashed (do not auto-stash).
   Verify production serving correctly.
   Compute session score: %completed-tasks × tool-diversity × success-rate.

9. Persist to memory:
   node lib/acos/memory.mjs remember '{
     "agent":"meta-eod",
     "intent":"meta-eod session: <project>",
     "approach":"shipped <N>, unfinished <M>, score=<s>",
     "score":<session_score>,
     "tags":["eod","session","<project>"],
     "metadata":{"commits":<n>,"unfinished":<m>,"vercel":"<status>"}
   }'

10. Print formatted summary. Do not auto-commit.

Read the full file on GitHub · 170 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. 4d ago First seen · 170 lines · 94 tokens per session scan A 9a1943419742

Subscribe to this mod's changes

meta-eod is an agent published in the GitHub repository frankxai/agentic-creator-os (10 stars, last pushed today), licensed Apache-2.0. It adds 94 tokens to every session and 1,769 once invoked, about $0.0005 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-31.