Skip to main content
Questions are a tool for preserving judgment. They should be specific, answerable, and useful to the future agent session that receives the answer.

Ask when judgment is needed

Use ask_question when:
  • The instructions are ambiguous
  • The next step changes human priorities
  • The agent has multiple reasonable options
  • The action is blocked without a decision
  • Proceeding would create risk or unwanted side effects
Do not ask when the order already authorizes the decision. Execute instead.

Required shape

A strong question includes:
Always include on_answer. The agent that sees the response later may not have the original chat context.

Example

Closing your own question

If the agent finds the answer before the human responds, it can call close_question with a response. That records the resolution and removes the open question from the human’s attention queue.

Human responses

When a human answers, the answer becomes part of the question record. The agent should reread the scoped action, project, or order before continuing so it does not resume from stale context.