Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions desktop/src-tauri/src/managed_agents/discovery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1617,6 +1617,17 @@ const PRESET_HARNESSES: &[PresetHarness] = &[
Gateway's own environment separately.",
underlying_cli: None,
},
PresetHarness {
id: "devin",
label: "Devin",
command: "devin",
args: &["acp"],
install_instructions_url: "https://docs.devin.ai/cli/index",
install_hint: "Buzz talks to Devin through the Devin CLI's ACP mode (devin acp). \
Install the Devin CLI from https://docs.devin.ai/cli/index and run \
`devin auth login` to authenticate.",
underlying_cli: Some("devin"),
},
];

/// Return the static preset harness definitions as `HarnessDefinition` values.
Expand Down
2 changes: 2 additions & 0 deletions desktop/src/features/settings/ui/harnessCatalogCopy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ const HARNESS_DESCRIPTIONS: Record<string, string> = {
// Sources: https://github.com/openclaw/openclaw,
// https://docs.openclaw.ai/start/getting-started
openclaw: "A personal AI assistant that runs on your own devices.",
// Source: https://docs.devin.ai/cli/index
devin: "Cognition's autonomous AI software engineer, connected via the Devin CLI's ACP mode.",
};

/**
Expand Down