|
2 | 2 | description: Show recent memory timeline |
3 | 3 | --- |
4 | 4 |
|
5 | | -Use the mind_timeline tool to show recent memories. |
| 5 | +# Mind Recent |
6 | 6 |
|
7 | | -$ARGUMENTS |
| 7 | +View recent observations in chronological order to see what work has been done lately. |
| 8 | + |
| 9 | +## Usage |
| 10 | + |
| 11 | +Use the mind_timeline tool to show recent memories: $ARGUMENTS |
| 12 | + |
| 13 | +**Optional argument:** Number of observations to show (default: 20) |
| 14 | + |
| 15 | +## Examples |
| 16 | + |
| 17 | +**Show last 20 observations (default):** |
| 18 | +``` |
| 19 | +/mind:recent |
| 20 | +``` |
| 21 | + |
| 22 | +**Show last 5 observations:** |
| 23 | +``` |
| 24 | +/mind:recent 5 |
| 25 | +``` |
| 26 | + |
| 27 | +**Show last 50 observations:** |
| 28 | +``` |
| 29 | +/mind:recent 50 |
| 30 | +``` |
| 31 | + |
| 32 | +## Output Format |
| 33 | + |
| 34 | +Displays observations in reverse chronological order (newest first): |
| 35 | + |
| 36 | +``` |
| 37 | +📅 Recent Observations (last 5): |
| 38 | +
|
| 39 | +1. 5 minutes ago | [feature] Added user authentication endpoints |
| 40 | + Implemented JWT-based auth with refresh tokens |
| 41 | + Source: opencode |
| 42 | + |
| 43 | +2. 15 minutes ago | [discovery] Found existing auth middleware |
| 44 | + Located reusable auth middleware in src/middleware/ |
| 45 | + Source: opencode |
| 46 | + |
| 47 | +3. 1 hour ago | [problem] TypeScript errors in auth service |
| 48 | + Missing types for User interface |
| 49 | + Source: opencode |
| 50 | +``` |
| 51 | + |
| 52 | +## What You'll See |
| 53 | + |
| 54 | +Each observation shows: |
| 55 | +- **Timestamp** (relative: "5 minutes ago") |
| 56 | +- **Type** (discovery, problem, solution, feature, etc.) |
| 57 | +- **Summary** (one-line description) |
| 58 | +- **Content** (detailed information) |
| 59 | +- **Source** (opencode or claude-code) |
| 60 | + |
| 61 | +## When to Use |
| 62 | + |
| 63 | +- **Daily standup** - Review what you worked on |
| 64 | +- **Context refresh** - Remember where you left off |
| 65 | +- **Team handoff** - Share what was done |
| 66 | +- **Progress tracking** - See recent accomplishments |
| 67 | + |
| 68 | +## Tips |
| 69 | + |
| 70 | +- Use smaller limits (5-10) for quick overview |
| 71 | +- Use larger limits (50+) for detailed review |
| 72 | +- Timeline includes both opencode and claude-code observations |
| 73 | +- Observations are captured automatically from tool usage |
| 74 | + |
| 75 | +## Observation Types |
| 76 | + |
| 77 | +- **discovery** - New information found |
| 78 | +- **decision** - Choices made |
| 79 | +- **problem** - Errors encountered |
| 80 | +- **solution** - Fixes implemented |
| 81 | +- **feature** - Features added |
| 82 | +- **refactor** - Code refactored |
| 83 | +- **bugfix** - Bugs fixed |
| 84 | + |
| 85 | +## See Also |
| 86 | + |
| 87 | +- `/mind:search` - Find specific observations |
| 88 | +- `/mind:ask` - Ask questions about your work |
| 89 | +- `/mind:stats` - View memory statistics |
0 commit comments