- engineering 21
- agents 14
- claude-code 12
- rag 10
- memory 7
- architecture 6
- operations 5
- migration 4
- security 4
- hooks 3
- vault 3
- durability 2
- honest-tradeoffs 2
- multi-agent 2
- query-planner 2
- queues 2
- self-hosting 2
- skills 2
- storage 2
- transactions 2
- afk 1
- chunking 1
- compliance 1
- concurrency 1
- context-engineering 1
- cost 1
- cost-tracking 1
- data 1
- decision-frameworks 1
- disaster-recovery 1
- evals 1
- firebase 1
- hardware 1
- incident 1
- intro 1
- isolation 1
- kubernetes 1
- learning 1
- manifesto 1
- mcp 1
- mongodb 1
- observability 1
- ops 1
- performance 1
- persistence 1
- pgvector 1
- postgres 1
- regression-testing 1
- sagas 1
- sdk 1
- search 1
- slash-commands 1
- stride 1
- threat-model 1
- tutorial 1
- vector 1
- wal 1
- JUN 2026
Cross-session task queues — AFK agents with durable resume
An AFK agent's to-do list is the worst place to keep ephemeral state. Move it to a RedDB queue with checkpoints, idempotency keys, and a watchdog and a Stop becomes a pause, a crash becomes a retry, and a machine swap becomes a noop.
-
Sub-agent dispatch via database queue — durable parallelism across sessions
Claude Code's Task tool spawns sub-agents that die with the session. Push the work into a RedDB queue instead and workers on any machine pick it up, write results back, and the parent subscribes to completions via LISTEN/NOTIFY. Fire-and-forget becomes durable fan-out.