huskies: merge 964

This commit is contained in:
dave
2026-05-13 14:51:39 +00:00
parent c811672e18
commit dcb43c465a
24 changed files with 234 additions and 188 deletions
+7 -7
View File
@@ -53,7 +53,7 @@ export interface AgentAssignment {
/** A single item in any pipeline stage (backlog, current, QA, merge, or done). */
export interface PipelineStageItem {
story_id: string;
name: string | null;
name: string;
error: string | null;
merge_failure: string | null;
agent: AgentAssignment | null;
@@ -142,32 +142,32 @@ export type StatusEvent =
| {
type: "stage_transition";
story_id: string;
story_name: string | null;
story_name: string;
from_stage: string;
to_stage: string;
}
| {
type: "merge_failure";
story_id: string;
story_name: string | null;
story_name: string;
reason: string;
}
| {
type: "story_blocked";
story_id: string;
story_name: string | null;
story_name: string;
reason: string;
}
| {
type: "rate_limit_warning";
story_id: string;
story_name: string | null;
story_name: string;
agent_name: string;
}
| {
type: "rate_limit_hard_block";
story_id: string;
story_name: string | null;
story_name: string;
agent_name: string;
reset_at: string;
};
@@ -212,7 +212,7 @@ export interface AnthropicModelInfo {
export interface WorkItemContent {
content: string;
stage: string;
name: string | null;
name: string;
agent: string | null;
}