[USER] prefers reminder notifications: brief, natural Czech messages 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_check.py` via exec; each non-empty output line sent as separate notification (supersedes `remind_runner.py`) [MEMORY-REMOVE] reminder notification preference is a permanent user preference; removing from MEMORY.md to avoid duplicating permanent-file content [MEMORY-REMOVE] stale incorrect script path `remind_runner.py` — `remind_check.py` is the actual working script in the same directory
945 B
945 B
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 check executes
/home/nanobot/.nanobot/workspace/skills/remind/scripts/remind_check.pyvia exec; each non-empty output line sent as separate notification
This file is automatically updated by nanobot when important information should be remembered.