Skip to main content
ClaudeWave
Slash Command502 estrellas del repoactualizado 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.

Instalar en Claude Code
Copiar
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/memvid/claude-brain/HEAD/commands/recent.md -o ~/.claude/commands/recent.md
Después abre una sesión nueva de Claude Code; el slash command carga automáticamente.

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 helpful