end-of-day-summary

end-of-day-summary is a skill for Claude Code, Codex from tomzx/agents. It costs 32 tokens per session (1,141 once invoked), scanned A, original, MIT.

A daily reporting workflow that summarizes GitHub work, Slack activity, and overall accomplishments, then creates a standup draft for the next workday. A standup is a short update about progress, plans, and blockers.

In plain words
What is it for?
Use it to produce daily activity files, record accomplishments and blockers, and prepare the next day's team update.
Why use it?
It replaces a manual daily status report assembled from several tools and helps preserve a clear timeline of work.

Skill for Claude CodeCodex

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

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is uv run skills/slack-kb-individual/collect_individual_threads.py \.

Good fit Use it to produce daily activity files, record accomplishments and blockers, and prepare the next day's team update.

Compare 6 skills from other repositories ↓
View source ↗ tomzx/agents
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/tomzx/agents
agentmods
npx agentmods add skills/tomzx/agents/end-of-day-summary

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 end-of-day-summary

README.md
[![agentmods](https://agentmods.dev/badge/skills/tomzx/agents/end-of-day-summary/github.svg)](https://agentmods.dev/skills/tomzx/agents/end-of-day-summary)
Your own site
<a href="https://agentmods.dev/skills/tomzx/agents/end-of-day-summary"><img src="https://agentmods.dev/badge/skills/tomzx/agents/end-of-day-summary/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 end-of-day-summary

Your own site · 80×15
<a href="https://agentmods.dev/skills/tomzx/agents/end-of-day-summary"><img src="https://agentmods.dev/badge/skills/tomzx/agents/end-of-day-summary.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,141 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.00032 $0.01141
Opus 5 $0.00016 $0.00571
Sonnet 5 $0.00006 $0.00228
Haiku 4.5 $0.00003 $0.00114

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

Security

Grade A, and why

end-of-day-summary 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 8d 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/end-of-day-summary/SKILL.md · 138 lines

How it starts

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

BASE_DIR=!~/.agents/scripts/get-env NOTES_DIR TODAY=!date +%Y-%m-%d YESTERDAY=!date -d "yesterday" +%Y-%m-%d TOMORROW=!date -d "tomorrow" +%Y-%m-%d YEAR=!date +%Y MONTH=!date +%m DAY=!date +%d NEXT_WORKDAY=!date -d "$([ $(date +%u) -ge 5 ] && echo "next Monday" || echo "tomorrow")" +%Y-%m-%d

Generate End-of-Day Summary

Produces structured summaries of GitHub and Slack activity for the current day, an overall accomplishments/blockers report, a timeline, and a standup draft for the next workday.

Prerequisites

  • SLACK_TOKEN, SLACK_COOKIE, and SLACK_USER in .env (same credentials used by collect_individual_threads.py)
  • gh CLI authenticated
  • summarize-github-activity script at $HOME/repos/git/personal-automation/others/summarize-github-activity
  • NOTES_DIR environment variable set (resolved via ~/.agents/scripts/get-env NOTES_DIR)
  • SLACK_USER environment variable set (resolved via ~/.agents/scripts/get-env SLACK_USER; Slack username, e.g. tom.rochette)
  • ~/.agents/scripts/get-env utility available

Pipeline

GitHub Activity --> {BASE_DIR}/{YEAR}/{MONTH}/{DAY}.github.md
Slack Activity  --> {BASE_DIR}/{YEAR}/{MONTH}/{DAY}.slack.md
Overall Summary --> {BASE_DIR}/{YEAR}/{MONTH}/{DAY}.overall.md
Timeline        --> {BASE_DIR}/{YEAR}/{MONTH}/{DAY}.timeline.md
Standup         --> {BASE_DIR}/{YEAR}/{MONTH}/{NEXT_WORKDAY}.standup.md

Steps

1. Summarize GitHub Activity

$HOME/repos/git/personal-automation/others/summarize-github-activity tomzx {TODAY} {TODAY} Shopify,shop

Write output to {BASE_DIR}/{YEAR}/{MONTH}/{DAY}.github.md.

2. Summarize Slack Activity

Collect Slack threads for {TODAY} using collect_individual_threads.py. Slack's after:/before: search operators are exclusive, so use the day before and the day after {TODAY} as bounds:

SLACK_USER=`~/.agents/scripts/get-env SLACK_USER`

uv run skills/slack-kb-individual/collect_individual_threads.py \
  --user $SLACK_USER \
  --after {YESTERDAY} --before {TOMORROW} \
  -o {BASE_DIR}/{YEAR}/{MONTH}/{DAY}.slack.jsonl

Read the full file on GitHub · 138 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. 8d ago First seen · 138 lines · 32 tokens per session scan A e67978a8df74

Subscribe to this mod's changes

end-of-day-summary is a skill published in the GitHub repository tomzx/agents (8 stars, last pushed yesterday), licensed MIT. It adds 32 tokens to every session and 1,141 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-09-03.

Related

Other skills, from other repositories

things-mac

Manage Things 3 via the things CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local Things database). Use when a user asks Otto to add a task to Things, list inbox/today/upcoming, search tasks, or inspect projects/areas/tags.

elizaOS/eliza · 67 tokens

gsd-ns-manage

Route to the appropriate management skill based on the user's intent. gsd-config (settings + advanced + integrations + profile) and gsd-workspace (new + list + remove) are post-#2790 consolidated entries.

open-gsd/gsd-core · 16 tokens

slack-tools

Slack workspace management and automation specialist.

RightNow-AI/openfang · 10 tokens

triage-inbox

Triage academic email and calendar (Gmail / Google Calendar via the session's MCP) into a prioritized digest plus a referee-obligations tracker — classifying referee requests, R&R and editor correspondence, co-author threads, seminar and conference invites, and grant/admin deadlines, and proposing a human-gated action…

pedrohcgs/claude-code-my-workflow · 132 tokens

ceo-setup

One-time onboarding for the executive/manager commitment workflow — delegation-heavy, meeting prep, decision capture, morning and evening digests. Creates a commitments project and installs two dashboard widgets. After successful setup this skill is excluded from selection until the marker file is deleted.

suyoumo/ClawProBench · 60 tokens

service-desk

Runs the IT service desk — intake, triage, prioritization, escalation, knowledge, and the metrics that improve service rather than distort it. Use this to set up or fix a service desk, design ticket priority and escalation, reduce repeat contacts, structure a knowledge base, or work out why a desk hitting its targets…

cbrock84/headcount · 73 tokens