scheduled-summary

scheduled-summary is a skill for Claude Code, Codex from moonlight-lupin/agent-skills. It costs 49 tokens per session (2,158 once invoked), scanned A, original, MIT.

A scheduled report that combines activity from several coding-agent sessions, scheduled jobs, saved memories, and logs into one digest. It can produce Markdown, JSON, or plain text for a messaging or notification channel.

In plain words
What is it for?
Use it with a cron scheduler to create periodic summaries from session databases, job-output folders, memory files, and agent logs.
Why use it?
Work spread across separate conversations and automated jobs can be easy to miss. The digest brings recent activity, unfinished tasks, and context from those places into one update.

Skill for Claude CodeCodex

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

Good fit Use it with a cron scheduler to create periodic summaries from session databases, job-output folders, memory files, and agent logs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/moonlight-lupin/agent-skills/scheduled-summary
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 moonlight-lupin/agent-skills --skill scheduled-summary
Clone the repo
git clone --depth 1 https://github.com/moonlight-lupin/agent-skills

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 scheduled-summary

README.md
[![agentmods](https://agentmods.dev/badge/skills/moonlight-lupin/agent-skills/scheduled-summary/github.svg)](https://agentmods.dev/skills/moonlight-lupin/agent-skills/scheduled-summary)
Your own site
<a href="https://agentmods.dev/skills/moonlight-lupin/agent-skills/scheduled-summary"><img src="https://agentmods.dev/badge/skills/moonlight-lupin/agent-skills/scheduled-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 scheduled-summary

Your own site · 80×15
<a href="https://agentmods.dev/skills/moonlight-lupin/agent-skills/scheduled-summary"><img src="https://agentmods.dev/badge/skills/moonlight-lupin/agent-skills/scheduled-summary.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,158 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.00049 $0.02158
Opus 5 $0.00024 $0.01079
Sonnet 5 $0.00010 $0.00432
Haiku 4.5 $0.00005 $0.00216

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

Security

Grade A, and why

scheduled-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 11d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/summarize.py, tests/test_summarize.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

productivity/scheduled-summary/SKILL.md · 245 lines

How it starts

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

Scheduled Summary

Overview

Messaging platforms are excellent for one active conversation, but they hide the activity that happened elsewhere: other sessions, scheduled jobs, saved memory, and unresolved items from earlier work. This skill creates a periodic digest that surfaces that cross-session activity in a compact format suitable for chat messaging platforms or any notification channel that accepts Markdown or plain text.

The digest is designed for a cron scheduler. It reads optional local data sources (session store, cron output directory, memory JSON files, and log file), filters activity to a configurable time window, and emits Markdown, JSON, or plain text. When no data sources are configured, it emits a template digest that an agent can fill by querying its own platform-specific session history, scheduler status, and memory tools.

Quick start

From this skill directory:

python scripts/summarize.py generate --since 24h

With explicit data sources:

python scripts/summarize.py generate \
  --since 24h \
  --sessions-db /path/to/sessions.sqlite \
  --cron-dir /path/to/cron-output \
  --memory-dir /path/to/memory-json \
  --log-file /path/to/agent.log

Show current configuration and skipped sources:

python scripts/summarize.py config

Create a config template to fill in:

python scripts/summarize.py init --output .summary-config.json

What the digest includes

  1. Session activity — sessions started or completed inside the time window, plus topic titles where available.
  2. Cron job status — jobs that ran successfully, jobs that failed, and jobs marked overdue by their output files.
  3. Memory changes — new saved memories and updated facts from JSON records.
  4. Tool usage — most-used tools, total calls, and error counts from a text or JSONL log file.
  5. Outstanding items — due decision reviews, incomplete tasks, and TODO-like items found in session transcripts.
  6. Time window — every section is scoped to --since (24h, 7d, 2w, etc.) unless the source explicitly marks an item overdue.

Read the full file on GitHub · 245 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 245 lines · 49 tokens per session scan A 24ab22d1f072

Subscribe to this mod's changes

scheduled-summary is a skill published in the GitHub repository moonlight-lupin/agent-skills (62 stars, last pushed 4d ago), licensed MIT. It adds 49 tokens to every session and 2,158 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.