memorix 0.9.26 → 0.9.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +5 -7
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +5 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -40797,13 +40797,11 @@ async function detectInstalledAgents() {
|
|
|
40797
40797
|
agents.push("cursor");
|
|
40798
40798
|
} catch {
|
|
40799
40799
|
}
|
|
40800
|
-
|
|
40801
|
-
|
|
40802
|
-
|
|
40803
|
-
|
|
40804
|
-
|
|
40805
|
-
} catch {
|
|
40806
|
-
}
|
|
40800
|
+
const vscodeDir = path7.join(home, ".vscode");
|
|
40801
|
+
try {
|
|
40802
|
+
await fs5.access(vscodeDir);
|
|
40803
|
+
agents.push("copilot");
|
|
40804
|
+
} catch {
|
|
40807
40805
|
}
|
|
40808
40806
|
const kiroConfig = path7.join(home, ".kiro");
|
|
40809
40807
|
try {
|