28 lines
765 B
TOML
28 lines
765 B
TOML
|
|
# "Where did I leave off" — pull recent context from across the assistant's
|
||
|
|
# state (last conversation, latest memory facts, last tracker session, latest
|
||
|
|
# scheduled task) and read out a one-paragraph recap. Nice for picking up after
|
||
|
|
# a coffee break or returning to the PC.
|
||
|
|
|
||
|
|
[[commands]]
|
||
|
|
id = "leftoff.recap"
|
||
|
|
type = "lua"
|
||
|
|
script = "recap.lua"
|
||
|
|
sandbox = "full"
|
||
|
|
timeout = 8000
|
||
|
|
|
||
|
|
[commands.phrases]
|
||
|
|
ru = [
|
||
|
|
"на чём я остановился",
|
||
|
|
"на чем я остановился",
|
||
|
|
"напомни что делал",
|
||
|
|
"что я делал",
|
||
|
|
"где я остановился",
|
||
|
|
"продолжи откуда я",
|
||
|
|
]
|
||
|
|
en = [
|
||
|
|
"where did i leave off",
|
||
|
|
"what was i doing",
|
||
|
|
"recap my session",
|
||
|
|
"remind me what i was doing",
|
||
|
|
]
|