Builtins move out of code into /data/AGENTS.md (always-on, mounted ro
into the container); per-project AGENTS.md is now an optional override.
agents.ts merges global + project entries with project-wins-by-name and
caches per-source mtimes (60s TTL). Parser switches to per-block
try/catch and returns AgentsResponse { agents, errors[] } so one
malformed block no longer fails the file. AgentPicker shows a
non-blocking amber chip listing skipped blocks and only fires a gray
toast when zero agents loaded.
WS reconnect UX (useUserEvents + useSessionStream) now silent on the
first disconnect; createWsReconnectToast escalates to gray after 3
failures or 15 s, then to red with a Retry Now action after 60 s.
useSessionStream also gained the exponential-backoff reconnect it was
missing.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
122 lines
4.3 KiB
TypeScript
122 lines
4.3 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
import { Check, ChevronDown } from 'lucide-react';
|
|
import { toast } from 'sonner';
|
|
import { api } from '@/api/client';
|
|
import type { Agent, AgentParseError } from '@/api/types';
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from '@/components/ui/dropdown-menu';
|
|
|
|
interface Props {
|
|
projectId: string;
|
|
value: string | null;
|
|
onChange: (agentId: string | null) => void | Promise<void>;
|
|
}
|
|
|
|
export function AgentPicker({ projectId, value, onChange }: Props) {
|
|
const [agents, setAgents] = useState<Agent[] | null>(null);
|
|
const [parseErrors, setParseErrors] = useState<AgentParseError[]>([]);
|
|
const [error, setError] = useState<string | null>(null);
|
|
const [open, setOpen] = useState(false);
|
|
|
|
// v1.8.1: per-agent parse errors are non-blocking. Silent if any agents
|
|
// loaded successfully; a gray warning toast fires only when EVERY agent
|
|
// in AGENTS.md failed to parse. Server logs a console.warn either way.
|
|
useEffect(() => {
|
|
let cancelled = false;
|
|
setAgents(null);
|
|
setParseErrors([]);
|
|
setError(null);
|
|
api.agents
|
|
.list(projectId)
|
|
.then((res) => {
|
|
if (cancelled) return;
|
|
setAgents(res.agents);
|
|
setParseErrors(res.errors);
|
|
if (res.errors.length > 0 && res.agents.length === 0) {
|
|
toast.warning(
|
|
`AGENTS.md: ${res.errors.length} agent${res.errors.length === 1 ? '' : 's'} failed to parse, none loaded`,
|
|
);
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
if (cancelled) return;
|
|
setError(err instanceof Error ? err.message : 'failed to load agents');
|
|
});
|
|
return () => {
|
|
cancelled = true;
|
|
};
|
|
}, [projectId]);
|
|
|
|
const selectedAgent = agents?.find((a) => a.id === value) ?? null;
|
|
const triggerLabel = value === null
|
|
? 'No agent'
|
|
: selectedAgent?.name ?? value;
|
|
|
|
return (
|
|
<DropdownMenu open={open} onOpenChange={setOpen}>
|
|
<DropdownMenuTrigger asChild>
|
|
<button
|
|
type="button"
|
|
className="text-xs text-muted-foreground hover:text-foreground flex items-center gap-1 px-1.5 py-0.5 rounded hover:bg-muted/60"
|
|
title={selectedAgent?.description ?? undefined}
|
|
>
|
|
<span className="truncate max-w-[160px]">{triggerLabel}</span>
|
|
<ChevronDown className="size-3 opacity-70" />
|
|
</button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="start" className="max-h-80 overflow-y-auto w-72">
|
|
{error && (
|
|
<div className="px-2 py-1.5 text-xs text-destructive">{error}</div>
|
|
)}
|
|
{agents === null && !error && (
|
|
<div className="px-2 py-1.5 text-xs text-muted-foreground">Loading…</div>
|
|
)}
|
|
{agents !== null && (
|
|
<>
|
|
<DropdownMenuItem
|
|
onSelect={() => void onChange(null)}
|
|
className="text-xs"
|
|
>
|
|
<Check className={`size-3 ${value === null ? 'opacity-100' : 'opacity-0'}`} />
|
|
<span className="font-medium">No agent</span>
|
|
</DropdownMenuItem>
|
|
{agents.length > 0 && <DropdownMenuSeparator />}
|
|
{agents.map((a) => (
|
|
<DropdownMenuItem
|
|
key={a.id}
|
|
onSelect={() => void onChange(a.id)}
|
|
className="text-xs flex-col items-start gap-0.5"
|
|
>
|
|
<div className="flex items-center gap-1.5">
|
|
<Check
|
|
className={`size-3 ${a.id === value ? 'opacity-100' : 'opacity-0'}`}
|
|
/>
|
|
<span className="font-medium">{a.name}</span>
|
|
</div>
|
|
{a.description && (
|
|
<span className="text-muted-foreground pl-[18px] truncate w-full">
|
|
{a.description}
|
|
</span>
|
|
)}
|
|
</DropdownMenuItem>
|
|
))}
|
|
{parseErrors.length > 0 && (
|
|
<div
|
|
className="px-2 py-1.5 mt-1 text-xs text-amber-500 border-t border-border"
|
|
title={parseErrors.map((e) => `${e.agent_name}: ${e.reason}`).join('\n')}
|
|
>
|
|
{parseErrors.length} agent{parseErrors.length === 1 ? '' : 's'} skipped
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
);
|
|
}
|