@eminent337/aery 0.1.101 → 0.1.103
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/doctor.d.ts +2 -0
- package/dist/cli/doctor.d.ts.map +1 -1
- package/dist/cli/doctor.js +5 -2
- package/dist/cli/doctor.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +3 -7
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/package.json +3 -3
|
@@ -9,7 +9,7 @@ import * as path from "node:path";
|
|
|
9
9
|
import { getProviders } from "@eminent337/aery-ai";
|
|
10
10
|
import { CombinedAutocompleteProvider, Container, fuzzyFilter, Loader, Markdown, matchesKey, ProcessTerminal, Spacer, setKeybindings, Text, TruncatedText, TUI, visibleWidth, } from "@eminent337/aery-tui";
|
|
11
11
|
import { spawn, spawnSync } from "child_process";
|
|
12
|
-
import {
|
|
12
|
+
import { formatCurrentCoreExtensionsReport } from "../../cli/doctor.js";
|
|
13
13
|
import { APP_NAME, getAgentDir, getAuthPath, getDebugLogPath, getShareViewerUrl, getUpdateInstruction, VERSION, } from "../../config.js";
|
|
14
14
|
import { parseSkillBlock } from "../../core/agent-session.js";
|
|
15
15
|
import { SessionImportFileNotFoundError } from "../../core/agent-session-runtime.js";
|
|
@@ -23,7 +23,7 @@ import { formatMissingSessionCwdPrompt, MissingSessionCwdError } from "../../cor
|
|
|
23
23
|
import { SessionManager } from "../../core/session-manager.js";
|
|
24
24
|
import { BUILTIN_SLASH_COMMANDS } from "../../core/slash-commands.js";
|
|
25
25
|
import { isInstallTelemetryEnabled } from "../../core/telemetry.js";
|
|
26
|
-
import {
|
|
26
|
+
import { wireCoreExtensions } from "../../migrations.js";
|
|
27
27
|
import { getChangelogPath, getNewEntries, parseChangelog } from "../../utils/changelog.js";
|
|
28
28
|
import { copyToClipboard } from "../../utils/clipboard.js";
|
|
29
29
|
import { extensionForImageMimeType, readClipboardImage } from "../../utils/clipboard-image.js";
|
|
@@ -4297,12 +4297,8 @@ export class InteractiveMode {
|
|
|
4297
4297
|
this.ui.requestRender();
|
|
4298
4298
|
}
|
|
4299
4299
|
handleExtensionsDoctorCommand() {
|
|
4300
|
-
const agentDir = getAgentDir();
|
|
4301
|
-
const repoPath = path.join(agentDir, "git", "github.com", "eminent337", "aery-extensions");
|
|
4302
|
-
const settingsPath = path.join(agentDir, "settings.json");
|
|
4303
|
-
const diagnostic = diagnoseCoreExtensions(repoPath, settingsPath);
|
|
4304
4300
|
this.chatContainer.addChild(new Spacer(1));
|
|
4305
|
-
this.chatContainer.addChild(new Text(
|
|
4301
|
+
this.chatContainer.addChild(new Text(formatCurrentCoreExtensionsReport(), 1, 0));
|
|
4306
4302
|
this.ui.requestRender();
|
|
4307
4303
|
}
|
|
4308
4304
|
/**
|