Files
Maven/internal/phraser/confirm_ru_v1.json
T
claude 33032b859a strings family 5: the confirmation answers move, the prompt does not (V-505)
The task asked to decide first whether this family should move at all. It
moves, but only half of it, and the half that stays put is the important one.

The prompt is already in acts_ru_v1.json. act_confirm and act_confirm_entity
went there with family 4, which is where they belong: the sentence he has to
hear before he says yes is an act line, and it loads with {name} required, so a
variant that dropped the capability cannot exist. Nothing about that needed
redoing.

What was left in cmd/mavend/confirm.go is the answers. Those are now
confirm_ru_v1.json: cancelled, the two routine answers, and the four
propose-gap lines. Every entry is fixed at one wording. He answered a question
about one specific thing, so variety buys nothing here and costs the property
that matters, which is that the same act reports the same outcome every time.
The three propose lines that name the verb have {name} required, for the same
reason the prompt does.

Two literals also stopped being duplicates. The confirmed tool run said
"готово." and "не получилось выполнить команду." word for word from the acts
family, so it now reports through ActDone and ActFail rather than keeping a
second copy to drift from.

Family 5 was the last one open. The persona scorer sweeps the new variants with
the other five, and the single-variant-means-fixed test now covers it.
2026-08-05 16:07:50 +04:00

41 lines
1.8 KiB
JSON

{
"schema_version": 1,
"name": "confirm_ru_v1",
"notes": [
"What she says once a confirmation has been answered, and what she says when an act names a verb she is not allowed to run.",
"The prompt itself is not here. act_confirm and act_confirm_entity live in acts_ru_v1.json, because the sentence he has to hear before he says yes is an act line.",
"Every entry is fixed. He answered a question about one specific thing, so the answer names what happened to that thing and does not get reworded for variety.",
"confirm_routine_authed is the strictest of them. A spoken yes does not accept a routine, so this line has to keep pointing at the page that does."
],
"entries": {
"confirm_cancelled": {
"fixed": true,
"variants": ["отменила."]
},
"confirm_routine_authed": {
"fixed": true,
"variants": ["поняла — подтверди на странице рутин, и начну напоминать."]
},
"confirm_routine_no": {
"fixed": true,
"variants": ["хорошо, не буду."]
},
"propose_no_verb": {
"fixed": true,
"variants": ["не разобрала команду — попробуй иначе."]
},
"propose_failed": {
"fixed": true,
"variants": ["команды «{name}» нет в списке разрешённых."]
},
"propose_new": {
"fixed": true,
"variants": ["команды «{name}» нет в списке. Предложила её добавить — включи через клиент."]
},
"propose_already": {
"fixed": true,
"variants": ["команды «{name}» пока нет в списке — она уже предложена, включи через клиент."]
}
}
}