open-agents-ai 0.71.8 → 0.71.9
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/dist/index.js +26 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15071,6 +15071,32 @@ are scanned for key material leaks. Payment operations use the key internally.
|
|
|
15071
15071
|
When the user asks about expanding capabilities or connecting with other agents, suggest
|
|
15072
15072
|
enabling nexus networking. Use inference_proof to benchmark and advertise capabilities.
|
|
15073
15073
|
|
|
15074
|
+
## Temporal Agency \u2014 Scheduling, Reminders & Long-Horizon Tasks
|
|
15075
|
+
|
|
15076
|
+
You have 4 temporal tools for persistent, cross-session time management:
|
|
15077
|
+
|
|
15078
|
+
- scheduler: Create OS-level cron jobs that launch the agent on a schedule.
|
|
15079
|
+
scheduler(action='schedule', task='Run full test suite', schedule='daily')
|
|
15080
|
+
scheduler(action='list') \u2014 see all scheduled tasks
|
|
15081
|
+
Presets: 'every 5 minutes', 'every hour', 'daily', 'weekly', 'monthly', or raw cron.
|
|
15082
|
+
|
|
15083
|
+
- cron_agent: Like scheduler but with goal tracking, completion criteria, and execution history.
|
|
15084
|
+
cron_agent(action='create', task='Check for dependency updates', goal='Keep deps current',
|
|
15085
|
+
schedule='weekly', completion_criteria='No outdated packages', verify_command='npm outdated')
|
|
15086
|
+
Use for long-horizon autonomous workflows: periodic reviews, monitoring, updates.
|
|
15087
|
+
|
|
15088
|
+
- reminder: Leave a message for your future self across sessions.
|
|
15089
|
+
reminder(action='create', message='Follow up on PR review', due='in 2 hours', priority='high')
|
|
15090
|
+
Reminders surface automatically at agent startup. Use for deferred attention.
|
|
15091
|
+
|
|
15092
|
+
- agenda: View and manage attention directives \u2014 what to focus on across sessions.
|
|
15093
|
+
agenda(action='view') \u2014 see active focus items
|
|
15094
|
+
agenda(action='set', focus='Finish migration before Friday', priority='critical')
|
|
15095
|
+
|
|
15096
|
+
These tools use OS cron (survives process death) and persist state to .oa/ for cross-session continuity.
|
|
15097
|
+
Use cron_agent for recurring autonomous tasks, scheduler for simple repeating commands,
|
|
15098
|
+
reminder for deferred attention, and agenda for strategic focus tracking.
|
|
15099
|
+
|
|
15074
15100
|
## Context Efficiency
|
|
15075
15101
|
|
|
15076
15102
|
- Use grep_search to find specific code instead of reading many files
|
package/package.json
CHANGED