Slash Command502 repo starsupdated 4mo ago
recent
The `/mind:recent` command displays the most recent memories and activity entries from Claude's persistent storage system, defaulting to 20 entries but supporting custom counts via an optional parameter. Use this command to quickly review recent conversation history, stored notes, or activity timelines organized in reverse chronological order with human-readable timestamps.
Install in Claude Code
Copymkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/memvid/claude-brain/HEAD/commands/recent.md -o ~/.claude/commands/recent.mdThen start a new Claude Code session; the slash command loads automatically.
Definition
recent.md
# Recent Memories
Display the most recent memories and activity from Claude's persistent storage.
**Usage**: `/mind:recent [count]`
Execute the timeline script to show recent activity:
```bash
node "${CLAUDE_PLUGIN_ROOT}/dist/scripts/timeline.js" ${ARGUMENTS:-20}
```
## Examples
- `/mind:recent` - Show 20 most recent memories (default)
- `/mind:recent 10` - Show 10 most recent memories
- `/mind:recent 50` - Show 50 most recent memories
## Response Format
- Display memories in reverse chronological order (newest first)
- Convert timestamps to human-readable format
- Group by session or time period when helpfulMore from this repository
askSlash Command
Ask questions about memories and get context-aware answers
searchSlash Command
Search memories for specific content or patterns
statsSlash Command
Show memory statistics and storage information
memorySkill
Claude Mind - Search and manage Claude's persistent memory stored in a single portable .mv2 file
mindSkill
Claude Mind - Search and manage Claude's persistent memory stored in a single portable .mv2 file