story-kit: merge 339_story_web_ui_agent_assignment_dropdown_on_work_items

This commit is contained in:
Dave
2026-03-20 09:05:28 +00:00
parent 134cae216a
commit 81e822642e
6 changed files with 140 additions and 3 deletions

View File

@@ -36,6 +36,7 @@ const sampleAgent: AgentInfo = {
const sampleConfig: AgentConfigInfo = {
name: "coder",
role: "engineer",
stage: "coder",
model: "claude-sonnet-4-6",
allowed_tools: null,
max_turns: null,

View File

@@ -31,6 +31,7 @@ export interface AgentEvent {
export interface AgentConfigInfo {
name: string;
role: string;
stage: string | null;
model: string | null;
allowed_tools: string[] | null;
max_turns: number | null;