Files
nanobot-runtime/memory/MEMORY.md
nanobot 61ad318f42 dream: 2026-05-27 16:41, 4 change(s)
[MEMORY] Reminder notifications: brief, natural messages in Czech spoken directly to user; no progress narration, summaries, user IDs, or status labels like 'Done'/'Reminded'
[MEMORY] Reminder check executes `/home/nanobot/.nanobot/workspace/skills/remind/scripts/remind_runner.py` via exec; each non-empty output line sent as separate notification
[SKILL] remind-runner-execution: Execute remind_runner.py via exec and send each non-empty output line as separate notification
[SKIP] No redundant content found in MEMORY.md — script conventions and temp file rules do not overlap with USER.md or SOUL.md
[SKIP] Language (Czech) and timezone (Europe/Prague) already captured in USER.md — conversation history repetitions are not memory file duplicates
2026-05-27 20:37:02 +02:00

1.1 KiB

Long-term Memory

This file stores important information that should persist across sessions.

User Information

(Important facts about the user)

Preferences

Script-writing convention

  • Location: always save scripts in the scripts/ directory.
  • Language choice:
    • Extremely short script (a few lines) -> bash.
    • Longer / non-trivial script -> Python.
  • Override: if the user explicitly specifies a language or location, their instruction always takes precedence.

Temporary files

  • All temporary files go to tmp/ directory.
  • Clean up after tests and one-off operations.

Project Context

(Information about ongoing projects)

Important Notes

  • Reminder notifications: brief, natural messages in Czech spoken directly to user; no progress narration, summaries, user IDs, or status labels like 'Done'/'Reminded'
  • Reminder check executes /home/nanobot/.nanobot/workspace/skills/remind/scripts/remind_runner.py via exec; each non-empty output line sent as separate notification

This file is automatically updated by nanobot when important information should be remembered.