Skip to content
Merged
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
2 changes: 1 addition & 1 deletion apps/daemon/src/runtimes/metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const AGENT_INSTALL_LINKS: Record<
{ installUrl?: string; docsUrl?: string }
> = {
amr: {
installUrl: 'https://github.com/nexu-io/vela',
installUrl: 'https://open-design.ai/amr',
docsUrl: 'https://github.com/nexu-io/open-design/blob/main/docs/new-agent-runtime-acp.md',
},
claude: {
Expand Down
4 changes: 4 additions & 0 deletions apps/daemon/tests/runtimes/env-and-detection.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -458,9 +458,13 @@ test('detectAgents includes sanitized install and docs metadata from split runti
process.env.OD_AGENT_HOME = dir;

const agents = await detectAgents();
const amr = agents.find((agent) => agent.id === 'amr');
const qoder = agents.find((agent) => agent.id === 'qoder');
const deepseek = agents.find((agent) => agent.id === 'deepseek');

assert.ok(amr);
assert.equal(amr.available, false);
assert.equal(amr.installUrl, 'https://open-design.ai/amr');
assert.ok(qoder);
assert.equal(qoder.available, false);
assert.equal(qoder.installUrl, 'https://qoder.com/download');
Expand Down
Loading