@eminent337/aery 0.1.101 → 0.1.102

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.
@@ -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 { formatCoreExtensionsReport } from "../../cli/doctor.js";
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 { diagnoseCoreExtensions, wireCoreExtensions } from "../../migrations.js";
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(formatCoreExtensionsReport(diagnostic), 1, 0));
4301
+ this.chatContainer.addChild(new Text(formatCurrentCoreExtensionsReport(), 1, 0));
4306
4302
  this.ui.requestRender();
4307
4303
  }
4308
4304
  /**