Inbound telegram: turns and corrections from the chat #187

Merged
claude merged 9 commits from task/637-inbound-telegram-turns-and-corrections-f into master 2026-08-06 19:02:00 +02:00
2 changed files with 1 additions and 2 deletions
Showing only changes of commit b3936348f5 - Show all commits
-1
View File
@@ -104,4 +104,3 @@ func (h *reactiveHandler) actionAct(ctx context.Context, dec router.Decision) st
}
return phraser.A(phraser.ActDone, nil)
}
+1 -1
View File
@@ -328,7 +328,7 @@ func TestExecEmptyCmdRefuses(t *testing.T) {
func TestExecRefusesATargetTheSystemCannotHave(t *testing.T) {
api := fakeAPI{tools: map[string]ipc.Tool{
"restart": {Name: "restart", Cmd: []string{"systemctl", "restart"}, Status: "enabled"},
"drop": {Name: "drop", Cmd: []string{"dropdb"}, Destructive: true, Status: "enabled"},
"drop": {Name: "drop", Cmd: []string{"dropdb"}, Destructive: true, Status: "enabled"},
}}
ran := false
e := NewExecutor(api, 0)