Skip to content

Commit 86ff498

Browse files
authored
Merge pull request #91 from AxmeAI/fix/gate-branch-merged-check-20260408
fix: open questions — agent acts immediately on answers
2 parents 9fad25c + 9a6c6eb commit 86ff498

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/storage/questions.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,10 @@ export function questionsContext(projectPath: string): string {
176176
"",
177177
...open.map(q => `- **${q.id}**: ${q.question}${q.context ? ` (context: ${q.context})` : ""}`),
178178
"",
179-
"Use axme_answer_question(id, answer) to respond.",
179+
"For each question: show it to the user, get their answer, then IMMEDIATELY execute the action",
180+
"(e.g. axme_save_decision with action supersede/remove, axme_update_safety, etc.).",
181+
"After executing, call axme_answer_question(id, answer) to mark as processed.",
182+
"Do NOT just record the answer — act on it in this session.",
180183
];
181184
return lines.join("\n");
182185
}

0 commit comments

Comments
 (0)