1.7 KiB
1.7 KiB
Troubleshooting Guide
No conversations found
Symptoms: Skill reports 0 conversations
Solution:
- Verify you're in a project with conversation history
- Check
~/.claude/projects/for your project folder - Ensure JSONL files exist in the project folder
- Run initial processing if first time
Search returns no results
Symptoms: Semantic search finds nothing
Solution:
- Check embeddings were built (look for ChromaDB folder)
- Rebuild embeddings: skill will do this automatically
- Try broader search terms
- Use metadata search for specific files
Dashboard won't start
Symptoms: Error when launching dashboard
Solution:
- Check Node.js is installed (v18+)
- Run
npm installin dashboard directory - Check port 3000 is available
- Kill existing processes:
lsof -i :3000
Slow processing
Symptoms: Initial setup takes very long
Solution:
- First-time embedding creation is slow (1-2 min normal)
- Subsequent runs use incremental updates (fast)
- For very large history, consider limiting date range
Missing dependencies
Symptoms: Import errors when running
Solution:
pip install -r requirements.txt
Required packages:
- sentence-transformers
- chromadb
- sqlite3 (built-in)
Embeddings out of date
Symptoms: New conversations not appearing in search
Solution:
- Skill automatically updates on each use
- Force rebuild: delete ChromaDB folder and rerun
- Check incremental processing completed
Database locked
Symptoms: SQLite errors about locked database
Solution:
- Close other processes using the database
- Close the dashboard if running
- Wait a moment and retry