neohive 6.1.4 → 6.2.0
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/cli.js +9 -1
- package/dashboard.html +300 -842
- package/dashboard.js +13 -4
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -609,6 +609,14 @@ function init() {
|
|
|
609
609
|
|
|
610
610
|
console.log('');
|
|
611
611
|
|
|
612
|
+
// Create .neohive/ data directory up front so the dashboard and file
|
|
613
|
+
// watcher work immediately, even before the first MCP server starts.
|
|
614
|
+
const neohiveDir = dataDir(cwd);
|
|
615
|
+
if (!fs.existsSync(neohiveDir)) {
|
|
616
|
+
fs.mkdirSync(neohiveDir, { recursive: true, mode: 0o700 });
|
|
617
|
+
console.log(' [ok] Created ' + path.basename(neohiveDir) + '/');
|
|
618
|
+
}
|
|
619
|
+
|
|
612
620
|
for (const target of targets) {
|
|
613
621
|
switch (target) {
|
|
614
622
|
case 'claude': setupClaude(serverPath, cwd); break;
|
|
@@ -641,7 +649,7 @@ function init() {
|
|
|
641
649
|
console.log('');
|
|
642
650
|
console.log(
|
|
643
651
|
configuredCursor
|
|
644
|
-
? ' Neohive is ready!
|
|
652
|
+
? ' Neohive is ready! Reload Cursor (Cmd+Shift+P → Reload Window), then enable "neohive" in Settings > Tools & MCP.'
|
|
645
653
|
: ' Neohive is ready! Restart your CLI to pick up the MCP tools.'
|
|
646
654
|
);
|
|
647
655
|
console.log(' MCP server command is your current Node binary (works when the IDE has no Volta/nvm in PATH):');
|