Add Devin CLI to the ACP provider catalog

This commit is contained in:
Alcimério Rangel
2026-05-25 06:38:56 -03:00
committed by GitHub
parent f137705f1e
commit 655d05add8
2 changed files with 10 additions and 0 deletions

View File

@@ -144,6 +144,15 @@ const CATALOG_DATA = [
installLink: "https://github.com/Hmbown/DeepSeek-TUI",
command: ["deepseek", "serve", "--acp"],
},
{
id: "devin",
title: "Devin CLI",
description: "Cognition's Devin for Terminal via Agent Client Protocol",
version: "manual",
iconId: null,
installLink: "https://cli.devin.ai/docs",
command: ["devin", "acp"],
},
{
id: "dimcode",
title: "DimCode",

View File

@@ -38,6 +38,7 @@ describe("ACP provider catalog", () => {
expect(findProvider("amp-acp").command).toEqual(["amp-acp"]);
expect(findProvider("cursor").command).toEqual(["cursor-agent", "acp"]);
expect(findProvider("deepseek-tui").command).toEqual(["deepseek", "serve", "--acp"]);
expect(findProvider("devin").command).toEqual(["devin", "acp"]);
expect(findProvider("goose").command).toEqual(["goose", "acp"]);
expect(findProvider("junie").command).toEqual(["junie", "--acp", "true"]);
expect(findProvider("kiro").command).toEqual(["kiro-cli", "acp"]);