automation session-memory command (monomind)
Scanned 9/10/2026
Install to Claude Code
npx -y skills add monoes/monomind --skill monomind-monomind-monomind-automation-session-memory --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Monomind Monomind Monomind Automation Session Memory?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/monoes-monomind-monomind-monomind-automation-session-memo)More formats (shields.io, HTML) on the badges page.
---
description: automation session-memory command (monomind)
type: flow
name: monomind-monomind-monomind-automation-session-memory
---
# Cross-Session Memory
## Purpose
Maintain context and learnings across Claude Code sessions for continuous improvement.
## Memory Features
### 1. Automatic State Persistence
At session end, automatically saves:
- Active agents and specializations
- Task history and patterns
- Performance metrics
- Neural network weights
- Knowledge base updates
### 2. Session Restoration
```javascript
// Retrieve saved session state
mcp__monomind__memory_retrieve({
key: "session-state",
namespace: "sessions"
})
// Restore a named session
mcp__monomind__session_restore({
sessionId: "sess-123"
})
```
**Fallback with npx:**
```bash
npx monomind hooks session-restore --id "sess-123"
```
### 3. Memory Types
**Project Memory:**
- File relationships
- Common edit patterns
- Testing approaches
- Build configurations
**Agent Memory:**
- Specialization levels
- Task success rates
- Optimization strategies
- Error patterns
**Performance Memory:**
- Bottleneck history
- Optimization results
- Token usage patterns
- Efficiency trends
### 4. Privacy & Control
```javascript
// List memory entries by namespace
mcp__monomind__memory_list({
namespace: "sessions"
})
// Delete specific memory entry
mcp__monomind__memory_delete({
key: "session-123",
namespace: "sessions"
})
// Check memory stats
mcp__monomind__memory_stats({})
```
**Manual control:**
```bash
# List saved sessions
npx monomind session list
# Disable memory persistence
export MONOMIND_MEMORY_PERSIST=false
```
## Benefits
- Contextual awareness
- Cumulative learning
- Faster task completion
- Personalized optimizationIs this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!