Documentation Index
Fetch the complete documentation index at: https://docs.linksee.app/llms.txt
Use this file to discover all available pages before exploring further.
The basic flow
Linksee Memory has one core loop: remember → recall → act.Step 1: Remember something
In any conversation with your AI agent, say:“Remember that our production database is PostgreSQL 16 on Supabase, and we had a connection pooling issue last week that was fixed by switching to transaction mode.”The agent calls
remember and stores this as structured memory:
- Entity: your project name
- Layer:
implementation(how it was done) - Content: the PostgreSQL + pooling fix details
You can also say “use linksee” or “don’t forget this” to trigger memory storage.
Step 2: Add a caveat
Caveats are the most valuable layer — pain lessons that should never be forgotten:“Linksee caveat: Never use pgbouncer in session mode with Supabase — it causes prepared statement conflicts. Always use transaction mode.”This gets stored in the caveat layer with
protected = true — it will never be auto-forgotten.
Step 3: Recall in a new session
Start a fresh session. Ask:“I’m about to set up a new Supabase project. What do I need to know? Check linksee.”The agent calls
recall and returns your memories, ranked by relevance:
Step 4: Use read_smart for files
When re-reading a file you’ve seen before:“Read src/db/connection.ts using linksee read_smart”First read returns full content. On subsequent reads, if the file hasn’t changed, you get:
What to remember
Not everything needs to be memorized. Focus on:| Worth remembering | Skip |
|---|---|
| Decisions and why you made them | Routine code changes |
| Pain lessons and gotchas | Temporary debug output |
| Architecture choices | One-off questions |
| User preferences | Content that’s already in docs |
| Project-specific conventions | Generic knowledge |
Next steps
Memory Layers
Understand goal / context / emotion / implementation / caveat / learning
Token Saving
How read_smart saves 50-99% tokens with AST-aware diffing
Tools Reference
Full parameter docs for all 8 tools
Prompts
5 built-in prompts for common workflows