open-agents-ai 0.36.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 +64 -1
- package/dist/index.js +1301 -249
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ An autonomous multi-turn tool-calling agent that reads your code, makes changes,
|
|
|
29
29
|
|
|
30
30
|
## Features
|
|
31
31
|
|
|
32
|
-
- **
|
|
32
|
+
- **51 autonomous tools** — file I/O, shell, grep, web search/fetch/crawl, memory (read/write/search), sub-agents, background tasks, image/OCR/PDF, git, diagnostics, vision, desktop automation, browser automation, temporal agency (scheduler/reminders/agenda), structured files, code sandbox, transcription, skills
|
|
33
33
|
- **Moondream vision** — see and interact with the desktop via Moondream VLM (caption, query, detect, point-and-click)
|
|
34
34
|
- **Desktop automation** — vision-guided clicking: describe a UI element in natural language, the agent finds and clicks it
|
|
35
35
|
- **Auto-install desktop deps** — screenshot, mouse, OCR, and image tools auto-install missing system packages (scrot, xdotool, tesseract, imagemagick) on first use
|
|
@@ -49,6 +49,7 @@ An autonomous multi-turn tool-calling agent that reads your code, makes changes,
|
|
|
49
49
|
- **Structured file reading** — parse CSV, TSV, JSON, Markdown tables with binary format detection
|
|
50
50
|
- **Multi-provider web search** — DuckDuckGo (free), Tavily (structured), Jina AI (markdown) with auto-detection
|
|
51
51
|
- **Browser automation** — headless Chrome control via Selenium: navigate, click, type, screenshot, read DOM — auto-starts on first use with self-bootstrapping Python venv
|
|
52
|
+
- **Temporal agency** — schedule future tasks via OS cron, set cross-session reminders, flag attention items — startup injection surfaces due items automatically
|
|
52
53
|
- **Web crawling** — multi-page web scraping with Crawlee/Playwright for deep documentation extraction
|
|
53
54
|
- **Task templates** — specialized system prompts and tool recommendations for code, document, analysis, plan tasks
|
|
54
55
|
- **Auto-expanding context** — detects RAM/VRAM and creates an optimized model variant on first run
|
|
@@ -378,6 +379,64 @@ Available actions:
|
|
|
378
379
|
|
|
379
380
|
The service runs on `localhost:8130` and uses headless Chrome/Chromium. Requires Python 3.9+ and Chrome or Chromium installed on the system.
|
|
380
381
|
|
|
382
|
+
### Temporal Agency — Scheduling, Reminders & Attention
|
|
383
|
+
|
|
384
|
+
The agent has persistent temporal awareness across sessions. Three tools work together to let the agent schedule future work, leave notes for its future self, and track items that need attention.
|
|
385
|
+
|
|
386
|
+
**Scheduler** — Create OS-level cron jobs that auto-launch the agent:
|
|
387
|
+
|
|
388
|
+
```
|
|
389
|
+
Agent: scheduler(action="create", task="run npm audit and fix vulnerabilities", schedule="weekly")
|
|
390
|
+
→ Scheduled task created: sched-a1b2c3d4
|
|
391
|
+
Schedule: weekly on day 1 at 9:00
|
|
392
|
+
|
|
393
|
+
Agent: scheduler(action="create", task="check API health", schedule="every 30 minutes")
|
|
394
|
+
→ Scheduled task created: sched-e5f6a7b8
|
|
395
|
+
```
|
|
396
|
+
|
|
397
|
+
Schedule formats: presets (`daily`, `hourly`, `every 5 minutes`, `weekly`), natural language (`in 30m`, `at 14:30`), or raw cron (`0 */2 * * *`).
|
|
398
|
+
|
|
399
|
+
**Reminder** — Cross-session messages-in-a-bottle:
|
|
400
|
+
|
|
401
|
+
```
|
|
402
|
+
Agent: reminder(action="set", message="Verify auth migration tokens after deploy", priority="high", due="tomorrow")
|
|
403
|
+
→ Reminder set: rem-c4d5e6f7 (due: tomorrow morning)
|
|
404
|
+
|
|
405
|
+
# Next startup:
|
|
406
|
+
⚠ 1 urgent item(s) need attention
|
|
407
|
+
Reminder: Verify auth migration tokens after deploy
|
|
408
|
+
```
|
|
409
|
+
|
|
410
|
+
Reminders support priority levels (`low`/`normal`/`high`/`critical`), due dates, tags, context, snoozing, and auto-surface at startup.
|
|
411
|
+
|
|
412
|
+
**Agenda** — Unified temporal dashboard:
|
|
413
|
+
|
|
414
|
+
```
|
|
415
|
+
Agent: agenda()
|
|
416
|
+
→ AGENT AGENDA
|
|
417
|
+
──────────────────────────────────────────────
|
|
418
|
+
REMINDERS DUE (2):
|
|
419
|
+
[!!] [rem-a1b2] Verify auth migration tokens
|
|
420
|
+
[*] [rem-c3d4] Update API docs
|
|
421
|
+
|
|
422
|
+
ATTENTION ITEMS (1):
|
|
423
|
+
[!!] [attn-e5f6] (followup) PR #42 needs re-review
|
|
424
|
+
|
|
425
|
+
SCHEDULED TASKS (1 active):
|
|
426
|
+
[sched-g7h8] weekly on day 1 at 9:00: run npm audit
|
|
427
|
+
```
|
|
428
|
+
|
|
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` |
|
|
439
|
+
|
|
381
440
|
### Setup
|
|
382
441
|
|
|
383
442
|
Moondream runs locally — no API keys, no cloud, your screen data never leaves your machine:
|
|
@@ -547,6 +606,10 @@ While the agent is working (shown by the `+` prompt), type to add context:
|
|
|
547
606
|
| `manage_tools` | List, inspect, delete custom tools |
|
|
548
607
|
| `skill_list` | Discover available AIWG skills |
|
|
549
608
|
| `skill_execute` | Run an AIWG skill |
|
|
609
|
+
| **Temporal Agency** | |
|
|
610
|
+
| `scheduler` | Schedule tasks for automatic future execution via OS cron (presets, natural language, raw cron) |
|
|
611
|
+
| `reminder` | Set cross-session reminders with priority, due dates, tags — surfaces at startup |
|
|
612
|
+
| `agenda` | Unified view of reminders, schedules, and attention items with startup brief |
|
|
550
613
|
| **AIWG SDLC** | |
|
|
551
614
|
| `aiwg_setup` | Deploy AIWG SDLC framework |
|
|
552
615
|
| `aiwg_health` | Analyze project SDLC health and readiness |
|