fix: update tool installation checks and refactor stdout JSON parsing in AI modules

This commit is contained in:
ashim-hq
2026-04-19 12:13:26 +08:00
parent dc7ba119f8
commit 12c4d4de6f
14 changed files with 43 additions and 39 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ export function isFeatureInstalled(bundleId: string): boolean {
export function isToolInstalled(toolId: string): boolean {
const bundleId = TOOL_BUNDLE_MAP[toolId];
if (!bundleId) return false;
if (!bundleId) return true;
return isFeatureInstalled(bundleId);
}