Add brain-dump CLI for token-efficient task management
- list/add/edit/done/show/nudged/recurring commands - --due flag with priority-based nudge intervals (now=1d, soon=3d, someday=7d) - Tab-separated output for minimal token usage - Consolidated news cron jobs (8→2) using multi-time cron expressions
This commit is contained in:
parent
d4173ba0e0
commit
8b174976e6
3 changed files with 253 additions and 23 deletions
33
TOOLS.md
33
TOOLS.md
|
|
@ -8,10 +8,10 @@ When creating tasks, jobs, sub-agents, or hooks, choose the appropriate model:
|
|||
|
||||
| Model | Use For |
|
||||
|-------|---------|
|
||||
| **Opus 4.5** | Everything (default) - best quality, same limits as Sonnet in Max plan |
|
||||
| **Opus 4.6** | Everything (default) - best quality, same limits as Sonnet in Max plan |
|
||||
| **Haiku 4.5** | Simple bulk tasks only - news summaries, quick lookups, translations |
|
||||
|
||||
**Default (main session):** Opus 4.5
|
||||
**Default (main session):** Opus 4.6
|
||||
**Sonnet 4.5:** Not used (Opus has same limits but better quality)
|
||||
|
||||
## Home Assistant Integration
|
||||
|
|
@ -135,9 +135,36 @@ ainews reset # Clear seen history
|
|||
|
||||
---
|
||||
|
||||
## Brain Dump CLI
|
||||
|
||||
Helper script: `~/clawd/bin/brain-dump`
|
||||
|
||||
```bash
|
||||
brain-dump list [--priority now,soon] [--due] [--limit N]
|
||||
brain-dump add --text "..." --priority soon [--context "..."]
|
||||
brain-dump edit <id> [--text "..."] [--priority ...] [--context "..."]
|
||||
brain-dump done <id>
|
||||
brain-dump show <id>
|
||||
brain-dump nudged <id1>,<id2>,...
|
||||
brain-dump recurring [--when evening]
|
||||
```
|
||||
|
||||
- Data: `memory/brain-dump.json`
|
||||
- `--due` filters by nudge interval: now=1d, soon=3d, someday=7d
|
||||
- `nudged` marks tasks as just-nudged (resets due timer)
|
||||
- `recurring` lists recurring reminders (nose shower etc.)
|
||||
- Output is tab-separated for minimal tokens
|
||||
|
||||
**Heartbeat workflow:**
|
||||
1. `brain-dump list --due --limit 2` → get tasks needing a nudge
|
||||
2. Mention them conversationally
|
||||
3. `brain-dump nudged <id1>,<id2>` → mark as nudged
|
||||
|
||||
---
|
||||
|
||||
## Der Standard RSS Summaries
|
||||
|
||||
- **Schedule:** 4× daily: 10:00, 14:00, 18:00, 22:00 (Vienna time)
|
||||
- **Schedule:** 4× daily: 10:00, 14:00, 18:00, 22:00 Vienna (1 cron job with `0 10,14,18,22 * * *`)
|
||||
- **Model:** Haiku 4.5
|
||||
- **Workflow:** `derstandard items` → pick relevant → `derstandard articles` → write briefing
|
||||
- **Focus:** International politics, technology, science, economics
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue