omnius 1.0.24 → 1.0.26
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 +22 -14
- package/dist/index.js +1224 -95
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -276,7 +276,7 @@ The agent uses tools autonomously in a loop — reading errors, fixing code, and
|
|
|
276
276
|
|
|
277
277
|
<div align="right"><a href="#top">back to top</a></div>
|
|
278
278
|
|
|
279
|
-
- **
|
|
279
|
+
- **60+ 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, opencode delegation, cron agents, nexus P2P networking + x402 micropayments, **COHERE cognitive stack** (persistent REPL, recursive LLM calls, memory metabolism, identity kernel, reflection, exploration)
|
|
280
280
|
- **Moondream vision** — see and interact with the desktop via Moondream VLM (caption, query, detect, point-and-click)
|
|
281
281
|
- **Image generation with TUI previews** — `/image <prompt>` and the `generate_image` tool create PNGs under `.omnius/images/`, support explicit `--model` selection, try a ranked quality fallback ladder from FLUX.1 dev / SD3.5 Large down to lightweight smoke-test models when setup or generation fails, and render generated, pasted, screenshot, and camera-capture images as auto-sized ASCII previews via the bundled `image-to-ascii` renderer
|
|
282
282
|
- **Sound and music generation** — `/sound` and `/music` generate WAV files under `.omnius/audio/`, auto-create backend venvs under `.omnius/audio-gen/`, and fall back from high-quality Stable Audio / AudioLDM / MusicGen tiers to smaller practical models when a larger setup or model download fails. Stable Audio uses Diffusers `StableAudioPipeline` instead of the build-prone `stable-audio-tools` package
|
|
@@ -337,7 +337,7 @@ The daemon auto-installs Python dependencies (OpenCLIP, torchaudio + soundfile,
|
|
|
337
337
|
- **Structured file reading** — parse CSV, TSV, JSON, Markdown tables with binary format detection
|
|
338
338
|
- **On-device web search** — DuckDuckGo (free, no API keys, fully private)
|
|
339
339
|
- **Browser automation** — headless Chrome control via Selenium: navigate, click, type, screenshot, read DOM — auto-starts on first use with self-bootstrapping Python venv
|
|
340
|
-
- **Temporal agency** — schedule future tasks via OS cron, set
|
|
340
|
+
- **Temporal agency** — schedule future tasks via OS cron, set scoped minimal reminders, and trigger future agent actions on interval, 24-hour clock, weekly, monthly, or yearly schedules
|
|
341
341
|
- **Web crawling** — multi-page web scraping with Crawlee/Playwright for deep documentation extraction
|
|
342
342
|
- **Task templates** — specialized system prompts and tool recommendations for code, document, analysis, plan tasks
|
|
343
343
|
- **Inference capability scoring** — canirun.ai-style hardware assessment at first launch and on demand: memory/compute/speed scores, per-model compatibility matrix, `/models` runtime fit ratings, `/image list` image-model fit ratings, and recommended model selection
|
|
@@ -2127,8 +2127,8 @@ On startup and `/model` switch, Omnius detects your RAM/VRAM and creates an opti
|
|
|
2127
2127
|
| `skill_list` | Discover available AIWG skills |
|
|
2128
2128
|
| `skill_execute` | Run an AIWG skill |
|
|
2129
2129
|
| **Temporal Agency** | |
|
|
2130
|
-
| `scheduler` | Schedule tasks for automatic future execution via OS cron (
|
|
2131
|
-
| `reminder` | Set
|
|
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 |
|
|
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 |
|
|
@@ -3198,22 +3198,24 @@ Agent: scheduler(action="create", task="run npm audit and fix vulnerabilities",
|
|
|
3198
3198
|
|
|
3199
3199
|
Agent: scheduler(action="create", task="check API health", schedule="every 30 minutes")
|
|
3200
3200
|
→ Scheduled task created: sched-e5f6a7b8
|
|
3201
|
+
|
|
3202
|
+
Agent: cronjob(action="create", task="weekly dependency review", schedule="weekly friday at 17:45")
|
|
3203
|
+
→ Alias for scheduler; scheduled task created
|
|
3201
3204
|
```
|
|
3202
3205
|
|
|
3203
|
-
Schedule formats: presets (`daily`, `hourly`, `every 5 minutes`, `
|
|
3206
|
+
Schedule formats: presets (`daily`, `hourly`, `weekly`, `monthly`, `yearly`), intervals (`every 5 minutes`, `every 2 hours`), 24-hour clock times (`at 14:30`, `daily at 09:00`), weekly/monthly/yearly forms (`weekly friday at 17:45`, `monthly on 15 at 08:30`, `yearly on jan 15 at 09:00`), or raw cron (`0 */2 * * *`).
|
|
3204
3207
|
|
|
3205
|
-
**Reminder** —
|
|
3208
|
+
**Reminder** — Scoped minimal reminders or scheduled action triggers:
|
|
3206
3209
|
|
|
3207
3210
|
```
|
|
3208
|
-
Agent: reminder(action="set", 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="tomorrow")
|
|
3209
3212
|
→ Reminder set: rem-c4d5e6f7 (due: tomorrow morning)
|
|
3210
3213
|
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
Reminder: Verify auth migration tokens after deploy
|
|
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
|
+
→ Alias for reminder; action will trigger daily at 21:00
|
|
3214
3216
|
```
|
|
3215
3217
|
|
|
3216
|
-
Reminders support priority levels (`low`/`normal`/`high`/`critical`), due dates, tags, context, snoozing, and
|
|
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.
|
|
3217
3219
|
|
|
3218
3220
|
**Agenda** — Unified temporal dashboard:
|
|
3219
3221
|
|
|
@@ -3338,6 +3340,12 @@ Image surfaces are first-class in the terminal. `/image` generations, generated-
|
|
|
3338
3340
|
| `/tools` | List agent-created custom tools |
|
|
3339
3341
|
| `/skills [keyword]` | List/search available AIWG skills |
|
|
3340
3342
|
| `/<skill-name> [args]` | Invoke an AIWG skill directly |
|
|
3343
|
+
| **Temporal Agency** | |
|
|
3344
|
+
| `/scheduler [menu\|list\|kill]` | Manage OS-backed scheduled agent tasks |
|
|
3345
|
+
| `/cron` | Alias for `/scheduler` |
|
|
3346
|
+
| `/remind [in 30m\|tomorrow\|at 14:30] <message>` | Set a scoped minimal reminder for the current TUI session |
|
|
3347
|
+
| `/reminder [list\|all]` | List scoped TUI reminders |
|
|
3348
|
+
| `/reminders` | Alias for `/reminder` |
|
|
3341
3349
|
| **Workspace Explorer** | |
|
|
3342
3350
|
| `/files` | Show searchable working-directory file overview |
|
|
3343
3351
|
| `/files <query>` | Filter the working-directory file overview |
|
|
@@ -3557,7 +3565,7 @@ While the sub-agent is working, users see:
|
|
|
3557
3565
|
|
|
3558
3566
|
### Public User Isolation
|
|
3559
3567
|
|
|
3560
|
-
Public users get **per-chat isolated memory** — each chat has its own scoped memory namespace (`telegram-{chatId}-{topic}`) so public users can store and retrieve facts about their conversation without accessing or polluting global agent memory. Public tools include: `memory_read`, `memory_write` (scoped), `memory_search`, `web_search`, `web_fetch`.
|
|
3568
|
+
Public users get **per-chat isolated memory** — each chat has its own scoped memory namespace (`telegram-{chatId}-{topic}`) so public users can store and retrieve facts about their conversation without accessing or polluting global agent memory. Public tools include: `memory_read`, `memory_write` (scoped), `memory_search`, `web_search`, `web_fetch`, and scoped minimal reminders via `reminder`/`remind`.
|
|
3561
3569
|
|
|
3562
3570
|
The bridge also maintains a per-chat conversation state file with recent history, participants, relationship signals, and lightweight Zettelkasten memory cards. Each Telegram group or private chat gets its own scoped personality document under `.omnius/scoped-personality/telegram-chat/`; that profile is updated as people talk and injected into future Telegram context so tone, pacing, names, and relationships stay available turn to turn.
|
|
3563
3571
|
|
|
@@ -3578,8 +3586,8 @@ Tools are gated per execution context. The system enforces strict separation bet
|
|
|
3578
3586
|
|---------|--------------|-------|
|
|
3579
3587
|
| `terminal` | All tools | Wide open — shell, file read/write, everything |
|
|
3580
3588
|
| `telegram-admin-dm` | All except shell | Admin DM — full tools, shell blocked by default (overridable) |
|
|
3581
|
-
| `telegram-admin-group` | Read-only + web + vision/OCR | Admin in public group — no system mutation tools |
|
|
3582
|
-
| `telegram-public` | Memory r/w, web fetch/search, scoped creative tools | Public users — no arbitrary local file access or shell |
|
|
3589
|
+
| `telegram-admin-group` | Read-only + web + vision/OCR + scoped reminders | Admin in public group — no system mutation tools |
|
|
3590
|
+
| `telegram-public` | Memory r/w, web fetch/search, scoped creative tools, scoped minimal reminders | Public users — no arbitrary local file access or shell |
|
|
3583
3591
|
| `api` | All tools | API endpoint — configurable |
|
|
3584
3592
|
|
|
3585
3593
|
**System tools** (`shell`, `file_write`, `file_edit`, `file_read`, `file_patch`, `batch_edit`, `grep_search`, `glob_find`, `list_directory`, `code_sandbox`, `codebase_map`, `git_info`, etc.) are **never exposed** in public-facing contexts.
|