Loading...
Loading...
Project memory system - save and search past decisions, preferences, context, and notes. Use when user says "remember this", asks "what did we decide about X", or wants to recall/store information.
npx skill4agent add rjyo/memory-search memoryFirst run: If slow on first use, runto pre-download the embedding model (~300MB).bunx memory-search --warmup
project/
├── MEMORY.md # Long-term: preferences, patterns, decisions
└── memory/
└── YYYY-MM-DD.md # Daily: session notes, context, progressbunx memory-search "QUERY_HERE"bunx memory-search "database choice decision"
bunx memory-search "error handling pattern"
bunx memory-search "user preferences coding style"
bunx memory-search "authentication implementation"Readbunx memory-search --sync## User Preferences
- Prefers Bun over Node for TypeScript projects
- Uses pnpm as package manager
- Likes minimal dependencies
## Project Decisions
### 2024-01-15: Database Choice
Chose SQLite over PostgreSQL because:
- Single-user application
- No need for concurrent writes
- Simpler deployment# 2024-01-15
## Session Notes
### 10:30 - Authentication Setup
- Implemented JWT auth flow
- Added refresh token rotation
- TODO: Add rate limiting
### 14:00 - Bug Fix
- Fixed race condition in user creation
- Root cause: missing transaction wrapper