@danainnovations/cortex-mcp 1.0.123 → 1.0.124
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.js +2 -14
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1724,20 +1724,8 @@ function getWizardHtml() {
|
|
|
1724
1724
|
// Server may already be closing
|
|
1725
1725
|
}
|
|
1726
1726
|
|
|
1727
|
-
// Show
|
|
1728
|
-
|
|
1729
|
-
if (activeStep) {
|
|
1730
|
-
activeStep.querySelector('.card').innerHTML =
|
|
1731
|
-
'<div class="text-center">' +
|
|
1732
|
-
'<div class="success-circle"><span class="success-check">✓</span></div>' +
|
|
1733
|
-
'<h2>Setup Complete!</h2>' +
|
|
1734
|
-
'<p class="subtitle mt-2">You can close this tab. Restart your AI clients to see the new tools.</p>' +
|
|
1735
|
-
'<p class="subtitle mt-1" style="opacity: 0.6;">This window will close automatically.</p>' +
|
|
1736
|
-
'</div>';
|
|
1737
|
-
}
|
|
1738
|
-
|
|
1739
|
-
// Auto-close the tab after a short delay
|
|
1740
|
-
setTimeout(function() { window.close(); }, 3000);
|
|
1727
|
+
// Show the getting-started guide on the done step
|
|
1728
|
+
goToStep('done');
|
|
1741
1729
|
}
|
|
1742
1730
|
|
|
1743
1731
|
// \u2500\u2500 Helpers \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500
|