Systematic memory management for agents through daily logging, session preservation, and knowledge extraction.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionmemory-curatorExecute the skills CLI command in your project's root directory to begin installation:
Fetches memory-curator from irangareddy/openclaw-essentials and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate memory-curator. Access via /memory-curator in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
0
upvotes
Run in your terminal
0
installs
0
this week
—
stars
Systematic memory management for agents through daily logging, session preservation, and knowledge extraction.
# Append to today's log
python scripts/daily_log.py \
--workspace ~/.openclaw/workspace \
--entry "Implemented user authentication with JWT" \
--category "Key Activities"
# Show today's log
python scripts/daily_log.py --workspace ~/.openclaw/workspace --show
# Search all memory files
python scripts/search_memory.py \
--workspace ~/.openclaw/workspace \
--query "GraphQL"
# Search recent logs only (last 7 days)
python scripts/search_memory.py \
--workspace ~/.openclaw/workspace \
--query "authentication" \
--days 7
# Show recent logs
python scripts/search_memory.py \
--workspace ~/.openclaw/workspace \
--recent 5
# Generate summary from current session
python scripts/extract_session.py \
--session ~/.openclaw/agents/<agent-id>/sessions/<session-id>.jsonl \
--output session-summary.md
When: Before ending work session or switching contexts
Steps:
Review what was accomplished:
Append to daily log:
python scripts/daily_log.py \
--workspace ~/.openclaw/workspace \
--entry "Fixed race condition in payment processing - added mutex lock"
Add structured entries for important work:
## Key Activities
- [14:30] Implemented user profile dashboard with GraphQL
- [16:00] Fixed infinite re-render in UserContext - memoized provider value
## Decisions Made
- Chose Apollo Client over React Query - better caching + type generation
- Decided to use JWT in httpOnly cookies instead of localStorage
## Learnings
- Apollo requires `__typename` field for cache normalization
- React.memo doesn't prevent re-renders from context changes
See: patterns.md for what to log in different scenarios
When: Before running /new, /reset, or ending conversation
Steps:
Extract session summary:
# Get current session ID from system prompt or openclaw status
python scripts/extract_session.py \
--session ~/.openclaw/agents/<agent-id>/sessions/<session-id>.jsonl \
--output ~/session-summary.md
Review summary and edit Key Learnings section
Save to daily log:
# Append key points to today's log
cat ~/session-summary.md >> ~/.openclaw/workspace/memory/$(date +%Y-%m-%d).md
Extract critical context to MEMORY.md if needed:
When: End of week (Friday/Sunday) or monthly
Steps:
Search for patterns in recent logs:
python scripts/search_memory.py \
--workspace ~/.openclaw/workspace \
--recent 7
Look for extraction signals:
Extract to MEMORY.md:
Clean up MEMORY.md:
See: extraction.md for detailed extraction patterns
For rapid context capture during work:
# Quick note
python scripts/daily_log.py \
--workspace ~/.openclaw/workspace \
--entry "TIL: DataLoader batches requests into single query"
# Decision
python scripts/daily_log.py \
--workspace ~/.openclaw/workspace \
--entry "Using Zustand for client state - simpler than Redux" \
--category "Decisions Made"
# Problem solved
python scripts/daily_log.py \
--workspace ~/.openclaw/workspace \
--entry "CORS + cookies: Enable credentials on client + server, Allow-Origin can't be *"
memory/YYYY-MM-DD.md)Purpose: Chronological activity tracking
Content:
Retention: Keep recent logs accessible, optionally archive logs >90 days
When to use:
Purpose: Curated long-term knowledge
Content:
Organization: Topic-based, not chronological
When to use:
See: organization.md for structure patterns
Always log:
Don't log:
See: patterns.md for comprehensive logging guidance
During work:
daily_log.py --entryEnd of day:
End of week:
Extract to MEMORY.md when:
Don't extract:
Problem-Solution Structure:
## [Technology/Domain]
### [Problem Title]
**Problem:** [Clear description]
**Cause:** [Root cause]
**Solution:** [How to fix]
**Code:**
```js
// Example implementation
Prevention: [How to avoid] Context: [When this applies]
**See:** [extraction.md](references/extraction.md) for detailed extraction workflow
## Scripts Reference
### daily_log.py
Create or append to today's daily log.
```bash
# Append entry
python scripts/daily_log.py \
--workspace ~/.openclaw/workspace \
--entry "Your log entry" \
[--category "Section Name"]
# Create from template
python scripts/daily_log.py \
--workspace ~/.openclaw/workspace \
--template
# Show today's log
python scripts/daily_log.py \
--workspace ~/.openclaw/workspace \
--show
Extract summary from session JSONL.
python scripts/extract_session.py \
--session ~/.openclaw/agents/<id>/sessions/<session>.jsonl \
[--output summary.md]
Outputs:
Search across all memory files.
# Search with query
python scripts/search_memory.py \
--workspace ~/.openclaw/workspace \
--query "search term" \
[--days 30]
# Show recent logs
python scripts/search_memory.py \
--workspace ~/.openclaw/workspace \
--recent 5
Before /new or /reset:
After major work:
See: organization.md for detailed structure guidance
Search daily logs first:
python scripts/search_memory.py --workspace ~/.openclaw/workspace --query "decision keyword"
Search MEMORY.md:
grep -i "keyword" ~/.openclaw/workspace/MEMORY.md
Search session logs:
rg "keyword" ~/.openclaw/agents/<id>/sessions/*.jsonl
Archive old daily logs (>90 days):
mkdir -p memory/archive/2025-Q1
mv memory/2025-01-*.md memory/archive/2025-Q1/
Split MEMORY.md by domain if >1000 lines:
memory/domains/
├── react.md
├── graphql.md
└── database.md
Link from main MEMORY.md:
## Domain Knowledge
- [React Patterns](memory/domains/react.mMake data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
Keeps context tight: memory-curator is the kind of skill you can hand to a new teammate without a long onboarding doc.
Keeps context tight: memory-curator is the kind of skill you can hand to a new teammate without a long onboarding doc.
Registry listing for memory-curator matched our evaluation — installs cleanly and behaves as described in the markdown.
Keeps context tight: memory-curator is the kind of skill you can hand to a new teammate without a long onboarding doc.
memory-curator reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend memory-curator for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
memory-curator is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
memory-curator reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend memory-curator for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Useful defaults in memory-curator — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 74