Weekly Digests
Turns a project's full claude-mem timeline into a serial, chapter-per-ISO-week narrative built by a chained sequence of subagents.
UtilitiesAdvanced★ 90,139⑂ 7,846AI score 8/10Last updated: Aug 9, 2026
What it does
- Pulls the complete project timeline from the claude-mem worker into
.scratch/cm-timeline.md. - Splits it into per-ISO-week files (Monday start) with a dual-pass check that no observations are lost.
- Builds a weekly index README (Week | Dates | Observations | Sessions | File) as the operator's roadmap.
- Dispatches one sequential subagent per week; each inherits the previous week's
carry-forwardblock (~350-word cap, aggressive pruning of dormant arcs) so the story stays coherent. - Special handling for the first chapter (empty carry-forward), the last chapter (
## Where We Areinstead of a false ending), and the N=1 case. - Renames digests with zero-padded numeric prefixes so they sort correctly.
Who it's for
- Developers already running claude-mem who want their project history as a readable retrospective.
- Team leads who want to see cadence — surge weeks, trough weeks, recurring bugs treated as characters.
- Anyone who prefers serialized chapters over the single long
timeline-report.
Examples
- "Make weekly digests for this project from beginning to end" → 30 week files, 30 chapters, named
00-…mdthrough29-…md. - A 3-week project: chapter 1 establishes cast and tone, chapter 2 continues, chapter 3 closes with
## Where We Are. - A single-week project: one chapter that is both origin and close, with no references to nonexistent chapters.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/thedotmack/claude-mem/HEAD/plugin/skills/weekly-digests/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the plugin/skills/weekly-digests folder from the GitHub repo thedotmack/claude-mem into my ~/.claude/skills/weekly-digests/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/thedotmack/claude-mem.git && mkdir -p ~/.claude/skills && cp -r claude-mem/plugin/skills/weekly-digests ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal and go to your working folder.
- Clone the repo:
git clone https://github.com/thedotmack/claude-mem.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r claude-mem/plugin/skills/weekly-digests ~/.claude/skills/ - Make sure claude-mem is installed and its worker is running:
ps aux | grep worker-service - Confirm the worker port via
CLAUDE_MEM_WORKER_PORTor~/.claude-mem/settings.json. - Start Claude Code inside your project directory and ask for "weekly digests".
- Output lands in
docs/timeline-weeks/anddocs/timeline-weeks/digests/— review it before committing.
View source on GitHub ↗License: Apache-2.0