Rename brain-dump to tasks

This commit is contained in:
Agent 2026-02-07 15:15:32 +00:00
parent e26f7e141b
commit 10a4c1227b
12 changed files with 415 additions and 296 deletions

View file

@ -20,7 +20,7 @@ Check the following and notify only once per event (track in `memory/heartbeat-s
**If they're about to start something new after 20:00**: Gently suggest postponing to tomorrow.
**Work-end reminders**: When they indicate they're wrapping up or transitioning to wind-down, check `memory/brain-dump.json` for `recurring` items with `when: "evening"` and remind them (e.g., nose shower) before they get too deep into relaxation mode.
**Work-end reminders**: When they indicate they're wrapping up or transitioning to wind-down, check `memory/tasks.json` for `recurring` items with `when: "evening"` and remind them (e.g., nose shower) before they get too deep into relaxation mode.
**📝 AUTO-LOG EVERYTHING 19:00→SLEEP** — Log to `memory/wind-down-log.json` as events happen:
- What they're doing (working, watching TV, chatting, browsing, etc.)
@ -44,10 +44,18 @@ Check the following and notify only once per event (track in `memory/heartbeat-s
5. **Steam Machine / Steam Frame**: Check for **official Valve news only** about pricing or release date. Notify once when official price or specific release date is announced. Baseline: "early 2026" window, no price yet.
6. **Brain dump nudging**: During daytime hours (10:00-18:00 Vienna), occasionally check `memory/brain-dump.json` for:
- Items with `remindOn` date matching today
- Items older than 2 days that haven't been addressed (weekdays only — Mon-Fri)
On weekends: only surface items with `remindOn` = today.
6. **OpenClaw + Claude Code updates**: Check once daily (daytime) for:
- OpenClaw releases (especially for Opus 4.6 support via PR #9863)
- Claude Code new versions
Track in `memory/heartbeat-state.json` watchlist. Notify when new versions ship.
7. **Task nudging**: During daytime hours (10:00-18:00 Vienna), occasionally check `memory/tasks.json` for:
- `now` priority tasks — nudge daily
- `soon` priority tasks — nudge every 2-3 days (weekdays only)
- `someday` tasks — only mention during weekly reviews or when contextually relevant
On weekends: only nudge `now` priority items.
Surface 1-2 items max, conversationally. NOT in evening — that's wind-down time.
**Auto-capture:** When user mentions tasks naturally in chat ("I should...", "I need to...", "Don't forget..."), add to tasks.json and confirm with a short acknowledgment.
**Done = delete.** Remove completed tasks immediately. History lives in daily memory logs.
If nothing new to report, reply HEARTBEAT_OK.

View file

@ -137,20 +137,20 @@ ainews reset # Clear seen history
## Brain Dump CLI
Helper script: `~/clawd/bin/brain-dump`
Helper script: `~/clawd/bin/tasks`
```bash
brain-dump list [--priority now,soon] [--due] [--limit N]
brain-dump add --text "..." --priority soon [--context "..."]
brain-dump add --recurring --text "..." --frequency daily [--when evening] [--context "..."]
brain-dump edit <id> [--text "..."] [--priority|--frequency|--when|--context "..."]
brain-dump done <id>
brain-dump show <id>
brain-dump nudged <id1>,<id2>,...
brain-dump recurring
tasks list [--priority now,soon] [--due] [--limit N]
tasks add --text "..." --priority soon [--context "..."]
tasks add --recurring --text "..." --frequency daily [--when evening] [--context "..."]
tasks edit <id> [--text "..."] [--priority|--frequency|--when|--context "..."]
tasks done <id>
tasks show <id>
tasks nudged <id1>,<id2>,...
tasks recurring
```
- Data: `memory/brain-dump.json`
- Data: `memory/tasks.json`
- `--due` filters by nudge interval: now=1d, soon=3d, someday=7d
- `nudged` marks tasks as just-nudged (resets due timer)
- `recurring` lists all recurring items with full context (note, when, frequency)
@ -158,9 +158,9 @@ brain-dump recurring
- Output is tab-separated for minimal tokens
**Heartbeat workflow:**
1. `brain-dump list --due --limit 2` → get tasks needing a nudge
1. `tasks list --due --limit 2` → get tasks needing a nudge
2. Mention them conversationally
3. `brain-dump nudged <id1>,<id2>` → mark as nudged
3. `tasks nudged <id1>,<id2>` → mark as nudged
---

View file

@ -4,7 +4,7 @@ const fs = require('fs');
const path = require('path');
const crypto = require('crypto');
const DUMP_PATH = path.join(__dirname, '..', 'memory', 'brain-dump.json');
const DUMP_PATH = path.join(__dirname, '..', 'memory', 'tasks.json');
const NUDGE_INTERVALS = {
now: 24 * 60 * 60 * 1000, // 1 day
@ -112,7 +112,7 @@ function cmdAdd(args) {
function cmdEdit(args) {
const id = args[0];
if (!id) { console.error('Usage: brain-dump edit <id> [--text ...] [--priority ...] [--context ...] [--frequency ...] [--when ...]'); process.exit(1); }
if (!id) { console.error('Usage: tasks edit <id> [--text ...] [--priority ...] [--context ...] [--frequency ...] [--when ...]'); process.exit(1); }
const data = load();
@ -147,7 +147,7 @@ function cmdEdit(args) {
function cmdDone(args) {
const id = args[0];
if (!id) { console.error('Usage: brain-dump done <id>'); process.exit(1); }
if (!id) { console.error('Usage: tasks done <id>'); process.exit(1); }
const data = load();
@ -175,7 +175,7 @@ function cmdDone(args) {
function cmdShow(args) {
const id = args[0];
if (!id) { console.error('Usage: brain-dump show <id>'); process.exit(1); }
if (!id) { console.error('Usage: tasks show <id>'); process.exit(1); }
const data = load();
const item = (data.tasks || []).find(t => t.id === id)
@ -187,7 +187,7 @@ function cmdShow(args) {
function cmdNudged(args) {
const ids = (args[0] || '').split(',').map(s => s.trim()).filter(Boolean);
if (ids.length === 0) { console.error('Usage: brain-dump nudged <id1>,<id2>,...'); process.exit(1); }
if (ids.length === 0) { console.error('Usage: tasks nudged <id1>,<id2>,...'); process.exit(1); }
const data = load();
const now = new Date().toISOString();
@ -236,7 +236,7 @@ switch (cmd) {
case 'nudged': cmdNudged(args); break;
case 'recurring': cmdRecurring(); break;
default:
console.log(`Usage: brain-dump <command>
console.log(`Usage: tasks <command>
Commands:
list [--priority now,soon] [--due] [--limit N]

23
memory/2026-02-06.md Normal file
View file

@ -0,0 +1,23 @@
# 2026-02-06 (Friday)
## Key Events
- **Opus 4.6 upgrade**: User pointed out OpenClaw update included Opus 4.6 support. Config was still on 4.5 — patched config to set Opus 4.6 as primary with 4.5 fallback. Updated TOOLS.md.
- **Cron jobs fixed**: News cron jobs were broken all day — root cause was `wakeMode: "next-heartbeat"` causing jobs to be skipped when heartbeat timing didn't align. Fixed by switching all 8 news jobs to `wakeMode: "now"`. Tested successfully at 21:35 and 21:39 UTC.
- **Cron delivery note**: What appears truncated in system logs is actually the full message on WhatsApp — I only see a summary of cron agent output.
- **Task system revamp**: Restructured brain-dump.json — removed status field (done = delete), added priority system (now/soon/someday), updated HEARTBEAT.md with auto-capture and smarter nudging rules.
- **AirPods listed on Willhaben**: Helped write title/description for AirPods Pro 2 USB-C listing. Task completed and removed from brain-dump.
- **Bazzite 42→43 upgrade**: Helped user rebase GPD Win 4 from Bazzite 42 to 43. Used `ostree-unverified-registry` to bypass stuck ref. Upgrade successful.
- **FSR4 setup**: Guided user through FSR4 emulated RDNA3 on GPD Win 4 HX 370. ProtonPlus → Proton GE → `DXIL_SPIRV_CONFIG=wmma_rdna3_workaround FSR4_UPGRADE=1`. Set up global env vars.
- **GPD Win 4 notes**: HX 370 processor, BIOS 0.10 (latest for this model), 1080p display. 15W TDP = ~28W total system draw (normal). Clair Obscur needs ~20W TDP for 30fps at 1080p FSR performance.
- **SVS + Watzek Petschinka reminders**: Set for Monday 9 AM Vienna.
- **Codex CLI**: Explained plan mode (Shift+Tab to cycle modes: Ask/Plan/Auto).
## Wind-down
- 19:00-22:00 window: Failed to check in at 19:00 — user called me out. Must proactively reach out when wind-down window starts.
- User worked until ~23:00 on Friday (hook issue → NixOS config → cron testing). Classic scope creep pattern.
- Nose shower done at 23:01.
## Lessons
- **Always check in at 19:00 Vienna** when wind-down window starts, even if user seems quiet.
- **Cron jobs**: Use `wakeMode: "now"` for isolated jobs that need precise timing. `next-heartbeat` is unreliable for scheduled tasks.
- **Cron delivery**: I only see summaries of cron agent output, not the full message. Don't assume truncation on WhatsApp.

27
memory/2026-02-07.md Normal file
View file

@ -0,0 +1,27 @@
# 2026-02-07 (Saturday)
## Cron Bug Fix 🐛
- **Root cause**: `recomputeNextRuns()` in `/app/src/cron/service/store.ts` (line ~409 in ensureLoaded) recomputes `nextRunAtMs` for ALL jobs before `runDueJobs()` runs. For recurring schedules (cron/every), `computeNextRunAtMs()` always returns the NEXT occurrence after `now`, advancing the schedule past the current time. `runDueJobs()` then finds no due jobs.
- One-shot `at` jobs were unaffected because `computeJobNextRunAtMs` returns the original timestamp for them.
- **Fix**: Patched `/app/dist/gateway-cli-D6nsc3s0.js` — in `recomputeNextRuns`, added check to skip recomputing if `nextRunAtMs <= now` (job is due, let it execute first).
- **Impact**: All 8 news cron jobs (Der Standard + AI News × 4 times/day) had NEVER fired since creation on Feb 6.
- Hard-killed gateway (PID 2) to force container restart and load patched JS bundle.
- Verified: recurring `every` job fired correctly after patch. Real news jobs scheduled for 14:00 Vienna.
- **TODO**: File upstream bug report on OpenClaw GitHub (issue in `recomputeNextRuns` race condition).
## GPD Win 4 Optimization
- User working on improving performance/watt on GPD Win 4 2025 (HX 370, Bazzite 43, FSR 4 enabled)
- Discussed: TDP tuning (15-20W sweet spot), core parking via PowerTools Decky plugin, resolution/FSR upscaling, fan curves, frame limiting
- Core parking: disable SMT, reduce threads to 4 for GPU-bound games
- BIOS: UMA frame buffer option not available on HX 370 model (others report same)
- Recommended removing ReShade since FSR 4 handles upscaling
- ProtonGE: update every 2-4 weeks or when a game has issues
## Android → Snapcast Streaming (Reference)
- No native AirPlay-like solution for Android → Snapcast
- **Best option:** DLNA/UPnP — gmrender-resurrect piped into Snapcast server + BubbleUPnP app on phone
- **Alternatives:** Bluetooth A2DP sink (range limited), TCP source (no good Android app yet), AirPlay via Android app (hacky)
- User interested but not urgent — revisit when asked
## Calendar
- Marie besuchen 13:00-17:00 (reminder sent at 11:30 Vienna)

View file

@ -1,15 +1,82 @@
https://simonwillison.net/2026/Feb/6/an-update-on-heroku/#atom-everything
https://simonwillison.net/2026/Feb/6/karel-doosterlinck/#atom-everything
https://simonwillison.net/2026/Feb/5/ai-adoption-journey/#atom-everything
https://simonwillison.net/2026/Feb/5/two-new-models/#atom-everything
https://simonwillison.net/2026/Feb/5/the-world-factbook/#atom-everything
https://simonwillison.net/2026/Feb/4/voxtral-2/#atom-everything
https://simonwillison.net/2026/Feb/4/distributing-go-binaries/#atom-everything
https://simonwillison.net/2026/Feb/3/introducing-deno-sandbox/#atom-everything
https://simonwillison.net/2026/Feb/3/january/#atom-everything
https://simonwillison.net/2026/Feb/3/brandon-sanderson/#atom-everything
https://simonwillison.net/2026/Feb/2/introducing-the-codex-app/#atom-everything
https://simonwillison.net/2026/Feb/2/no-humans-allowed/#atom-everything
https://simonwillison.net/2026/Feb/1/openclaw-in-docker/#atom-everything
https://simonwillison.net/2026/Jan/31/andrej-karpathy/#atom-everything
https://simonwillison.net/2026/Jan/31/collective-efficacy/#atom-everything
https://simonwillison.net/2026/Jan/30/steve-yegge/#atom-everything
https://simonwillison.net/2026/Jan/30/moltbook/#atom-everything
https://simonwillison.net/2026/Jan/30/a-programming-tool-for-the-arts/#atom-everything
https://simonwillison.net/2026/Jan/29/datasette-10a24/#atom-everything
https://simonwillison.net/2026/Jan/28/dynamic-features-static-site/#atom-everything
https://simonwillison.net/2026/Jan/28/the-five-levels/#atom-everything
https://simonwillison.net/2026/Jan/27/one-human-one-agent-one-browser/#atom-everything
https://simonwillison.net/2026/Jan/27/kimi-k25/#atom-everything
https://simonwillison.net/2026/Jan/26/tests/#atom-everything
https://simonwillison.net/2026/Jan/26/chatgpt-containers/#atom-everything
https://simonwillison.net/2026/Jan/25/the-browser-is-the-sandbox/#atom-everything
https://simonwillison.net/2026/Jan/25/kakapo-cam/#atom-everything
https://simonwillison.net/2026/Jan/24/dont-trust-the-process/#atom-everything
https://simonwillison.net/2026/Jan/24/jasmine-sun/#atom-everything
https://simonwillison.net/2026/Jan/23/fastrender/#atom-everything
https://openai.com/policies/kr-privacy-policy
https://openai.com/index/our-approach-to-localization
https://openai.com/index/gpt-5-lowers-protein-synthesis-cost
https://openai.com/index/trusted-access-for-cyber
https://openai.com/index/introducing-openai-frontier
https://openai.com/index/navigating-health-questions
https://openai.com/index/introducing-gpt-5-3-codex
https://openai.com/index/gpt-5-3-codex-system-card
https://openai.com/index/unlocking-the-codex-harness
https://openai.com/index/vfl-wolfsburg
https://openai.com/index/sora-feed-philosophy
https://openai.com/index/snowflake-partnership
https://openai.com/index/introducing-the-codex-app
https://openai.com/index/inside-our-in-house-data-agent
https://openai.com/index/retiring-gpt-4o-and-older-models
https://openai.com/index/taisei
https://openai.com/index/emea-youth-and-wellbeing-grant
https://openai.com/index/the-next-chapter-for-ai-in-the-eu
https://openai.com/index/ai-agent-link-safety
https://openai.com/index/pvh-future-of-fashion
https://openai.com/index/trustbank
https://openai.com/index/introducing-prism
https://openai.com/index/indeed-maggie-hulce
https://openai.com/index/unrolling-the-codex-agent-loop
https://openai.com/index/scaling-postgresql
https://openai.com/index/praktika
https://openai.com/business/guides-and-resources/chatgpt-usage-and-adoption-patterns-at-work
https://openai.com/index/higgsfield
https://openai.com/index/edu-for-countries
https://openai.com/index/how-countries-can-end-the-capability-overhang
https://magazine.sebastianraschka.com/p/categories-of-inference-time-scaling
https://magazine.sebastianraschka.com/p/state-of-llms-2025
https://magazine.sebastianraschka.com/p/llm-research-papers-2025-part2
https://magazine.sebastianraschka.com/p/technical-deepseek
https://magazine.sebastianraschka.com/p/beyond-standard-llms
https://magazine.sebastianraschka.com/p/llm-evaluation-4-approaches
https://magazine.sebastianraschka.com/p/qwen3-from-scratch
https://magazine.sebastianraschka.com/p/from-gpt-2-to-gpt-oss-analyzing-the
https://magazine.sebastianraschka.com/p/the-big-llm-architecture-comparison
https://magazine.sebastianraschka.com/p/llm-research-papers-2025-list-one
https://magazine.sebastianraschka.com/p/coding-the-kv-cache-in-llms
https://magazine.sebastianraschka.com/p/coding-llms-from-the-ground-up
https://magazine.sebastianraschka.com/p/the-state-of-llm-reasoning-model-training
https://magazine.sebastianraschka.com/p/first-look-at-reasoning-from-scratch
https://magazine.sebastianraschka.com/p/state-of-llm-reasoning-and-inference-scaling
https://magazine.sebastianraschka.com/p/understanding-reasoning-llms
https://magazine.sebastianraschka.com/p/ai-research-papers-2024-part-2
https://magazine.sebastianraschka.com/p/ai-research-papers-2024-part-1
https://magazine.sebastianraschka.com/p/llm-research-papers-the-2024-list
https://magazine.sebastianraschka.com/p/understanding-multimodal-llms
https://simonwillison.net/2026/Feb/6/tom-dale/#atom-everything
https://simonwillison.net/2026/Feb/6/pydantic-monty/#atom-everything

View file

@ -1,3 +1,5 @@
{
"sent": []
"sent": [
{"event": "Marie besuchen", "date": "2026-02-07", "remindedAt": "2026-02-07T09:31:00Z"}
]
}

View file

@ -1,49 +1,75 @@
https://www.derstandard.at/story/3000000306979/trump-always-chickens-out-macht-taco-tatsaechlich-immer-einen-rueckzieher?ref=rss
https://www.derstandard.at/story/3000000307063/usa-schiessen-iranische-drohne-nahe-flugzeugtraeger-im-arabischen-meer-ab?ref=rss
https://www.derstandard.at/story/3000000306672/neue-epstein-files-werfen-fragen-an-adelige-diplomaten-und-eva-dichand-auf?ref=rss
https://www.derstandard.at/story/3000000306965/wodurch-fast-vier-von-zehn-krebsfaellen-vermeidbar-waeren?ref=rss
https://www.derstandard.at/story/3000000306903/etappensieg-fuer-saudischen-staatsfonds-mubadala-im-streit-mit-signa?ref=rss
https://www.derstandard.at/story/3000000307018/das-gehalt-ueberzeugt-beschaeftigte-nicht-dafuer-die-kollegen?ref=rss
https://www.derstandard.at/story/3000000307007/waymo-will-robotaxis-global-anbieten-und-sammelt-dafuer-neue-milliarden-ein?ref=rss
https://www.derstandard.at/story/3000000307041/babys-erkennen-objekte-schon-im-alter-von-zwei-monaten?ref=rss
https://www.derstandard.at/story/3000000306987/welche-bedrohung-durch-russland-ist-realistisch?ref=rss
https://www.derstandard.at/story/3000000306974/minister-wiederkehr-warum-weniger-latein-im-gymnasium-mehr-humanismus-bedeutet?ref=rss
https://www.derstandard.at/story/3000000306758/olympia-2026-zerstueckelte-winterspiele-sind-die-letzte-chance?ref=rss
https://www.derstandard.at/story/3000000303908/warum-online-bewerbungsgespraeche-so-schwierig-sind-und-wie-man-dennoch-punktet?ref=rss
https://www.derstandard.at/story/3000000306921/psychiaterin-kastner-ueber-kindstoetung-das-groesste-risiko-ist-eine-unbehandelte-depression?ref=rss
https://www.derstandard.at/story/3000000307052/trotz-kreuzbandrisses-vonn-haelt-an-olympia-start-fest?ref=rss
https://www.derstandard.at/story/3000000306703/vermoegen-sinnvoll-anlegen-eigentum-miete-oder-alternative-geldanlage?ref=rss
https://www.derstandard.at/story/3000000306735/krankenstand-wegen-skiunfalls-wann-darf-der-arbeitgeber-das-gehalt-verweigern?ref=rss
https://www.derstandard.at/story/3000000306990/maja-t-droht-in-budapester-antifa-prozess-ein-hartes-urteil?ref=rss
https://www.derstandard.at/story/3000000306855/kunstsammler-leon-black-war-jeffrey-epsteins-haupteinnahmequelle?ref=rss
https://www.derstandard.at/story/3000000306890/epstein-aff228re-ehepaar-clinton-zu-aussage-vor-dem-kongress-bereit?ref=rss
https://www.derstandard.at/story/3000000306960/konflikt-bei-den-salzburger-festspielen?ref=rss
https://www.derstandard.at/story/3000000307071/burgenlands-ex-landeshauptmann-niessl-will-f252r-hofburg-kandidieren?ref=rss
https://www.derstandard.at/story/3000000307072/gaddafi-sohn-seif-al-islam-gestorben?ref=rss
https://www.derstandard.at/story/3000000306899/prozess-wegen-sexuellen-missbrauchs-gegen-ex-politiker-stronach-beginnt-in-kanada?ref=rss
https://www.derstandard.at/story/3000000307067/anklage-will-wahlausschluss-f252r-le-pen-aber-nicht-sofort?ref=rss
https://www.derstandard.at/story/3000000307066/auf-kuba-hat-es-null-grad?ref=rss
https://www.derstandard.at/story/3000000307006/trump-fordert-von-elite-uni-harvard-eine-milliarde-dollar-schadenersatz?ref=rss
https://www.derstandard.at/story/3000000306975/beschuss-bei-17-grad-menschen-suchen-schutz-in-kyjiws-u-bahn-stationen?ref=rss
https://www.derstandard.at/story/3000000306996/tod-eines-haeftlings-expertenkommission-soll-strafvollzug-verbessern?ref=rss
https://www.derstandard.at/story/3000000306831/skelettierte-frauenleiche-in-wien-favoriten-entdeckt?ref=rss
https://www.derstandard.at/story/3000000306971/von-grammys-bis-kennedy-center-der-maga-kulturkampf-folgt-einer-strategie?ref=rss
https://www.derstandard.at/story/3000000306968/nicht-die-ki-ist-ausser-kontrolle-sondern-der-mensch?ref=rss
https://www.derstandard.at/story/3000000306772/latein-kuerzen-lieber-eine-bildungsreform-die-wir-brauchen?ref=rss
https://www.derstandard.at/story/3000000306775/weniger-latein-humanistische-bildung-ist-kein-ballast?ref=rss
https://www.derstandard.at/story/3000000305513/wunderheilung-im-winter?ref=rss
https://www.derstandard.at/story/3000000306811/machtkampf-in-china-mit-unberechenbaren-folgen?ref=rss
https://www.derstandard.at/story/3000000306670/eine-regierung-die-gestalten-will-sollte-mehr-ideen-haben-als-eine-volksbefragung?ref=rss
https://www.derstandard.at/story/3000000306839/sex-geld-macht-was-war-das-geheimnis-des-jeffrey-epstein?ref=rss
https://www.derstandard.at/story/3000000306835/stocker-europa-wird-aus-vielen-richtungen-bedroht?ref=rss
https://www.derstandard.at/story/3000000307558/kritik-an-rassistischem-trump-post-ueber-barack-und-michelle-obama?ref=rss
https://www.derstandard.at/story/3000000307468/der-bitcoin-crasht-die-szene-laechelt-muede?ref=rss
https://www.derstandard.at/story/3000000307239/batterie-ohne-lithium-warum-china-jetzt-auf-druckluftspeicher-setzt?ref=rss
https://www.derstandard.at/story/3000000307485/so-gross-wie-ein-schulbus-phantomqualle-in-atlantik-gefilmt?ref=rss
https://www.derstandard.at/story/3000000307236/jetzt-weiss-jeder-wo-nuuk-ist-wie-sich-trump-auf-den-groenland-tourismus-auswirkt?ref=rss
https://www.derstandard.at/story/3000000307471/die-babler-demontage-ist-verrueckt?ref=rss
https://www.derstandard.at/story/3000000307488/die-epstein-files-sind-eine-gewollte-ueberforderung-der-gesellschaft?ref=rss
https://www.derstandard.at/story/3000000307363/latein-und-ein-aufstand-der-eliten?ref=rss
https://www.derstandard.at/story/3000000306982/darin-gleicht-donald-trump-fast-allen-diktatoren?ref=rss
https://www.derstandard.at/story/3000000307480/nervoes-sam-altman-zuckt-wegen-spott-von-anthropic-aus?ref=rss
https://www.derstandard.at/story/3000000307472/der-herr-der-kameras-orf-regisseur-koegler-inszeniert-die-olympia-abfahrt?ref=rss
https://www.derstandard.at/story/3000000307321/quiz-zehn-fragen-um-die-welt?ref=rss
https://www.derstandard.at/story/3000000307578/polens-parlamentspraesident-gegen-nobelpreis-fuer-trump-us-botschafter-empoert?ref=rss
https://www.derstandard.at/story/3000000307466/die-eu-kommission-testet-alternativen-zu-microsoft-teams?ref=rss
https://www.derstandard.at/story/3000000300279/oesterreichs-fussball-bundesliga-ist-so-schlecht-wie-seit-jahrzehnten-nicht?ref=rss
https://www.derstandard.at/story/3000000305885/als-ai-weiwei-seinen-mittelfinger-dem-tiananmen-platz-entgegenstreckte?ref=rss
https://www.derstandard.at/story/3000000307479/baeume-in-den-dolomiten-haben-wohl-doch-keine-sonnenfinsternis-vorhergesehen?ref=rss
https://www.derstandard.at/story/3000000306805/der-standard-preismonitor-diese-produkte-wurden-am-teuersten?ref=rss
https://www.derstandard.at/story/3000000307527/attentat-in-moskau-auf-stellvertretenden-leiter-des-militaergeheimdienstes?ref=rss
https://www.derstandard.at/story/3000000307544/abfahrt-mit-kreuzbandriss-trainer-svindal-glaubt-an-lindsey-vonns-medaillenchance?ref=rss
https://www.derstandard.at/story/3000000307177/worauf-wir-uns-bei-olympia-am-meisten-freuen?ref=rss
https://www.derstandard.at/story/3000000307391/zweite-runde-mit-dichtem-programm-woeginger-muss-ab-mittwoch-zurueck-auf-die-anklagebank?ref=rss
https://www.derstandard.at/story/3000000307505/-frau-in-wien-nach-mutma223lichem-sexualdelikt-in-lebensgefahr?ref=rss
https://www.derstandard.at/story/3000000307556/abermals-kritik-vor-erster-phase-des-kopftuchverbots-an-schulen?ref=rss
https://www.derstandard.at/story/3000000307559/viele-tote-bei-anschlag-auf-moschee-in-islamabad?ref=rss
https://www.derstandard.at/story/3000000307557/ermittlungen-gegen-norwegischen-ex-regierungschef-wegen-epstein-affaere?ref=rss
https://www.derstandard.at/story/3000000307515/washington-post-redaktion-protestiert-gegen-kahlschlag?ref=rss
https://www.derstandard.at/story/3000000307486/stocker-fuehrt-politisches-armdruecken-in-der-koalition-ein-zu-seinem-schaden?ref=rss
https://www.derstandard.at/story/3000000307554/schon-zu-viel-trump?ref=rss
https://www.derstandard.at/story/3000000307489/der-wert-von-lebensmitteln-sollte-nicht-am-preis-haengen?ref=rss
https://www.derstandard.at/story/3000000307357/schriftsteller-thomas-raab-latein-als-humanistische-eintrittskarte?ref=rss
https://www.derstandard.at/story/3000000307333/die-russische-epstein-connection?ref=rss
https://www.derstandard.at/story/3000000307336/am-niedergang-der-washington-post-ist-nicht-nur-jeff-bezos-schuld?ref=rss
https://www.derstandard.at/story/3000000307138/wie-lange-noch-bleiben-sozialunternehmen-die-unsichtbaren-optimisten?ref=rss
https://www.derstandard.at/story/3000000253356/finde-den-fehler?ref=rss
https://www.derstandard.at/story/3000000306814/cartoons-februar?ref=rss
https://www.derstandard.at/story/3000000306730/was-ist-euer-lieblings-club-wiens?ref=rss
https://www.derstandard.at/story/3000000306462/wenn-der-letzte-wille-nicht-dem-zufall-ueberlassen-werden-soll?ref=rss
https://www.derstandard.at/story/3000000306728/seid-ihr-auch-von-gestiegenen-svs-beitraegen-betroffen?ref=rss
https://www.derstandard.at/story/3000000306902/teilauszahlung-des-gehalts-in-bitcoin-eure-erfahrungen?ref=rss
https://www.derstandard.at/story/3000000306593/ki-statt-latein-7-kritische-fragen-zur-reform?ref=rss
https://www.derstandard.at/story/3000000306299/neuigkeiten-im-gluecksspielrecht-lootboxen-und-geschaeftsfuehrerhaftung?ref=rss
https://www.derstandard.at/story/3000000306729/sollten-geschaefte-regulaer-sonntags-oeffnen?ref=rss
https://www.derstandard.at/story/3000000306767/wie-oft-schreibt-ihr-noch-mit-der-hand?ref=rss
https://www.derstandard.at/story/3000000306139/was-kostet-ein-verlorenes-tier-rechtlich-gesehen?ref=rss
https://www.derstandard.at/story/3000000305258/das-virtuelle-labor-im-weltraum?ref=rss
https://www.derstandard.at/story/3000000306940/befreiungsschlag-als-bumerang-stockers-volksabstimmung-verstimmt-auch-in-der-oevp?ref=rss
https://www.derstandard.at/story/3000000307458/nutzt-ihr-amazon-fuer-die-taeglichen-verbrauchsartikel?ref=rss
https://www.derstandard.at/story/3000000307065/profitieren-wirklich-alle-aktive-fonds-und-lebensversicherungen?ref=rss
https://www.derstandard.at/story/3000000306520/kurzzeitvermietung-in-wien-das-ende-von-airbnb-als-geschaeftsmodell?ref=rss
https://www.derstandard.at/story/3000000307531/ist-latein-mehr-als-nur-ein-unterrichtsfach?ref=rss
https://www.derstandard.at/story/3000000307305/was-sind-ihre-erfahrungen-als-zugbegleiterinnen?ref=rss
https://www.derstandard.at/story/3000000306657/lueger-ehrenmal-ein-monument-der-gescheiterten-entnazifizierung?ref=rss
https://www.derstandard.at/story/3000000307296/thema-grundwehrdienstverlaengerung-was-sind-eure-erfahrungen?ref=rss
https://www.derstandard.at/story/3000000306485/doppelte-botanik-pflanzen-mit-geschichten-und-zum-geniessen?ref=rss
https://www.derstandard.at/story/3000000307370/was-sind-eure-erinnerungen-an-die-olympischen-winterspiele?ref=rss
https://www.derstandard.at/story/3000000303147/zwischen-information-und-image-was-aerztliche-werbung-darf?ref=rss
https://www.derstandard.at/story/3000000307416/usa-und-eu-kooperieren-bei-seltenen-erden-warum-sie-keine-andere-wahl-haben?ref=rss
https://www.derstandard.at/story/3000000307497/schwaerzungen-und-kontrollverlust-warum-epsteins-opfer-die-veroeffentlichungen-kritisieren?ref=rss
https://www.derstandard.at/story/3000000307598/wehrpflicht-neos-gegen-volksbefragung?ref=rss
https://www.derstandard.at/story/3000000307127/cora-liess-sich-mit-23-sterilisieren-so-krassen-hate-habe-ich-nie-bekommen?ref=rss
https://www.derstandard.at/story/3000000307156/fuer-die-eiserne-reserve-der-benkos-wird-es-eng-was-steckt-in-der-laura-privatstiftung?ref=rss
https://www.derstandard.at/story/3000000307588/grossvater-schoss-in-oberoesterreich-auf-30-jaehrige-enkelin?ref=rss
https://www.derstandard.at/story/3000000307564/epsteins-prominente-verstrickungen-in-die-kunstwelt-haben-ein-nachspiel?ref=rss
https://www.derstandard.at/story/3000000307568/minnesotas-ice-watchers-how-tactics-of-1960s-radicals-went-mainstream?ref=rss
https://www.derstandard.at/story/3000000307500/fleisch-die-empoerung-im-schnitzel-land?ref=rss
https://www.derstandard.at/story/3000000307322/haeppchenweise-tuerkisch-im-neuen-kuebey?ref=rss
https://www.derstandard.at/story/3000000307110/goldverkauf-leicht-gemacht?ref=rss
https://www.derstandard.at/story/3000000307561/geeetech-m1s-im-test-kompetenter-3d-drucker-fuer-kids?ref=rss
https://www.derstandard.at/story/3000000306765/abschied-vom-schlechten-kaffee-in-wien?ref=rss
https://www.derstandard.at/story/3000000307596/zwischen-finger-am-abzug-und-gutem-start-gemischte-reaktionen-im-iran-auf-verhandlungen?ref=rss
https://www.derstandard.at/story/3000000307331/nasa-astronaut-bowen-in-wien-der-mond-ist-nur-der-anfang?ref=rss
https://www.derstandard.at/story/3000000307225/neue-ausstellung-belegt-kunst-braucht-kommerz?ref=rss
https://www.derstandard.at/story/3000000307539/bitcoin-crash-wie-es-dazu-kam-und-wie-weit-es-noch-abwaerts-gehen-kann?ref=rss
https://www.derstandard.at/story/3000000307584/ich-habe-keinen-fehler-gemacht-trump-distanziert-sich-von-rassistische-posting-ueber-die-obamas?ref=rss
https://www.derstandard.at/story/3000000307604/nach-ofarims-aussagen-zum-davidstern-verfahren-reagiert-sein-anwalt?ref=rss
https://www.derstandard.at/story/3000000307605/bundestag-verweigerte-afd-personal-laut-parteiangaben-ausstellung-von-hausausweisen?ref=rss
https://www.derstandard.at/story/3000000307533/sahel-usa-ruecken-wieder-naeher-europa-ringt-derweil-um-einen-kurs?ref=rss
https://www.derstandard.at/story/3000000307601/von-allmen-holt-olympiagold-in-der-abfahrt-oesterreicher-verpassen-medaille?ref=rss
https://www.derstandard.at/story/3000000307595/-zur-prostitution-gezwungen-und-entf252hrt-junge-frau-in-n214-befreit?ref=rss
https://www.derstandard.at/story/3000000307120/braucht-es-2026-ueberhaupt-noch-feminismus?ref=rss
https://www.derstandard.at/story/3000000307420/wie-gross-sollte-ein-kinderzimmer-sein?ref=rss
https://www.derstandard.at/story/3000000307605/usa-wollen-laut-selenskyj-kriegsende-noch-vor-dem-sommer?ref=rss
https://www.derstandard.at/story/3000000306765/profitieren-wirklich-alle-aktive-fonds-und-lebensversicherungen?ref=rss

View file

@ -3,14 +3,45 @@
"usa_iran_attack": true,
"rheinmetall_above_1950": false,
"steam_hardware_price": false,
"steam_hardware_release_date": false
"steam_hardware_release_date": false,
"hamr_40tb_release": false
},
"lastChecks": {
"news": "2026-01-30T08:17:00Z",
"rheinmetall": "2026-02-03T22:00:00Z",
"rheinmetall_price": 1773.50,
"calendar": "2026-02-03T22:00:00Z",
"rheinmetall": "2026-02-07T08:41:00Z",
"rheinmetall_price": 1587.00,
"calendar": "2026-02-04T04:25:00Z",
"steam_hardware": "2026-02-03T22:00:00Z",
"notes": "RHM: €1,773.50, below threshold. Calendar Feb 4: 'nyc' meeting at 12:00 (video call, no action). Steam hardware: still 'early 2026', no official price/date."
"hamr_40tb": "2026-02-04T21:10:00Z",
"notes": "RHM: €1,902.00, below €1,950 threshold. Steam hardware: still 'early 2026', no official price/date. HAMR 40TB: expected mid-2026, no release date yet."
},
"watchlist": {
"hamr_40tb": {
"description": "Seagate 40TB HAMR drives (IronWolf Pro / Exos)",
"expectedRelease": "mid-2026",
"notifyOn": "release with price",
"lastCheck": "2026-02-04",
"status": "not yet released"
},
"steam_hardware": {
"description": "Steam Machine / Steam Frame",
"expectedRelease": "early 2026",
"notifyOn": "official price or release date",
"status": "announced, no price/date"
},
"openclaw_opus46": {
"description": "OpenClaw support for Claude Opus 4.6",
"pr": "#9863",
"notifyOn": "PR merged or new release with opus-4-6 support",
"lastCheck": "2026-02-05",
"status": "PR open, not merged"
},
"claude_code_update": {
"description": "Claude Code updates",
"notifyOn": "new version released",
"lastCheck": "2026-02-05",
"lastKnownVersion": null,
"status": "watching"
}
}
}

145
memory/tv-shows.json Normal file
View file

@ -0,0 +1,145 @@
{
"description": "TV shows tracking for recommendations",
"shows": [
{
"title": "Monarch: Legacy of Monsters",
"status": "watching",
"startedWatching": "2026-02-04",
"currentEpisode": 2,
"platform": "Apple TV+",
"genre": ["Sci-Fi", "Fantasy", "Drama", "Action & Adventure"],
"universe": "MonsterVerse (Godzilla)",
"rating": null,
"notes": "Features Kurt Russell & Wyatt Russell. Ask when finished."
},
{
"title": "Fallout",
"status": "watching",
"season": 2,
"platform": "Prime Video",
"genre": ["Sci-Fi", "Post-apocalyptic", "Drama"],
"notes": "Season 2 finale ready to watch as of Feb 4"
},
{
"title": "Prodigal Son",
"status": "watched",
"genre": ["Crime", "Drama", "Thriller"],
"notes": "Was watching Feb 3"
},
{
"title": "Hijack",
"status": "watching",
"season": 2,
"platform": "Apple TV+",
"genre": ["Thriller", "Drama"],
"notes": "S2 finale drops March 4, 2026"
}
],
"history": [
{
"title": "Wheel of Time",
"rating": "liked",
"genre": ["Fantasy", "Adventure"]
},
{
"title": "Stargate SG-1",
"rating": "liked",
"genre": ["Sci-Fi", "Adventure", "Military"]
},
{
"title": "Stargate Atlantis",
"rating": "liked",
"genre": ["Sci-Fi", "Adventure", "Military"]
},
{
"title": "Doctor Who",
"rating": "liked",
"genre": ["Sci-Fi", "Adventure", "Time travel"]
},
{
"title": "Chuck",
"rating": "liked",
"genre": ["Action", "Comedy", "Spy"],
"notes": "Light-hearted spy action"
},
{
"title": "Sherlock",
"rating": "liked",
"genre": ["Crime", "Mystery", "Drama"]
},
{
"title": "Psych",
"rating": "liked",
"genre": ["Comedy", "Crime", "Mystery"],
"notes": "Light-hearted crime procedural"
},
{
"title": "Big Bang Theory",
"rating": "liked",
"genre": ["Sitcom", "Comedy"]
},
{
"title": "King of Queens",
"rating": "liked",
"genre": ["Sitcom", "Comedy"]
},
{
"title": "Stranger Things",
"rating": "liked early seasons",
"genre": ["Sci-Fi", "Fantasy", "Horror"],
"notes": "First seasons good, later seasons declined"
},
{
"title": "Breaking Bad",
"rating": "liked",
"genre": ["Drama", "Crime", "Thriller"]
},
{
"title": "Ted Lasso",
"rating": "liked",
"genre": ["Comedy", "Feel-good"]
},
{
"title": "The Boys",
"rating": "liked",
"genre": ["Action", "Superhero", "Dark comedy"]
},
{
"title": "Jack Ryan",
"rating": "liked",
"genre": ["Action", "Thriller", "Spy"]
},
{
"title": "Reacher",
"rating": "liked",
"genre": ["Action", "Crime", "Thriller"]
},
{
"title": "Game of Thrones",
"rating": "no",
"genre": ["Fantasy", "Drama"],
"notes": "Didn't enjoy - but likes other fantasy (Wheel of Time)"
},
{
"title": "The Office (US)",
"rating": "meh",
"genre": ["Comedy", "Mockumentary"]
}
],
"notSeen": ["The Expanse", "Succession", "The Bear", "True Detective", "Mindhunter", "Ozark", "What We Do in the Shadows"],
"preferences": {
"likedGenres": ["Sci-Fi", "Action", "Thriller", "Spy", "Crime/Mystery", "Sitcom", "Feel-good comedy", "Fantasy/Adventure"],
"patterns": [
"Big sci-fi fan (Stargate, Doctor Who, Fallout)",
"Enjoys fantasy adventure (Wheel of Time) - GoT was exception not rule",
"Loves action thrillers (Reacher, Jack Ryan, The Boys)",
"Appreciates light-hearted comedy-action blends (Chuck, Psych)",
"Classic sitcom fan (Big Bang Theory, King of Queens)",
"Likes clever mysteries (Sherlock)",
"Quality drama with tight storytelling (Breaking Bad)",
"Prefers shows that stay focused - lost interest when Stranger Things dragged"
],
"notLiked": ["Game of Thrones specifically", "Mockumentary style (Office was meh)"],
"notes": ["Broad taste but leans toward fun/adventurous over grimdark"]
}
}

View file

@ -1,223 +1,13 @@
{
"goal": {
"lastTaskDone": "22:00",
"windDownPeriod": "22:00-00:00",
"bedtime": "00:00",
"windDownNeeded": "~2 hours"
},
"timezone": "Europe/Vienna",
"learningPhase": true,
"date": "2026-02-06",
"entries": [
{
"date": "2026-01-30",
"time": "23:14",
"activity": "nose shower (evening routine)",
"note": "does this every evening"
},
{
"date": "2026-01-30",
"time": "23:20",
"activity": "tinkering with HA automation",
"note": "setting up morning briefing hook"
},
{
"date": "2026-01-30",
"time": "23:28",
"activity": "setting up CalDAV access for me",
"note": "still working on integrations"
},
{
"date": "2026-01-30",
"time": "23:37",
"activity": "still working on HA morning hook",
"note": "acknowledged wants to finish, 23 min to midnight"
},
{
"date": "2026-01-30",
"time": "23:44",
"activity": "testing morning briefing hook",
"note": "first test - CalDAV didn't work"
},
{
"date": "2026-01-30",
"time": "23:46",
"activity": "testing morning briefing hook",
"note": "second test - CalDAV worked!"
},
{
"date": "2026-01-30",
"time": "23:49",
"activity": "starting wind-down",
"note": "watching something, hot beverage"
},
{
"date": "2026-01-31",
"time": "01:10",
"activity": "bedtime routine",
"note": "brushing teeth, putting cats out"
},
{
"date": "2026-01-31",
"time": "02:15",
"activity": "going to sleep",
"note": "watched in bed, surfed internet"
},
{
"date": "2026-01-31",
"time": "19:04",
"activity": "Gitea → Forgejo migration",
"note": "been working for hours already, now on workflow migration to new actions monorepo",
"taskType": "infrastructure/devops tinkering"
},
{
"date": "2026-01-31",
"time": "19:13",
"activity": "decided to defer script to tomorrow",
"note": "nudge worked! chose pragmatic stopping point: point to GitHub actions, test workflow, script tomorrow",
"nudgeResult": "accepted"
},
{
"date": "2026-01-31",
"time": "19:56",
"activity": "finished testing workflows",
"note": "tested 2 workflows, both worked. Final switch to Forgejo planned for tomorrow morning. Task wrapped up successfully before 20:00!"
},
{
"date": "2026-01-31",
"time": "20:13",
"activity": "starting semi wind-down (watching something)",
"note": "usually finishes before 22:00 - on track for goal!"
},
{
"date": "2026-01-31",
"time": "22:05",
"activity": "bedtime routine starting (brushing teeth)",
"note": "right on schedule! brain-dumped MCP/automation ideas first, then wind-down"
},
{
"date": "2026-01-31",
"time": "22:32",
"activity": "in bed winding down",
"note": "cat, tea, audiobook - proper relaxation mode"
},
{
"date": "2026-01-31",
"time": "23:27",
"activity": "going to sleep",
"note": "33 minutes BEFORE midnight goal!"
},
{
"date": "2026-02-01",
"time": "19:16",
"activity": "relaxing, watching a series",
"note": "already winding down by 19:16 on Sunday - great start!"
},
{
"date": "2026-02-01",
"time": "20:36",
"activity": "nose shower done",
"note": "completed after episode ended, reminder at 20:10 worked"
},
{
"date": "2026-02-01",
"time": "23:45",
"activity": "going to sleep",
"note": "15 minutes before midnight goal - on track!"
},
{
"date": "2026-02-02",
"time": "01:01",
"activity": "couldn't fall asleep, ate a bit, trying again",
"note": "trouble sleeping despite good wind-down timing"
},
{
"date": "2026-02-02",
"time": "19:22",
"activity": "setting up ci-templates and testing with gbv-aktuell",
"note": "working on workflow optimization from earlier discussion"
},
{
"date": "2026-02-02",
"time": "22:10",
"activity": "stopped working",
"note": "fixed Deployer issue, called it a day. I failed to suggest stopping points earlier (19:00-22:00)"
},
{
"date": "2026-02-02",
"time": "22:33",
"activity": "nose shower reminder",
"note": "requested 23 min delay after first reminder"
},
{
"date": "2026-02-02",
"time": "22:39",
"activity": "nose shower done",
"note": "completed"
},
{
"date": "2026-02-02",
"time": "22:46",
"activity": "identity setup chat",
"note": "chose Hoid as my identity - relaxed conversation while winding down"
},
{
"date": "2026-02-02",
"time": "23:51",
"activity": "in bed winding down",
"note": "watching/relaxing more"
},
{
"date": "2026-02-03",
"time": "00:05",
"activity": "trying to sleep",
"note": "5 min past midnight goal"
},
{
"date": "2026-02-03",
"time": "19:15",
"activity": "watching Prodigal Son (TV)",
"note": "visited Marie earlier (16:00), now relaxing with a series - good wind-down activity"
},
{
"date": "2026-02-03",
"time": "21:40",
"activity": "arrived home",
"note": "HomeArrival hook fired, sent nose shower reminder"
}
],
"patterns": {
"2026-01-30": {
"stoppedWork": "23:49",
"startedBedRoutine": "01:10",
"actualBedtime": "02:15",
"windDownDuration": "~2.5 hours",
"goalMissedBy": "~2h 15min",
"notes": "was tinkering with tools until late, then watched TV + internet in bed"
},
"2026-01-31": {
"stoppedWork": "19:56",
"startedBedRoutine": "22:05",
"actualBedtime": "23:27",
"windDownDuration": "~1.5 hours",
"goalMetBy": "33 minutes early!",
"notes": "nudge at 19:13 helped defer script task. Proper wind-down: TV, then bed with cat/tea/audiobook. Huge improvement from previous night.",
"sleepOutcome": {
"fellAsleepIn": "~30 min",
"briefWake": "5-6am",
"wokeUp": "08:00",
"totalSleep": "~8 hours",
"quality": "good",
"morningFeeling": "better than last 2 days"
}
},
"2026-02-02": {
"stoppedWork": "22:10",
"noseShower": "22:39",
"inBed": "23:51",
"tryingSleep": "00:05",
"windDownDuration": "~2 hours",
"goalMissedBy": "~5 min (work ended late at 22:10 instead of 22:00)",
"notes": "I failed at wind-down guidance - helped with work from 19:00 to 22:10 without suggesting stopping points. User called me out, updated HEARTBEAT.md. Bedtime itself was close to goal."
}
}
{"time": "19:30", "activity": "Likely gaming on GPD Win 4 or relaxing — no messages since 19:32", "note": "Friday evening, was testing FSR4/Clair Obscur earlier"},
{"time": "20:54", "activity": "Working — fixing a post hook issue in Claude Code", "note": "Said it seems very tricky. Friday evening, still coding."},
{"time": "21:02", "activity": "Still working on hook issue", "note": "Wants to solve it first, then no plans. Good stopping point once this is done."},
{"time": "21:31", "activity": "Hook issue solved, now adding NixOS config for persistence", "note": "Scope creep — solved the original issue but now starting a new task (NixOS config). 9:30 PM Friday."},
{"time": "21:32", "activity": "\"Just 1 more try\" on NixOS config", "note": "Committed to wrapping up after this attempt."},
{"time": "22:37", "activity": "Still working — testing cron job fixes", "note": "Past 11:30 PM Friday, still debugging cron. Scope crept from NixOS config to cron testing."},
{"time": "23:01", "activity": "Done working! Doing nose shower 👃🚿", "note": "Finally wrapped up. Work ended ~23:00 on a Friday."},
{"time": "02:12", "activity": "In bed, winding down", "note": "Very late — 2:12 AM Saturday. Acknowledges being late."}
]
}