@eminent337/aery 0.1.19 → 0.1.21
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/CHANGELOG.md +2 -2
- package/dist/modes/interactive/interactive-mode.d.ts +1 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +18 -0
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/docs/compaction.md +3 -3
- package/docs/custom-provider.md +4 -4
- package/docs/development.md +2 -2
- package/docs/extensions.md +28 -28
- package/docs/packages.md +1 -1
- package/docs/rpc.md +1 -1
- package/docs/sdk.md +25 -25
- package/docs/session.md +2 -2
- package/docs/skills.md +1 -1
- package/docs/termux.md +1 -1
- package/docs/tui.md +20 -20
- package/examples/extensions/README.md +2 -2
- package/examples/extensions/doom-overlay/README.md +1 -1
- package/examples/extensions/overlay-qa-tests.ts +5 -5
- package/examples/sdk/README.md +2 -2
- package/package.json +1 -1
|
@@ -615,6 +615,8 @@ export class InteractiveMode {
|
|
|
615
615
|
// Fresh install - record the version, send telemetry, don't show changelog
|
|
616
616
|
this.settingsManager.setLastChangelogVersion(VERSION);
|
|
617
617
|
this.reportInstallTelemetry(VERSION);
|
|
618
|
+
// Auto-install core extension pack on fresh install
|
|
619
|
+
this.installCorePackIfNeeded();
|
|
618
620
|
return undefined;
|
|
619
621
|
}
|
|
620
622
|
const newEntries = getNewEntries(entries, lastVersion);
|
|
@@ -638,6 +640,22 @@ export class InteractiveMode {
|
|
|
638
640
|
.then(() => undefined)
|
|
639
641
|
.catch(() => undefined);
|
|
640
642
|
}
|
|
643
|
+
installCorePackIfNeeded() {
|
|
644
|
+
// Fire-and-forget: install core extension pack on fresh install
|
|
645
|
+
void (async () => {
|
|
646
|
+
try {
|
|
647
|
+
const { execFile } = await import("node:child_process");
|
|
648
|
+
const { promisify } = await import("node:util");
|
|
649
|
+
const exec = promisify(execFile);
|
|
650
|
+
await exec("aery", ["install", "https://github.com/eminent337/aery-extensions"], {
|
|
651
|
+
timeout: 30000,
|
|
652
|
+
});
|
|
653
|
+
}
|
|
654
|
+
catch {
|
|
655
|
+
// Silent fail — user can install manually
|
|
656
|
+
}
|
|
657
|
+
})();
|
|
658
|
+
}
|
|
641
659
|
getMarkdownThemeWithSettings() {
|
|
642
660
|
return {
|
|
643
661
|
...getMarkdownTheme(),
|