omnius 1.0.27 → 1.0.29
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 +6 -4
- package/dist/index.js +913 -436
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
- package/prompts/agentic/system-large.md +3 -2
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.29",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "omnius",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.29",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
package/package.json
CHANGED
|
@@ -479,8 +479,9 @@ You have 4 temporal tools for persistent, cross-session time management:
|
|
|
479
479
|
Use for long-horizon autonomous workflows: periodic reviews, monitoring, updates.
|
|
480
480
|
|
|
481
481
|
- reminder: Leave a message for your future self across sessions.
|
|
482
|
-
reminder(action='
|
|
483
|
-
|
|
482
|
+
reminder(action='set', message='Follow up on PR review', due_at='in 2 hours', priority='high')
|
|
483
|
+
For action='set', due_at is mandatory unless repeat/recurrence is present. Derive it from the user's requested time phrase (for example, "remind me in 5 minutes to get coffee" means due_at='in 5 minutes' and message='Get coffee'). Keep message/content as payload only, with no "you asked me..." scheduling prose.
|
|
484
|
+
Reminders surface automatically when due. Use for deferred attention.
|
|
484
485
|
|
|
485
486
|
- agenda: View and manage attention directives — what to focus on across sessions.
|
|
486
487
|
agenda(action='view') — see active focus items
|