Voice sysinfo overhaul (6 scripts: battery/cpu/ram/disk/time/all):
- Now SPEAK the result via jarvis.cmd.ok instead of notify-only. Toast
still fires for visual reference, but real Jarvis tells you out loud.
- `all` joins lines with commas so TTS doesn't over-pause on linebreaks.
Smart reminders (`reminders/set.lua` rewrite):
- Was: detached `Start-Sleep` PowerShell subprocesses that died on
jarvis-app restart and spawned a hidden process per timer.
- Now: routes through `jarvis.scheduler.add(... type=speak ...)`. Persists
to schedule.json, survives restart, no zombie processes. Trade-off:
sub-minute timers round up to 1 min (rare in voice UX).
- Drops UA triggers from earlier UA-removal sweep.
Translation polish (`translate/translate.lua` + `clipboard.lua`):
- Drops UA target language; adds Italian, Polish, Turkish, French ru
triggers + English target detectors.
- `language_iso()` helper picks the SAPI voice locale for the TARGET
language (German translation → German SAPI voice if installed).
LLM system prompt (config.rs):
- New LLM_SYSTEM_PROMPT_EN counterpart. Both languages now mention the
assistant's tooling (memory / scheduler / profiles / macros / vision /
clipboard) so the LLM knows it can DO things, not suggest the user
install something.
- `get_llm_system_prompt(lang)` picks EN/RU.
Conversation pack (NEW `conversation/`):
- 2 commands. `conversation.summary` ("о чём мы говорили") pulls the
last 12 turns from persisted history, asks LLM for a 1-3 sentence
recap in Jarvis tone. Falls back gracefully when offline.
- `conversation.repeat` ("повтори") re-speaks the last assistant message.
- New Lua API `jarvis.llm_history()` returns array of {role, content}
tables, excluding the system prompt.
WOL pack (NEW `wol/`):
- Voice "разбуди сервер" / "wake server" fires a magic packet at a MAC
stored in long-term memory under `wol_<alias>` (default alias "server").
- Setup via voice: "запомни wol_server AA:BB:CC:DD:EE:FF". Falls back to
`JARVIS_WOL_TARGET` env if memory empty. Handles every standard MAC
format (colons / dashes / dots / bare). Broadcast on UDP 9 via
PowerShell System.Net.Sockets.UdpClient.
Outlook COM pack (NEW `outlook/`, via subagent):
- 4 commands: unread_count, latest, send_clipboard, summarize_inbox.
- PowerShell COM bridge `_outlook.ps1` with tab-delimited line protocol.
- summarize_inbox calls LLM for a one-paragraph summary. Graceful
failure when Outlook isn't running.
Time tracker pack (NEW `time_tracker/`, via subagent):
- 5 commands: start, stop, today, week, reset.
- Persists via `jarvis.state` (structured object: current_session_start
+ sessions array of {start, end}).
- Local-calendar "today" boundary, full Russian pluralisation
(час/часа/часов, минута/минуты/минут, сессия/сессии/сессий).
Tests: 139 rust (no regression), 81 python (60 → 81, +14 time_tracker
+7 outlook). Release build green for jarvis-app and jarvis-cli.
Pack count: 88 → 92 rust packs.
55 lines
1.9 KiB
Lua
55 lines
1.9 KiB
Lua
-- Voice-controlled Outlook: report number of unread emails in default Inbox.
|
|
-- The PowerShell helper talks to Outlook via COM; if Outlook is closed or
|
|
-- COM fails we degrade gracefully with an explanatory message.
|
|
|
|
local lang = jarvis.context.language
|
|
local helper = jarvis.context.command_path .. "\\_outlook.ps1"
|
|
local cmd = string.format(
|
|
'powershell -NoProfile -ExecutionPolicy Bypass -File "%s" -Action unread_count',
|
|
helper
|
|
)
|
|
|
|
local res = jarvis.system.exec(cmd)
|
|
local out = (res.stdout or ""):gsub("\r", "")
|
|
|
|
if not res.success or out == "" then
|
|
jarvis.log("error", "outlook unread_count exec failed: " .. tostring(res.stderr))
|
|
return jarvis.cmd.error(lang == "ru"
|
|
and "Outlook недоступен — запусти Outlook сначала."
|
|
or "Outlook is unavailable — start Outlook first.")
|
|
end
|
|
|
|
local first_line, rest = out:match("^([^\n]*)\n?(.*)$")
|
|
first_line = first_line or ""
|
|
|
|
if first_line:sub(1, 3) == "ERR" then
|
|
jarvis.log("warn", "outlook unread_count: " .. first_line)
|
|
return jarvis.cmd.error(lang == "ru"
|
|
and "Outlook недоступен — запусти Outlook сначала."
|
|
or "Outlook is unavailable — start Outlook first.")
|
|
end
|
|
|
|
local count_str = (rest or ""):match("(%d+)") or "0"
|
|
local count = tonumber(count_str) or 0
|
|
|
|
local speech
|
|
if lang == "ru" then
|
|
if count == 0 then
|
|
speech = "Непрочитанных писем нет."
|
|
elseif count == 1 then
|
|
speech = "Одно непрочитанное письмо."
|
|
else
|
|
speech = string.format("Непрочитанных писем: %d.", count)
|
|
end
|
|
else
|
|
if count == 0 then
|
|
speech = "No unread emails."
|
|
elseif count == 1 then
|
|
speech = "One unread email."
|
|
else
|
|
speech = string.format("You have %d unread emails.", count)
|
|
end
|
|
end
|
|
|
|
jarvis.system.notify(lang == "ru" and "Outlook" or "Outlook", speech)
|
|
return jarvis.cmd.ok(speech)
|