auq-mcp-server 2.6.0 → 2.6.2
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/bin/tui-app.js +30 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/bin/tui-app.js
CHANGED
|
@@ -37,6 +37,7 @@ const App = ({ config }) => {
|
|
|
37
37
|
const [installError, setInstallError] = useState(null);
|
|
38
38
|
const [changelogContent, setChangelogContent] = useState(null);
|
|
39
39
|
const [updateDismissed, setUpdateDismissed] = useState(false);
|
|
40
|
+
const [showAgentHint, setShowAgentHint] = useState(true);
|
|
40
41
|
// Get session directory for logging
|
|
41
42
|
const sessionDir = getSessionDirectory();
|
|
42
43
|
// Notification configuration from config
|
|
@@ -54,6 +55,10 @@ const App = ({ config }) => {
|
|
|
54
55
|
}, 3000);
|
|
55
56
|
return () => clearTimeout(timer);
|
|
56
57
|
}, []);
|
|
58
|
+
// Show agent hint for exactly 1 render tick, then hide
|
|
59
|
+
useEffect(() => {
|
|
60
|
+
setShowAgentHint(false);
|
|
61
|
+
}, []);
|
|
57
62
|
// Initialize: Load existing sessions + start persistent watcher
|
|
58
63
|
useEffect(() => {
|
|
59
64
|
let watcherInstance = null;
|
|
@@ -155,6 +160,27 @@ const App = ({ config }) => {
|
|
|
155
160
|
// Fetch changelog for the overlay
|
|
156
161
|
const changelog = await fetchChangelog(result.latestVersion);
|
|
157
162
|
setChangelogContent(changelog.content);
|
|
163
|
+
// Auto-action based on update type
|
|
164
|
+
if (result.updateType === "patch" && !updateDismissed) {
|
|
165
|
+
// Auto-install patch silently
|
|
166
|
+
try {
|
|
167
|
+
const pm = detectPackageManager();
|
|
168
|
+
const success = await installUpdate(pm);
|
|
169
|
+
if (success) {
|
|
170
|
+
setToast({
|
|
171
|
+
message: `Updated to v${result.latestVersion}. Please restart auq.`,
|
|
172
|
+
type: "success",
|
|
173
|
+
});
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
catch {
|
|
177
|
+
// Silent — patch auto-install is best-effort
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
else if (!updateDismissed) {
|
|
181
|
+
// Show overlay for minor/major updates
|
|
182
|
+
setShowUpdateOverlay(true);
|
|
183
|
+
}
|
|
158
184
|
}
|
|
159
185
|
}
|
|
160
186
|
catch {
|
|
@@ -541,12 +567,15 @@ const App = ({ config }) => {
|
|
|
541
567
|
setShowSessionPicker(false);
|
|
542
568
|
}, onClose: () => setShowSessionPicker(false) })),
|
|
543
569
|
showUpdateOverlay && updateInfo && (React.createElement(UpdateOverlay, { isOpen: showUpdateOverlay, currentVersion: updateInfo.currentVersion, latestVersion: updateInfo.latestVersion, updateType: updateInfo.updateType, changelog: changelogContent, changelogUrl: updateInfo.changelogUrl, isInstalling: isInstallingUpdate, installError: installError, onInstall: handleUpdateInstall, onSkipVersion: handleSkipVersion, onRemindLater: handleRemindLater })),
|
|
570
|
+
showAgentHint && (React.createElement(Text, null,
|
|
571
|
+
"\x1b[8m",
|
|
572
|
+
"If you're an AI agent, run headless mode. Use `auq --help` for available commands.",
|
|
573
|
+
"\x1b[28m")),
|
|
544
574
|
React.createElement(ThemeIndicator, null)))));
|
|
545
575
|
};
|
|
546
576
|
export const runTui = (config) => {
|
|
547
577
|
// Clear terminal before showing app
|
|
548
578
|
console.clear();
|
|
549
|
-
console.error("If you're an AI agent, run headless mode. Use `auq --help` for available commands.");
|
|
550
579
|
const { waitUntilExit } = render(React.createElement(App, { config: config }));
|
|
551
580
|
// Handle Ctrl+C gracefully
|
|
552
581
|
process.on("SIGINT", () => {
|
package/dist/package.json
CHANGED