huskies: merge 856

This commit is contained in:
dave
2026-04-29 21:28:41 +00:00
parent db526bbdb2
commit a7b1572693
13 changed files with 319 additions and 36 deletions
+18
View File
@@ -72,4 +72,22 @@ pub enum WatcherEvent {
/// Human-readable message describing when the earliest reset occurs.
earliest_reset_msg: String,
},
/// An agent transitioned to the Running state for a story.
/// Triggers a status notification to configured chat rooms.
AgentStarted {
/// Work item ID the agent is working on.
story_id: String,
/// Name of the agent that started.
agent_name: String,
},
/// An agent finished processing a story (gates passed or failed).
/// Triggers a status notification to configured chat rooms.
AgentCompleted {
/// Work item ID the agent was working on.
story_id: String,
/// Name of the agent that completed.
agent_name: String,
/// `true` if acceptance gates passed; `false` if they failed.
success: bool,
},
}