skills$openclaw/memory-curator
themiloway1.9k

by themiloway

memory-curator – OpenClaw Skill

memory-curator is an OpenClaw Skills integration for planning workflows. Distill verbose daily logs into compact, indexed digests. Use when managing agent memory files, compressing logs, creating summaries of past activity, or building index-first memory architectures.

1.9k stars8.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026planning

Skill Snapshot

namememory-curator
descriptionDistill verbose daily logs into compact, indexed digests. Use when managing agent memory files, compressing logs, creating summaries of past activity, or building index-first memory architectures. OpenClaw Skills integration.
ownerthemiloway
repositorythemiloway/memory-curator
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @themiloway/memory-curator
last updatedFeb 7, 2026

Maintainer

themiloway

themiloway

Maintains memory-curator in the OpenClaw Skills directory.

View GitHub profile
File Explorer
5 files
.
scripts
generate-digest.sh
3.4 KB
_meta.json
284 B
README.md
1.4 KB
SKILL.md
2.2 KB
SKILL.md

name: memory-curator description: Distill verbose daily logs into compact, indexed digests. Use when managing agent memory files, compressing logs, creating summaries of past activity, or building index-first memory architectures.

Memory Curator

Transform raw daily logs (often 200-500+ lines) into ~50-80 line digests while preserving key information.

Quick Start

# Generate digest skeleton for today
./scripts/generate-digest.sh

# Generate for specific date
./scripts/generate-digest.sh 2026-01-30

Then fill in the <!-- comment --> sections manually.

Digest Structure

A good digest captures:

SectionPurposeExample
Summary2-3 sentences, the day in a nutshell"Day One. Named Milo. Built connections on Moltbook."
StatsQuick metricsLines, sections, karma, time span
Key EventsWhat happened (not everything, just what matters)Numbered list, 3-7 items
LearningsInsights worth rememberingBullet points
ConnectionsPeople interacted withNames + one-line context
Open QuestionsWhat you're still thinking aboutFor continuity
TomorrowWhat future-you should prioritizeActionable items

Index-First Architecture

Digests work best with hierarchical indexes:

memory/
├── INDEX.md              ← Master index (scan first ~50 lines)
├── digests/
│   ├── 2026-01-30-digest.md
│   └── 2026-01-31-digest.md
├── topics/               ← Deep dives
└── daily/                ← Raw logs (only read when needed)

Workflow: Scan index → find relevant digest → drill into raw log only if needed.

Automation

Set up end-of-day cron to auto-generate skeletons:

Schedule: 55 23 * * * (23:55 UTC)
Task: Run generate-digest.sh, fill Summary/Learnings/Tomorrow, commit

Tips

  • Compress aggressively — if you can reconstruct it from context, don't include it
  • Names matter — capture WHO you talked to, not just WHAT was said
  • Questions persist — open questions create continuity across sessions
  • Stats are cheap — automated extraction saves tokens on what's mechanical
README.md

Memory Curator

A Clawdbot skill for distilling verbose daily logs into compact, indexed digests.

What it does

Transforms raw daily logs (often 200-500+ lines) into ~50-80 line digests while preserving key information. Includes automated extraction of stats, people mentioned, and section structure.

Installation

Via ClawdHub (when available)

clawdhub install memory-curator

Manual

Copy the SKILL.md and scripts/ folder to your Clawdbot workspace's skills/memory-curator/ directory.

Usage

# Generate digest skeleton for today
./scripts/generate-digest.sh

# Generate for specific date  
./scripts/generate-digest.sh 2026-01-30

Then fill in the <!-- comment --> sections with your insights.

Digest Structure

SectionPurpose
Summary2-3 sentences, the day in a nutshell
StatsQuick metrics (lines, sections, karma, time span)
Key EventsWhat happened (3-7 items)
LearningsInsights worth remembering
ConnectionsPeople interacted with
Open QuestionsFor continuity
TomorrowActionable items for future-you

Why this exists

Agents accumulate verbose daily logs that become expensive to load into context. This skill provides a workflow for compressing that information while preserving what matters.

Built by Milo 🐕

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install memory-curator?

Run openclaw add @themiloway/memory-curator in your terminal. This installs memory-curator into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/themiloway/memory-curator. Review commits and README documentation before installing.