mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
* feat(server): add ACP base provider with Claude ACP integration Implement a generic Agent Client Protocol (ACP) base provider that any ACP-compatible agent can extend with minimal code. Includes a concrete Claude ACP implementation via @agentclientprotocol/claude-agent-acp with full parity to the existing Claude Code provider. The base handles subprocess lifecycle, streaming translation, permission bridging, terminal/fs callbacks, listModels, loadSession/resume, and mode/model management. The concrete class only specifies the command, modes, and availability check. * fix: update lockfile signatures and Nix hash * feat: add Copilot ACP provider, eliminate hardcoded provider unions, fix ACP streaming bugs Add Copilot as an ACP provider (copilot --acp), with real modes and models discovered from the ACP server. Fix two ACP base bugs: duplicate assistant text (emit deltas not cumulative) and idle→running→stuck (fire-and-return startTurn). Replace all hardcoded provider string unions with string/manifest- derived values so adding a provider only requires: impl class, manifest entry, registry factory, icon, and E2E config. Add provider docs and Copilot icon. * fix: update lockfile signatures and Nix hash * feat(app): add OpenCode provider icon --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
20 lines
503 B
TypeScript
20 lines
503 B
TypeScript
import Svg, { Path } from "react-native-svg";
|
|
|
|
interface OpenCodeIconProps {
|
|
size?: number;
|
|
color?: string;
|
|
}
|
|
|
|
export function OpenCodeIcon({ size = 16, color = "currentColor" }: OpenCodeIconProps) {
|
|
return (
|
|
<Svg width={size} height={size} viewBox="96 64 288 384" fill={color}>
|
|
<Path d="M320 224V352H192V224H320Z" opacity={0.4} />
|
|
<Path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M384 416H128V96H384V416ZM320 160H192V352H320V160Z"
|
|
/>
|
|
</Svg>
|
|
);
|
|
}
|