You are helping the user view their recent journal entries.
Retrieves and displays recent journal entries with project filtering and summaries.
/plugin marketplace add chrismbryant/claude-journal-mcp/plugin install claude-journal@claude-journal-devYou are helping the user view their recent journal entries.
This command is especially useful after /clear to restore context about recent work.
Determine scope:
Use the MCP tool:
Call journal_list_recent:
journal_list_recent(
limit=10 (or user's preference),
project="project-name" (optional)
)
Present results:
After /clear:
User: "What was I working on?"
→ journal_list_recent(limit=10)
→ Summarize: "You were recently working on X, Y, and Z"
Start of day:
User: "What did I do yesterday?"
→ journal_list_recent(limit=20)
→ Filter to yesterday's entries and summarize
Project context:
User: "Show recent work on my-api"
→ journal_list_recent(project="my-api", limit=15)
Present entries like:
**Recent Journal Entries** (10 shown)
[42] Implemented OAuth login (2024-01-15 14:30)
📁 my-app | 🏷️ auth, oauth
Built OAuth2 flow with JWT tokens for user authentication
[41] Fixed cache memory leak (2024-01-15 10:15)
🏷️ bugfix, performance
Cache wasn't clearing old entries, causing gradual memory growth
...
After showing entries, help user: