| name | mor |
| description | The user's personal note store, accessed via the `mor` CLI. Check here first when the user asks to recall, find, or reuse something they previously saved. |
The user's personal note store. Contains saved code snippets, files, preferences, and reference notes. Check here first when the user asks to recall, find, or reuse something they previously saved. Only create or modify notes when the user explicitly asks — never use this store for your own internal bookkeeping or memory.
Access via the mor CLI. Notes are markdown files with metadata (title, tags, type, description).
Quick reference
Search notes
Options must come before the query (the query is variadic / multi-word).
mor find auth flow
mor find --limit 5 python naming
mor find --json auth flow
mor find --tag "python" auth flow
mor find --type knowledge auth flow
mor grep useState
mor grep -i createServer
mor grep -E "async\s+function"
mor grep -C 3 useState
mor grep -l useState
List notes
mor ls
mor ls -a --tags
mor ls -a --types
mor ls -l
mor ls --tag "python,api"
mor ls --type snippet
Read a note
mor cat fastify server primer
mor cat --links 8da8d8f2
mor cat --raw 8da8d8f2
Create a note
echo "some content" | mor add -t "My note title"
echo "content" | mor add -t "Title" --tags "tag1,tag2" --type knowledge -d "Short description"
mor add path/to/file.py
mor add https://example.com/file.js
Note types: user, feedback, project, reference, knowledge, snippet, file
Update a note
mor update -t "New title" 8da8d8f2
mor update --tags "go,concurrency" 8da8d8f2
mor update --type snippet 8da8d8f2
mor update -d "New description" 8da8d8f2
mor update --content-from path/to/file.md 8da8d8f2
echo "new content" | mor update --content-from - 8da8d8f2
Patch a note (str_replace)
mor patch --old "text to find" --new "replacement text" 8da8d8f2
mor patch --old "text to delete" --new "" 8da8d8f2
Remove notes
mor rm <id>
mor rm <id1> <id2>
Query resolution
Anywhere <query> appears, mor resolves it in this order:
- Full UUID
- UUID prefix (8+ characters)
- Exact filename match
- Full-text search (returns best match)
Short ID prefixes like mor cat a1b2c3d4 and multi-word titles like mor cat fastify server primer both work.