From 1bd4383a0249e8fbc5ec3292b4710b17521db61a Mon Sep 17 00:00:00 2001 From: Mahesh Patil <17205424+mahpatil@users.noreply.github.com> Date: Sun, 23 Aug 2026 13:05:12 +0100 Subject: [PATCH] Add OmniRoute command to registry --- lib/ai-tools/registry.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lib/ai-tools/registry.js b/lib/ai-tools/registry.js index ada9b8d..a11fa81 100644 --- a/lib/ai-tools/registry.js +++ b/lib/ai-tools/registry.js @@ -192,7 +192,16 @@ const AI_TOOLS = { description: 'Interactive demo for testing (no AI installation required)', website: 'https://termly.dev', checkInstalled: async () => true // Always available - } + }, + 'omniroute': { + key: 'omniroute', + command: 'omniroute', + args: [], + displayName: 'OmniRoute Claude Code', + description: 'Claude Code launched through OmniRoute auto-best-coding', + website: 'https://github.com/diegosouzapw/OmniRoute', + checkInstalled: async () => await commandExists('omniroute') + }, }; // Check if command exists