feat(commands): analog-inspired tier-2 — news, currency, crypto, fun, wiki, power, help (33 packs)

Seven more portable Lua packs lifted from common voice-assistant
playbooks (Siri/Alexa/Алиса/Cortana). All sandbox=full, jarvis.http
+ jarvis.system.exec, zero new Rust code. cargo test still 3/3.

news/ — pulls Lenta.ru RSS (en switches to BBC), regex-extracts the
top 5 <title> entries (skipping the channel header), drops them into
the clipboard, then asks Groq for a 2-3 sentence summary at temp 0.4
and speaks it via SAPI. If GROQ_TOKEN is missing it falls back to
just reading the first three headlines.

currency/ — cbr-xml-daily.ru/daily_json.js. Picks USD/EUR/CNY/GBP/
JPY/KZT by keyword in the phrase, computes value / nominal, diffs
against Valute.Previous, says "X стоит N рублей, поднялся/опустился
на M" with ▲/▼ in the notify body.

crypto/ — CoinGecko simple/price with usd,rub and 24hr_change.
Recognises bitcoin / ethereum / solana / dogecoin / the-open-network.
Reports price + direction in plain Russian.

fun/ — joke / fact / quote / compliment, single ask.lua dispatched by
command_id. Per-command system prompt at temp 1.0; seeds with a
random integer so consecutive calls don't repeat.

wiki/ — ru.wikipedia opensearch → REST summary endpoint. If Groq is
available and extract > 350 chars, asks for a 2-3 sentence retell;
otherwise speaks the first 400 chars verbatim. Full extract goes to
clipboard.

power/ — shutdown_pc / restart_pc / sleep_pc / hibernate_pc /
logoff_user / cancel_shutdown. Single act.lua keyed by command_id.
shutdown/restart use shutdown.exe /s|/r /t 30 with a /c message —
30-second grace window so "отмени выключение" actually works.
sleep uses rundll32 powrprof,SetSuspendState, hibernate uses
shutdown.exe /h.

help/ — "что ты умеешь". Reads the parent commands/ dir via
jarvis.fs.list, sorts subdirs (pack names), pairs each with a
hardcoded Russian/English one-liner description, copies the full
list to clipboard and speaks a count + "see clipboard for full list".

Total command packs is now 33 (was 26).
This commit is contained in:
Bossiara13 2026-05-15 12:43:09 +03:00
parent dcee98bddf
commit 9d8b917149
14 changed files with 749 additions and 0 deletions

View file

@ -0,0 +1,45 @@
local cmd_id = jarvis.context.command_id
local lang = jarvis.context.language
local actions = {
shutdown_pc = { cmd = 'shutdown.exe /s /t 30 /c "J.A.R.V.I.S.: shutdown in 30s. Say cancel to abort."', label = lang == "ru" and "Выключение через 30 секунд" or "Shutdown in 30 sec" },
restart_pc = { cmd = 'shutdown.exe /r /t 30 /c "J.A.R.V.I.S.: restart in 30s. Say cancel to abort."', label = lang == "ru" and "Перезагрузка через 30 секунд" or "Restart in 30 sec" },
logoff_user = { cmd = 'shutdown.exe /l', label = lang == "ru" and "Выход из системы" or "Sign out" },
sleep_pc = { cmd = 'rundll32.exe powrprof.dll,SetSuspendState 0,1,0', label = lang == "ru" and "Сон" or "Sleep" },
hibernate_pc = { cmd = 'shutdown.exe /h', label = lang == "ru" and "Гибернация" or "Hibernate" },
cancel_shutdown = { cmd = 'shutdown.exe /a', label = lang == "ru" and "Выключение отменено" or "Shutdown cancelled" },
}
local a = actions[cmd_id]
if not a then
jarvis.audio.play_error()
return { chain = false }
end
local res = jarvis.system.exec(a.cmd)
local ok = res.success
if not ok and cmd_id == "cancel_shutdown" then
ok = true
end
if ok then
jarvis.system.notify("Power", a.label)
jarvis.log("info", "power: " .. cmd_id .. " -> " .. a.label)
local say = a.label .. ". " .. (cmd_id == "shutdown_pc" or cmd_id == "restart_pc"
and (lang == "ru" and "Скажи отмени если передумал, сэр." or "Say cancel to abort, sir.")
or "")
local sapi = say:gsub("'", "''"):gsub("\r?\n", " ")
local ps = string.format(
[[Add-Type -AssemblyName System.Speech; $s = New-Object System.Speech.Synthesis.SpeechSynthesizer; foreach ($v in $s.GetInstalledVoices()) { if ($v.VoiceInfo.Culture.TwoLetterISOLanguageName -eq 'ru') { try { $s.SelectVoice($v.VoiceInfo.Name); break } catch {} } } $s.Speak('%s')]],
sapi
)
jarvis.system.exec(string.format('powershell -NoProfile -Command "%s"', ps:gsub('"', '\\"')))
jarvis.audio.play_ok()
else
jarvis.log("error", "power " .. cmd_id .. " failed: " .. tostring(res.stderr):sub(1, 200))
jarvis.system.notify("Power", (lang == "ru" and "Не получилось: " or "Failed: ") .. cmd_id)
jarvis.audio.play_error()
end
return { chain = false }

View file

@ -0,0 +1,76 @@
[[commands]]
id = "shutdown_pc"
type = "lua"
script = "act.lua"
sandbox = "full"
timeout = 5000
[commands.phrases]
ru = ["выключи компьютер", "выключи пк", "выключи комп"]
en = ["shutdown pc", "shut down computer"]
ua = ["вимкни комп'ютер", "вимкни пк"]
[[commands]]
id = "restart_pc"
type = "lua"
script = "act.lua"
sandbox = "full"
timeout = 5000
[commands.phrases]
ru = ["перезагрузи компьютер", "перезагрузи пк", "ребутни", "ребут"]
en = ["restart pc", "reboot computer"]
ua = ["перезавантаж комп'ютер"]
[[commands]]
id = "sleep_pc"
type = "lua"
script = "act.lua"
sandbox = "full"
timeout = 5000
[commands.phrases]
ru = ["усыпи компьютер", "усыпи пк", "режим сна", "перейди в сон"]
en = ["sleep pc", "put computer to sleep"]
ua = ["приспи комп'ютер"]
[[commands]]
id = "hibernate_pc"
type = "lua"
script = "act.lua"
sandbox = "full"
timeout = 5000
[commands.phrases]
ru = ["гибернация", "переведи в гибернацию", "режим гибернации"]
en = ["hibernate pc"]
ua = ["гібернація"]
[[commands]]
id = "logoff_user"
type = "lua"
script = "act.lua"
sandbox = "full"
timeout = 5000
[commands.phrases]
ru = ["выйди из системы", "разлогинь", "выйди из учётки", "сеанс закончи"]
en = ["log off", "sign out"]
ua = ["вийди з системи"]
[[commands]]
id = "cancel_shutdown"
type = "lua"
script = "act.lua"
sandbox = "full"
timeout = 3000
[commands.phrases]
ru = ["отмени выключение", "отмени ребут", "отмени перезагрузку", "стой не выключай"]
en = ["cancel shutdown", "abort shutdown"]
ua = ["скасуй вимкнення"]