2026-02-19 17:58:53 +00:00
|
|
|
import * as React from "react";
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
import type {
|
|
|
|
|
AgentConfigInfo,
|
|
|
|
|
AgentEvent,
|
|
|
|
|
AgentStatusValue,
|
|
|
|
|
} from "../api/agents";
|
2026-02-19 17:58:53 +00:00
|
|
|
import { agentsApi, subscribeAgentStream } from "../api/agents";
|
2026-02-20 14:42:41 +00:00
|
|
|
import { settingsApi } from "../api/settings";
|
2026-02-19 17:58:53 +00:00
|
|
|
|
|
|
|
|
const { useCallback, useEffect, useRef, useState } = React;
|
|
|
|
|
|
|
|
|
|
interface AgentState {
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
agentName: string;
|
2026-02-19 17:58:53 +00:00
|
|
|
status: AgentStatusValue;
|
|
|
|
|
log: string[];
|
|
|
|
|
sessionId: string | null;
|
|
|
|
|
worktreePath: string | null;
|
2026-02-20 12:48:50 +00:00
|
|
|
baseBranch: string | null;
|
2026-02-19 17:58:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const STATUS_COLORS: Record<AgentStatusValue, string> = {
|
|
|
|
|
pending: "#e3b341",
|
|
|
|
|
running: "#58a6ff",
|
|
|
|
|
completed: "#7ee787",
|
|
|
|
|
failed: "#ff7b72",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const STATUS_LABELS: Record<AgentStatusValue, string> = {
|
|
|
|
|
pending: "Pending",
|
|
|
|
|
running: "Running",
|
|
|
|
|
completed: "Completed",
|
|
|
|
|
failed: "Failed",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const formatTimestamp = (value: Date | null): string => {
|
|
|
|
|
if (!value) return "";
|
|
|
|
|
return value.toLocaleTimeString([], {
|
|
|
|
|
hour: "2-digit",
|
|
|
|
|
minute: "2-digit",
|
|
|
|
|
second: "2-digit",
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
function StatusBadge({ status }: { status: AgentStatusValue }) {
|
|
|
|
|
return (
|
|
|
|
|
<span
|
|
|
|
|
style={{
|
|
|
|
|
display: "inline-flex",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
gap: "4px",
|
|
|
|
|
padding: "2px 8px",
|
|
|
|
|
borderRadius: "999px",
|
|
|
|
|
fontSize: "0.75em",
|
|
|
|
|
fontWeight: 600,
|
|
|
|
|
background: `${STATUS_COLORS[status]}22`,
|
|
|
|
|
color: STATUS_COLORS[status],
|
|
|
|
|
border: `1px solid ${STATUS_COLORS[status]}44`,
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{status === "running" && (
|
|
|
|
|
<span
|
|
|
|
|
style={{
|
|
|
|
|
width: "6px",
|
|
|
|
|
height: "6px",
|
|
|
|
|
borderRadius: "50%",
|
|
|
|
|
background: STATUS_COLORS[status],
|
|
|
|
|
animation: "pulse 1.5s infinite",
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
{STATUS_LABELS[status]}
|
|
|
|
|
</span>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-23 13:23:35 +00:00
|
|
|
function RosterBadge({
|
|
|
|
|
agent,
|
|
|
|
|
activeStoryId,
|
|
|
|
|
}: {
|
|
|
|
|
agent: AgentConfigInfo;
|
|
|
|
|
activeStoryId: string | null;
|
|
|
|
|
}) {
|
|
|
|
|
const isActive = activeStoryId !== null;
|
|
|
|
|
const storyNumber = activeStoryId?.match(/^(\d+)/)?.[1];
|
|
|
|
|
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
return (
|
|
|
|
|
<span
|
|
|
|
|
style={{
|
|
|
|
|
display: "inline-flex",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
gap: "4px",
|
|
|
|
|
padding: "2px 8px",
|
|
|
|
|
borderRadius: "6px",
|
|
|
|
|
fontSize: "0.7em",
|
2026-02-23 13:23:35 +00:00
|
|
|
background: isActive ? "#58a6ff18" : "#ffffff08",
|
|
|
|
|
color: isActive ? "#58a6ff" : "#888",
|
|
|
|
|
border: isActive ? "1px solid #58a6ff44" : "1px solid #333",
|
|
|
|
|
transition: "background 0.3s, color 0.3s, border-color 0.3s",
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
}}
|
2026-02-23 13:23:35 +00:00
|
|
|
title={
|
|
|
|
|
isActive
|
|
|
|
|
? `Working on #${storyNumber ?? activeStoryId}`
|
|
|
|
|
: `${agent.role || agent.name} — idle`
|
|
|
|
|
}
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
>
|
2026-02-23 13:23:35 +00:00
|
|
|
{isActive && (
|
|
|
|
|
<span
|
|
|
|
|
style={{
|
|
|
|
|
width: "5px",
|
|
|
|
|
height: "5px",
|
|
|
|
|
borderRadius: "50%",
|
|
|
|
|
background: "#58a6ff",
|
|
|
|
|
animation: "pulse 1.5s infinite",
|
|
|
|
|
flexShrink: 0,
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
{!isActive && (
|
|
|
|
|
<span
|
|
|
|
|
style={{
|
|
|
|
|
width: "5px",
|
|
|
|
|
height: "5px",
|
|
|
|
|
borderRadius: "50%",
|
|
|
|
|
background: "#555",
|
|
|
|
|
flexShrink: 0,
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
<span style={{ fontWeight: 600, color: isActive ? "#58a6ff" : "#aaa" }}>
|
|
|
|
|
{agent.name}
|
|
|
|
|
</span>
|
|
|
|
|
{agent.model && (
|
|
|
|
|
<span style={{ color: isActive ? "#7ab8ff" : "#666" }}>
|
|
|
|
|
{agent.model}
|
|
|
|
|
</span>
|
|
|
|
|
)}
|
|
|
|
|
{isActive && storyNumber && (
|
|
|
|
|
<span style={{ color: "#7ab8ff", marginLeft: "2px" }}>
|
|
|
|
|
#{storyNumber}
|
|
|
|
|
</span>
|
|
|
|
|
)}
|
|
|
|
|
{!isActive && (
|
|
|
|
|
<span style={{ color: "#444", fontStyle: "italic" }}>idle</span>
|
|
|
|
|
)}
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
</span>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Build a composite key for tracking agent state. */
|
|
|
|
|
function agentKey(storyId: string, agentName: string): string {
|
|
|
|
|
return `${storyId}:${agentName}`;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-20 12:48:50 +00:00
|
|
|
function DiffCommand({
|
|
|
|
|
worktreePath,
|
|
|
|
|
baseBranch,
|
2026-02-20 14:11:53 +00:00
|
|
|
}: {
|
|
|
|
|
worktreePath: string;
|
|
|
|
|
baseBranch: string;
|
|
|
|
|
}) {
|
2026-02-20 12:48:50 +00:00
|
|
|
const [copied, setCopied] = useState(false);
|
|
|
|
|
const command = `cd "${worktreePath}" && git difftool ${baseBranch}...HEAD`;
|
|
|
|
|
|
|
|
|
|
const handleCopy = async () => {
|
|
|
|
|
try {
|
|
|
|
|
await navigator.clipboard.writeText(command);
|
|
|
|
|
setCopied(true);
|
|
|
|
|
setTimeout(() => setCopied(false), 2000);
|
|
|
|
|
} catch {
|
|
|
|
|
// Fallback: select text for manual copy
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
gap: "6px",
|
|
|
|
|
marginBottom: "6px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<code
|
|
|
|
|
style={{
|
|
|
|
|
flex: 1,
|
|
|
|
|
fontSize: "0.7em",
|
|
|
|
|
color: "#8b949e",
|
|
|
|
|
background: "#0d1117",
|
|
|
|
|
padding: "4px 8px",
|
|
|
|
|
borderRadius: "4px",
|
|
|
|
|
border: "1px solid #21262d",
|
|
|
|
|
overflow: "hidden",
|
|
|
|
|
textOverflow: "ellipsis",
|
|
|
|
|
whiteSpace: "nowrap",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{command}
|
|
|
|
|
</code>
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={handleCopy}
|
|
|
|
|
style={{
|
|
|
|
|
padding: "3px 8px",
|
|
|
|
|
borderRadius: "4px",
|
|
|
|
|
border: "1px solid #30363d",
|
|
|
|
|
background: copied ? "#238636" : "#21262d",
|
|
|
|
|
color: copied ? "#fff" : "#8b949e",
|
|
|
|
|
cursor: "pointer",
|
|
|
|
|
fontSize: "0.7em",
|
|
|
|
|
fontWeight: 600,
|
|
|
|
|
whiteSpace: "nowrap",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{copied ? "Copied" : "Copy"}
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-20 15:13:30 +00:00
|
|
|
export function EditorCommand({
|
2026-02-20 14:42:41 +00:00
|
|
|
worktreePath,
|
|
|
|
|
editorCommand,
|
|
|
|
|
}: {
|
|
|
|
|
worktreePath: string;
|
|
|
|
|
editorCommand: string;
|
|
|
|
|
}) {
|
|
|
|
|
const [copied, setCopied] = useState(false);
|
|
|
|
|
const command = `${editorCommand} "${worktreePath}"`;
|
|
|
|
|
|
|
|
|
|
const handleCopy = async () => {
|
|
|
|
|
try {
|
|
|
|
|
await navigator.clipboard.writeText(command);
|
|
|
|
|
setCopied(true);
|
|
|
|
|
setTimeout(() => setCopied(false), 2000);
|
|
|
|
|
} catch {
|
|
|
|
|
// Fallback: select text for manual copy
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
gap: "6px",
|
|
|
|
|
marginBottom: "6px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<code
|
|
|
|
|
style={{
|
|
|
|
|
flex: 1,
|
|
|
|
|
fontSize: "0.7em",
|
|
|
|
|
color: "#8b949e",
|
|
|
|
|
background: "#0d1117",
|
|
|
|
|
padding: "4px 8px",
|
|
|
|
|
borderRadius: "4px",
|
|
|
|
|
border: "1px solid #21262d",
|
|
|
|
|
overflow: "hidden",
|
|
|
|
|
textOverflow: "ellipsis",
|
|
|
|
|
whiteSpace: "nowrap",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{command}
|
|
|
|
|
</code>
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={handleCopy}
|
|
|
|
|
style={{
|
|
|
|
|
padding: "3px 8px",
|
|
|
|
|
borderRadius: "4px",
|
|
|
|
|
border: "1px solid #30363d",
|
|
|
|
|
background: copied ? "#238636" : "#21262d",
|
|
|
|
|
color: copied ? "#fff" : "#8b949e",
|
|
|
|
|
cursor: "pointer",
|
|
|
|
|
fontSize: "0.7em",
|
|
|
|
|
fontWeight: 600,
|
|
|
|
|
whiteSpace: "nowrap",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{copied ? "Copied" : "Open"}
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-20 19:39:19 +00:00
|
|
|
export function AgentPanel() {
|
2026-02-19 17:58:53 +00:00
|
|
|
const [agents, setAgents] = useState<Record<string, AgentState>>({});
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
const [roster, setRoster] = useState<AgentConfigInfo[]>([]);
|
|
|
|
|
const [expandedKey, setExpandedKey] = useState<string | null>(null);
|
2026-02-19 17:58:53 +00:00
|
|
|
const [actionError, setActionError] = useState<string | null>(null);
|
|
|
|
|
const [lastRefresh, setLastRefresh] = useState<Date | null>(null);
|
2026-02-20 14:42:41 +00:00
|
|
|
const [editorCommand, setEditorCommand] = useState<string | null>(null);
|
|
|
|
|
const [editorInput, setEditorInput] = useState<string>("");
|
|
|
|
|
const [editingEditor, setEditingEditor] = useState(false);
|
2026-02-19 17:58:53 +00:00
|
|
|
const cleanupRefs = useRef<Record<string, () => void>>({});
|
|
|
|
|
const logEndRefs = useRef<Record<string, HTMLDivElement | null>>({});
|
|
|
|
|
|
2026-02-20 14:42:41 +00:00
|
|
|
// Load roster, existing agents, and editor preference on mount
|
2026-02-19 17:58:53 +00:00
|
|
|
useEffect(() => {
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
agentsApi
|
|
|
|
|
.getAgentConfig()
|
|
|
|
|
.then(setRoster)
|
|
|
|
|
.catch((err) => console.error("Failed to load agent config:", err));
|
|
|
|
|
|
2026-02-19 17:58:53 +00:00
|
|
|
agentsApi
|
|
|
|
|
.listAgents()
|
|
|
|
|
.then((agentList) => {
|
|
|
|
|
const agentMap: Record<string, AgentState> = {};
|
|
|
|
|
for (const a of agentList) {
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
const key = agentKey(a.story_id, a.agent_name);
|
|
|
|
|
agentMap[key] = {
|
|
|
|
|
agentName: a.agent_name,
|
2026-02-19 17:58:53 +00:00
|
|
|
status: a.status,
|
|
|
|
|
log: [],
|
|
|
|
|
sessionId: a.session_id,
|
|
|
|
|
worktreePath: a.worktree_path,
|
2026-02-20 12:48:50 +00:00
|
|
|
baseBranch: a.base_branch,
|
2026-02-19 17:58:53 +00:00
|
|
|
};
|
|
|
|
|
if (a.status === "running" || a.status === "pending") {
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
subscribeToAgent(a.story_id, a.agent_name);
|
2026-02-19 17:58:53 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
setAgents(agentMap);
|
|
|
|
|
setLastRefresh(new Date());
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => console.error("Failed to load agents:", err));
|
|
|
|
|
|
2026-02-20 14:42:41 +00:00
|
|
|
settingsApi
|
|
|
|
|
.getEditorCommand()
|
|
|
|
|
.then((s) => {
|
|
|
|
|
setEditorCommand(s.editor_command);
|
|
|
|
|
setEditorInput(s.editor_command ?? "");
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => console.error("Failed to load editor command:", err));
|
|
|
|
|
|
2026-02-19 17:58:53 +00:00
|
|
|
return () => {
|
|
|
|
|
for (const cleanup of Object.values(cleanupRefs.current)) {
|
|
|
|
|
cleanup();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
|
|
|
}, []);
|
|
|
|
|
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
const subscribeToAgent = useCallback((storyId: string, agentName: string) => {
|
|
|
|
|
const key = agentKey(storyId, agentName);
|
|
|
|
|
cleanupRefs.current[key]?.();
|
2026-02-19 17:58:53 +00:00
|
|
|
|
|
|
|
|
const cleanup = subscribeAgentStream(
|
|
|
|
|
storyId,
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
agentName,
|
2026-02-19 17:58:53 +00:00
|
|
|
(event: AgentEvent) => {
|
|
|
|
|
setAgents((prev) => {
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
const current = prev[key] ?? {
|
|
|
|
|
agentName,
|
2026-02-19 17:58:53 +00:00
|
|
|
status: "pending" as AgentStatusValue,
|
|
|
|
|
log: [],
|
|
|
|
|
sessionId: null,
|
|
|
|
|
worktreePath: null,
|
2026-02-20 12:48:50 +00:00
|
|
|
baseBranch: null,
|
2026-02-19 17:58:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
switch (event.type) {
|
|
|
|
|
case "status":
|
|
|
|
|
return {
|
|
|
|
|
...prev,
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
[key]: {
|
2026-02-19 17:58:53 +00:00
|
|
|
...current,
|
|
|
|
|
status: (event.status as AgentStatusValue) ?? current.status,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
case "output":
|
|
|
|
|
return {
|
|
|
|
|
...prev,
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
[key]: {
|
2026-02-19 17:58:53 +00:00
|
|
|
...current,
|
|
|
|
|
log: [...current.log, event.text ?? ""],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
case "done":
|
|
|
|
|
return {
|
|
|
|
|
...prev,
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
[key]: {
|
2026-02-19 17:58:53 +00:00
|
|
|
...current,
|
|
|
|
|
status: "completed",
|
|
|
|
|
sessionId: event.session_id ?? current.sessionId,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
case "error":
|
|
|
|
|
return {
|
|
|
|
|
...prev,
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
[key]: {
|
2026-02-19 17:58:53 +00:00
|
|
|
...current,
|
|
|
|
|
status: "failed",
|
|
|
|
|
log: [
|
|
|
|
|
...current.log,
|
|
|
|
|
`[ERROR] ${event.message ?? "Unknown error"}`,
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
default:
|
|
|
|
|
return prev;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
() => {
|
|
|
|
|
// SSE error — agent may not be streaming yet
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
cleanupRefs.current[key] = cleanup;
|
2026-02-19 17:58:53 +00:00
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
// Auto-scroll log when expanded
|
|
|
|
|
useEffect(() => {
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
if (expandedKey) {
|
|
|
|
|
const el = logEndRefs.current[expandedKey];
|
2026-02-19 17:58:53 +00:00
|
|
|
el?.scrollIntoView({ behavior: "smooth" });
|
|
|
|
|
}
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
}, [expandedKey, agents]);
|
2026-02-19 17:58:53 +00:00
|
|
|
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
const handleStop = async (storyId: string, agentName: string) => {
|
2026-02-19 17:58:53 +00:00
|
|
|
setActionError(null);
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
const key = agentKey(storyId, agentName);
|
2026-02-19 17:58:53 +00:00
|
|
|
try {
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
await agentsApi.stopAgent(storyId, agentName);
|
|
|
|
|
cleanupRefs.current[key]?.();
|
|
|
|
|
delete cleanupRefs.current[key];
|
2026-02-19 17:58:53 +00:00
|
|
|
setAgents((prev) => {
|
|
|
|
|
const next = { ...prev };
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
delete next[key];
|
2026-02-19 17:58:53 +00:00
|
|
|
return next;
|
|
|
|
|
});
|
|
|
|
|
} catch (err) {
|
|
|
|
|
const message = err instanceof Error ? err.message : String(err);
|
|
|
|
|
setActionError(`Failed to stop agent for ${storyId}: ${message}`);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2026-02-20 14:42:41 +00:00
|
|
|
const handleSaveEditor = async () => {
|
|
|
|
|
try {
|
|
|
|
|
const trimmed = editorInput.trim() || null;
|
|
|
|
|
const result = await settingsApi.setEditorCommand(trimmed);
|
|
|
|
|
setEditorCommand(result.editor_command);
|
|
|
|
|
setEditorInput(result.editor_command ?? "");
|
|
|
|
|
setEditingEditor(false);
|
|
|
|
|
} catch (err) {
|
|
|
|
|
const message = err instanceof Error ? err.message : String(err);
|
|
|
|
|
setActionError(`Failed to save editor: ${message}`);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2026-02-19 17:58:53 +00:00
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
border: "1px solid #333",
|
|
|
|
|
borderRadius: "10px",
|
|
|
|
|
padding: "12px 16px",
|
|
|
|
|
background: "#1f1f1f",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: "8px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
gap: "12px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
gap: "8px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<div style={{ fontWeight: 600 }}>Agents</div>
|
|
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
fontSize: "0.75em",
|
|
|
|
|
color: "#777",
|
|
|
|
|
fontFamily: "monospace",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{Object.values(agents).filter((a) => a.status === "running").length}{" "}
|
|
|
|
|
running
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{lastRefresh && (
|
|
|
|
|
<div style={{ fontSize: "0.7em", color: "#555" }}>
|
|
|
|
|
Loaded {formatTimestamp(lastRefresh)}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-02-20 14:42:41 +00:00
|
|
|
{/* Editor preference */}
|
|
|
|
|
<div style={{ display: "flex", alignItems: "center", gap: "6px" }}>
|
|
|
|
|
<span style={{ fontSize: "0.75em", color: "#666" }}>Editor:</span>
|
|
|
|
|
{editingEditor ? (
|
|
|
|
|
<>
|
|
|
|
|
<input
|
|
|
|
|
type="text"
|
|
|
|
|
value={editorInput}
|
|
|
|
|
onChange={(e) => setEditorInput(e.target.value)}
|
|
|
|
|
onKeyDown={(e) => {
|
|
|
|
|
if (e.key === "Enter") handleSaveEditor();
|
|
|
|
|
if (e.key === "Escape") setEditingEditor(false);
|
|
|
|
|
}}
|
|
|
|
|
placeholder="zed, code, cursor..."
|
|
|
|
|
style={{
|
|
|
|
|
fontSize: "0.75em",
|
|
|
|
|
background: "#111",
|
|
|
|
|
border: "1px solid #444",
|
|
|
|
|
borderRadius: "4px",
|
|
|
|
|
color: "#ccc",
|
|
|
|
|
padding: "2px 6px",
|
|
|
|
|
width: "120px",
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={handleSaveEditor}
|
|
|
|
|
style={{
|
|
|
|
|
fontSize: "0.7em",
|
|
|
|
|
padding: "2px 8px",
|
|
|
|
|
borderRadius: "4px",
|
|
|
|
|
border: "1px solid #238636",
|
|
|
|
|
background: "#238636",
|
|
|
|
|
color: "#fff",
|
|
|
|
|
cursor: "pointer",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Save
|
|
|
|
|
</button>
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={() => setEditingEditor(false)}
|
|
|
|
|
style={{
|
|
|
|
|
fontSize: "0.7em",
|
|
|
|
|
padding: "2px 8px",
|
|
|
|
|
borderRadius: "4px",
|
|
|
|
|
border: "1px solid #444",
|
|
|
|
|
background: "none",
|
|
|
|
|
color: "#888",
|
|
|
|
|
cursor: "pointer",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Cancel
|
|
|
|
|
</button>
|
|
|
|
|
</>
|
|
|
|
|
) : (
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={() => setEditingEditor(true)}
|
|
|
|
|
style={{
|
|
|
|
|
fontSize: "0.75em",
|
|
|
|
|
background: "none",
|
|
|
|
|
border: "1px solid #333",
|
|
|
|
|
borderRadius: "4px",
|
|
|
|
|
color: editorCommand ? "#aaa" : "#555",
|
|
|
|
|
cursor: "pointer",
|
|
|
|
|
padding: "2px 8px",
|
|
|
|
|
fontFamily: editorCommand ? "monospace" : "inherit",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{editorCommand ?? "Set editor..."}
|
|
|
|
|
</button>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-02-23 13:23:35 +00:00
|
|
|
{/* Roster badges — show all configured agents with idle/active state */}
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
{roster.length > 0 && (
|
|
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexWrap: "wrap",
|
|
|
|
|
gap: "4px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2026-02-23 13:23:35 +00:00
|
|
|
{roster.map((a) => {
|
|
|
|
|
// Find the story this roster agent is currently working on (if any)
|
|
|
|
|
const activeEntry = Object.entries(agents).find(
|
|
|
|
|
([, state]) =>
|
|
|
|
|
state.agentName === a.name &&
|
|
|
|
|
(state.status === "running" || state.status === "pending"),
|
|
|
|
|
);
|
|
|
|
|
const activeStoryId = activeEntry
|
|
|
|
|
? activeEntry[0].split(":")[0]
|
|
|
|
|
: null;
|
|
|
|
|
return (
|
|
|
|
|
<RosterBadge
|
|
|
|
|
key={`roster-${a.name}`}
|
|
|
|
|
agent={a}
|
|
|
|
|
activeStoryId={activeStoryId}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
})}
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
2026-02-19 17:58:53 +00:00
|
|
|
{actionError && (
|
|
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
fontSize: "0.85em",
|
|
|
|
|
color: "#ff7b72",
|
|
|
|
|
padding: "4px 8px",
|
|
|
|
|
background: "#ff7b7211",
|
|
|
|
|
borderRadius: "6px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{actionError}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
2026-02-20 19:39:19 +00:00
|
|
|
{/* Active agents */}
|
|
|
|
|
{Object.entries(agents).length > 0 && (
|
2026-02-19 17:58:53 +00:00
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: "6px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2026-02-20 19:39:19 +00:00
|
|
|
{Object.entries(agents).map(([key, a]) => (
|
|
|
|
|
<div
|
|
|
|
|
key={`agent-${key}`}
|
|
|
|
|
style={{
|
|
|
|
|
border: "1px solid #2a2a2a",
|
|
|
|
|
borderRadius: "8px",
|
|
|
|
|
background: "#191919",
|
|
|
|
|
overflow: "hidden",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2026-02-19 17:58:53 +00:00
|
|
|
<div
|
|
|
|
|
style={{
|
2026-02-20 19:39:19 +00:00
|
|
|
padding: "8px 12px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
gap: "8px",
|
2026-02-19 17:58:53 +00:00
|
|
|
}}
|
|
|
|
|
>
|
2026-02-20 19:39:19 +00:00
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={() =>
|
|
|
|
|
setExpandedKey(expandedKey === key ? null : key)
|
|
|
|
|
}
|
|
|
|
|
style={{
|
|
|
|
|
background: "none",
|
|
|
|
|
border: "none",
|
|
|
|
|
color: "#aaa",
|
|
|
|
|
cursor: "pointer",
|
|
|
|
|
fontSize: "0.8em",
|
|
|
|
|
padding: "0 4px",
|
|
|
|
|
transform:
|
2026-02-23 12:59:55 +00:00
|
|
|
expandedKey === key ? "rotate(90deg)" : "rotate(0deg)",
|
2026-02-20 19:39:19 +00:00
|
|
|
transition: "transform 0.15s",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
▶
|
|
|
|
|
</button>
|
|
|
|
|
|
2026-02-19 17:58:53 +00:00
|
|
|
<div
|
|
|
|
|
style={{
|
2026-02-20 19:39:19 +00:00
|
|
|
flex: 1,
|
|
|
|
|
fontWeight: 600,
|
|
|
|
|
fontSize: "0.9em",
|
|
|
|
|
overflow: "hidden",
|
|
|
|
|
textOverflow: "ellipsis",
|
|
|
|
|
whiteSpace: "nowrap",
|
2026-02-19 17:58:53 +00:00
|
|
|
}}
|
|
|
|
|
>
|
2026-02-20 19:39:19 +00:00
|
|
|
<span style={{ color: "#888" }}>{a.agentName}</span>
|
|
|
|
|
<span style={{ color: "#555", margin: "0 6px" }}>
|
|
|
|
|
{key.split(":")[0]}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<StatusBadge status={a.status} />
|
|
|
|
|
|
|
|
|
|
{(a.status === "running" || a.status === "pending") && (
|
2026-02-19 17:58:53 +00:00
|
|
|
<button
|
|
|
|
|
type="button"
|
2026-02-23 12:59:55 +00:00
|
|
|
onClick={() => handleStop(key.split(":")[0], a.agentName)}
|
2026-02-19 17:58:53 +00:00
|
|
|
style={{
|
2026-02-20 19:39:19 +00:00
|
|
|
padding: "4px 10px",
|
|
|
|
|
borderRadius: "999px",
|
|
|
|
|
border: "1px solid #ff7b7244",
|
|
|
|
|
background: "#ff7b7211",
|
|
|
|
|
color: "#ff7b72",
|
2026-02-19 17:58:53 +00:00
|
|
|
cursor: "pointer",
|
2026-02-20 19:39:19 +00:00
|
|
|
fontSize: "0.75em",
|
2026-02-19 17:58:53 +00:00
|
|
|
fontWeight: 600,
|
|
|
|
|
}}
|
|
|
|
|
>
|
2026-02-20 19:39:19 +00:00
|
|
|
Stop
|
|
|
|
|
</button>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
2026-02-19 17:58:53 +00:00
|
|
|
|
2026-02-20 19:39:19 +00:00
|
|
|
{expandedKey === key && (
|
|
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
borderTop: "1px solid #2a2a2a",
|
|
|
|
|
padding: "8px 12px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{a.worktreePath && (
|
|
|
|
|
<div
|
2026-02-19 17:58:53 +00:00
|
|
|
style={{
|
|
|
|
|
fontSize: "0.75em",
|
2026-02-20 19:39:19 +00:00
|
|
|
color: "#666",
|
|
|
|
|
fontFamily: "monospace",
|
|
|
|
|
marginBottom: "6px",
|
2026-02-19 17:58:53 +00:00
|
|
|
}}
|
|
|
|
|
>
|
2026-02-20 19:39:19 +00:00
|
|
|
Worktree: {a.worktreePath}
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
</div>
|
|
|
|
|
)}
|
2026-02-20 19:39:19 +00:00
|
|
|
{a.worktreePath && (
|
|
|
|
|
<DiffCommand
|
|
|
|
|
worktreePath={a.worktreePath}
|
|
|
|
|
baseBranch={a.baseBranch ?? "master"}
|
|
|
|
|
/>
|
2026-02-20 14:11:53 +00:00
|
|
|
)}
|
2026-02-20 19:39:19 +00:00
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
maxHeight: "300px",
|
|
|
|
|
overflowY: "auto",
|
|
|
|
|
background: "#111",
|
|
|
|
|
borderRadius: "6px",
|
|
|
|
|
padding: "8px",
|
|
|
|
|
fontFamily: "monospace",
|
|
|
|
|
fontSize: "0.8em",
|
|
|
|
|
lineHeight: "1.5",
|
|
|
|
|
color: "#ccc",
|
|
|
|
|
whiteSpace: "pre-wrap",
|
|
|
|
|
wordBreak: "break-word",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{a.log.length === 0 ? (
|
|
|
|
|
<span style={{ color: "#555" }}>
|
|
|
|
|
{a.status === "pending" || a.status === "running"
|
|
|
|
|
? "Waiting for output..."
|
|
|
|
|
: "No output captured."}
|
|
|
|
|
</span>
|
|
|
|
|
) : (
|
|
|
|
|
a.log.map((line, i) => (
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
<div
|
2026-02-20 19:39:19 +00:00
|
|
|
key={`log-${key}-${i.toString()}`}
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
style={{
|
2026-02-20 19:39:19 +00:00
|
|
|
color: line.startsWith("[ERROR]")
|
|
|
|
|
? "#ff7b72"
|
|
|
|
|
: "#ccc",
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
}}
|
|
|
|
|
>
|
2026-02-20 19:39:19 +00:00
|
|
|
{line}
|
Accept story 34: Per-Project Agent Configuration and Role Definitions
Replace single [agent] config with multi-agent [[agent]] roster system.
Each agent has name, role, model, allowed_tools, max_turns, max_budget_usd,
and system_prompt fields that map to Claude CLI flags at spawn time.
- AgentConfig expanded with structured fields, validated at startup (panics
on duplicate names, empty names, non-positive budgets/turns)
- Backwards-compatible: legacy [agent] format auto-wraps with deprecation warning
- AgentPool uses composite "story_id:agent_name" keys for concurrent agents
- agent_name added to AgentEvent variants, AgentInfo, start/stop/subscribe APIs
- GET /agents/config returns roster, POST /agents/config/reload hot-reloads
- POST /agents/start accepts optional agent_name, /agents/stop requires it
- SSE route updated to /agents/:story_id/:agent_name/stream
- Frontend: roster badges, agent selector dropdown, composite-key state
- Project root initialized to cwd at startup so config endpoints work immediately
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 18:46:14 +00:00
|
|
|
</div>
|
2026-02-20 19:39:19 +00:00
|
|
|
))
|
|
|
|
|
)}
|
|
|
|
|
<div
|
|
|
|
|
ref={(el) => {
|
|
|
|
|
logEndRefs.current[key] = el;
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
2026-02-19 17:58:53 +00:00
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|