open-agents-ai 0.37.0 → 0.37.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -426,7 +426,16 @@ Agent: agenda()
|
|
|
426
426
|
[sched-g7h8] weekly on day 1 at 9:00: run npm audit
|
|
427
427
|
```
|
|
428
428
|
|
|
429
|
-
|
|
429
|
+
**Design decisions backed by research:**
|
|
430
|
+
|
|
431
|
+
| Decision | Research Basis | Key Finding |
|
|
432
|
+
|----------|---------------|-------------|
|
|
433
|
+
| Separate directive store (`.oa/scheduled/`, not `.oa/memory/`) | SSGM (arXiv:2603.11768, 2026) | Directives in summarizable memory corrupt via compaction — semantic drift degrades scheduling data |
|
|
434
|
+
| File-based persistence survives process death | MemGPT/Letta (Packer et al. 2023, arXiv:2310.08560) | Agents are ephemeral; state must be external to the process |
|
|
435
|
+
| Priority-based startup surfacing | A-MAC (arXiv:2603.04549, 2026) | 5-factor attention scoring; content type prior is most influential factor (31% latency reduction) |
|
|
436
|
+
| Cross-session self-reflection | Reflexion (Shinn et al. 2023, arXiv:2303.11366) | Persistent self-reflection stored as text improves task success 20-30% |
|
|
437
|
+
| Time-weighted memory retrieval | Generative Agents (Park et al. 2023, arXiv:2304.03442) | `score = α·recency + β·importance + γ·relevance` — canonical formula for attention queues |
|
|
438
|
+
| OS-level cron for invocation | Zep (arXiv:2501.13956, 2025), ELT survey (arXiv:2602.21568, 2026) | cron has known silent failure modes; future work: systemd timers with `Persistent=true` |
|
|
430
439
|
|
|
431
440
|
### Setup
|
|
432
441
|
|
package/package.json
CHANGED