Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

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.

UtilitiesAdvanced90,1397,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-forward block (~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 Are instead 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

  1. "Make weekly digests for this project from beginning to end" → 30 week files, 30 chapters, named 00-…md through 29-…md.
  2. A 3-week project: chapter 1 establishes cast and tone, chapter 2 continues, chapter 3 closes with ## Where We Are.
  3. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal and go to your working folder.
  2. Clone the repo: git clone https://github.com/thedotmack/claude-mem.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r claude-mem/plugin/skills/weekly-digests ~/.claude/skills/
  5. Make sure claude-mem is installed and its worker is running: ps aux | grep worker-service
  6. Confirm the worker port via CLAUDE_MEM_WORKER_PORT or ~/.claude-mem/settings.json.
  7. Start Claude Code inside your project directory and ask for "weekly digests".
  8. Output lands in docs/timeline-weeks/ and docs/timeline-weeks/digests/ — review it before committing.
View source on GitHubLicense: Apache-2.0