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
This commit is contained in:
nanobot
2026-05-27 20:37:02 +02:00
parent ce8460acf5
commit 61ad318f42
4 changed files with 68 additions and 60 deletions

View File

@@ -8,7 +8,16 @@ This file stores important information that should persist across sessions.
## Preferences
(User preferences learned over time)
### 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
@@ -16,7 +25,8 @@ This file stores important information that should persist across sessions.
## Important Notes
(Things to remember)
- 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
---