docs/concepts/typing-indicators.md
Typing indicators are sent to the chat channel while a run is active. Use agents.defaults.typingMode to control when typing starts and typingIntervalSeconds to control how often it refreshes (keepalive cadence, default 6 seconds).
When agents.defaults.typingMode is unset:
Set agents.defaults.typingMode to one of:
never - no typing indicator, ever.instant - start typing as soon as the model loop begins, even if the run later returns only the silent reply token.thinking - start typing on the first reasoning delta, or on active harness execution after the turn is accepted.message - start typing on the first user-visible reply activity, such as active harness execution or a non-silent text delta. Silent reply tokens such as NO_REPLY do not count as text activity.Order of "how early it fires": never -> message/thinking -> instant.
Set the agent-level default:
{
agents: {
defaults: {
typingMode: "thinking",
typingIntervalSeconds: 6,
},
},
}
Override mode or cadence per session:
{
session: {
typingMode: "message",
typingIntervalSeconds: 4,
},
}
message mode does not start from silent reply tokens, but active execution can still show typing before any assistant text is available.thinking still reacts to streamed reasoning (reasoningLevel: "stream"), and can also start from active execution before reasoning deltas arrive.message or thinking stream timing. Set typingMode: "never" to disable it."none", when the target cannot be resolved, when chat delivery is disabled for the heartbeat, or when the channel does not support typing.typingIntervalSeconds controls the refresh cadence, not the start time. Default: 6 seconds.