Added all of chat-topics, persona;-history, projects, receipts and vehicle. This is the knowledge base section after all....

This commit is contained in:
2026-05-26 16:53:50 +10:00
parent 85f78332d1
commit 6ada86fe73
91 changed files with 3983 additions and 26 deletions
@@ -82,9 +82,13 @@ The draft should be a real reply-style email with:
Preferred command pattern:
```bash
himalaya template reply -a business -f <SOURCE_FOLDER> <ID> $'Reply text here\n' | himalaya template save -a business -f INBOX.Soren.Drafts
marker="soren-$(date +%Y%m%d-%H%M%S)"
himalaya template reply -a business -f <SOURCE_FOLDER> <ID> $'Reply text here\n' \
| awk -v date="$(date -R)" -v mid="<$marker@Michael-Office>" 'BEGIN{done=0} !done && /^$/ { print "Date: " date; print "Message-ID: " mid; print; done=1; next } { print }' \
| himalaya message save -a business -f INBOX.Soren.Drafts
```
```
Do **not** use `himalaya template save` for drafts on this account: testing on 2026-05-13 showed it creates duplicate messages in `INBOX.Soren.Drafts` with the same `Message-ID`. `himalaya message save` creates a single draft.
# Common command patterns