omnius 1.0.28 → 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 CHANGED
@@ -2128,7 +2128,7 @@ On startup and `/model` switch, Omnius detects your RAM/VRAM and creates an opti
2128
2128
  | `skill_execute` | Run an AIWG skill |
2129
2129
  | **Temporal Agency** | |
2130
2130
  | `scheduler` / `cronjob` | Schedule tasks for automatic future execution via OS cron (intervals, 24-hour clock, weekly/monthly/yearly, raw cron) |
2131
- | `reminder` / `remind` / `reminders` | Set scoped minimal reminders or scheduled action triggers with priority, recurrence, tags, and context |
2131
+ | `reminder` / `remind` / `reminders` | Set scoped minimal reminders or scheduled action triggers; `due_at` is required for one-shot reminders |
2132
2132
  | `agenda` | Unified view of reminders, schedules, and attention items with startup brief |
2133
2133
  | **AIWG SDLC** | |
2134
2134
  | `aiwg_setup` | Deploy AIWG SDLC framework |
@@ -3208,14 +3208,14 @@ Schedule formats: presets (`daily`, `hourly`, `weekly`, `monthly`, `yearly`), in
3208
3208
  **Reminder** — Scoped minimal reminders or scheduled action triggers:
3209
3209
 
3210
3210
  ```
3211
- Agent: reminder(action="set", kind="minimal", message="Verify auth migration tokens after deploy", priority="high", due="tomorrow")
3211
+ Agent: reminder(action="set", kind="minimal", message="Verify auth migration tokens after deploy", priority="high", due_at="tomorrow")
3212
3212
  → Reminder set: rem-c4d5e6f7 (due: tomorrow morning)
3213
3213
 
3214
3214
  Agent: remind(action="set", kind="action", message="Nightly health check", task_description="Check API health and file an agenda item if unhealthy", repeat="daily", time="21:00")
3215
3215
  → Alias for reminder; action will trigger daily at 21:00
3216
3216
  ```
3217
3217
 
3218
- `kind="minimal"` delivers raw reminder content only. `kind="action"` requires `task_description` and starts an agent task when due. Reminders support private/public scopes per surface (`tui`, `gui`, `telegram`, `api`, `global`), priority levels (`low`/`normal`/`high`/`critical`), due dates, interval/daily/weekly/monthly/yearly recurrence, tags, context, snoozing, and completion/dismissal.
3218
+ `kind="minimal"` delivers raw reminder content only. `kind="action"` requires `task_description` and starts an agent task when due. For `action="set"`, `due_at` is required unless `repeat`/`recurrence` is present; `due` and `do_at` are accepted aliases. Derive `due_at` from the user's requested trigger (`"remind me in 5 minutes to get coffee"` -> `due_at="in 5 minutes"`, `message="Get coffee"`), and keep `message`/`content` free of scheduling prose. Supported due formats include relative times (`in 5 minutes`, `5m`, `in 2 hours`), 24-hour local clock times (`at 14:30`, `tomorrow at 09:00`), `tomorrow`, `next week`, `now`, `next startup`, and ISO timestamps. Reminders support private/public scopes per surface (`tui`, `gui`, `telegram`, `api`, `global`), priority levels (`low`/`normal`/`high`/`critical`), due dates, interval/daily/weekly/monthly/yearly recurrence, tags, context, snoozing, and completion/dismissal.
3219
3219
 
3220
3220
  **Agenda** — Unified temporal dashboard:
3221
3221
 
@@ -3336,6 +3336,7 @@ Image surfaces are first-class in the terminal. `/image` generations, generated-
3336
3336
  | `/verbose` | Toggle verbose mode |
3337
3337
  | `/style [preset]` | Set personality style: `concise`, `balanced`, `verbose`, `pedagogical` |
3338
3338
  | `/personality [preset]` | Alias for `/style` |
3339
+ | `/selfmodify [on\|off\|status]` | Toggle agent-decided slash-command self-modification for natural-language runtime/UI requests (default off) |
3339
3340
  | **Tools & Skills** | |
3340
3341
  | `/tools` | List agent-created custom tools |
3341
3342
  | `/skills [keyword]` | List/search available AIWG skills |
@@ -3343,7 +3344,7 @@ Image surfaces are first-class in the terminal. `/image` generations, generated-
3343
3344
  | **Temporal Agency** | |
3344
3345
  | `/scheduler [menu\|list\|kill]` | Manage OS-backed scheduled agent tasks |
3345
3346
  | `/cron` | Alias for `/scheduler` |
3346
- | `/remind [in 30m\|tomorrow\|at 14:30] <message>` | Set a scoped minimal reminder for the current TUI session |
3347
+ | `/remind <when> <message>` | Set a scoped minimal reminder for the current TUI session; due time is required (`in 30m`, `5m`, `tomorrow at 09:00`, `at 14:30`) |
3347
3348
  | `/reminder [list\|all]` | List scoped TUI reminders |
3348
3349
  | `/reminders` | Alias for `/reminder` |
3349
3350
  | **Workspace Explorer** | |
@@ -3393,6 +3394,7 @@ Image surfaces are first-class in the terminal. `/image` generations, generated-
3393
3394
  | `/stats` | Show session dashboard (turns, tools, tokens, files, task history) |
3394
3395
  | `/task-type <type>` | Set task type for specialized prompts (code, document, analysis, plan) |
3395
3396
  | `/update` | Check for and install updates (seamless context-preserving reload) |
3397
+ | `/update check\|quick\|full` | Non-interactive update paths for status checks, package update, or full maintenance update |
3396
3398
  | `/update auto\|manual` | Set update mode (auto after task completion, or manual only) |
3397
3399
  | **General** | |
3398
3400
  | `/config` | Show current configuration |