neohive 6.0.0 → 6.0.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/cli.js +22 -28
- package/dashboard.html +1 -1
- package/dashboard.js +2 -2
- package/package.json +1 -1
- package/server.js +2 -2
package/cli.js
CHANGED
|
@@ -9,35 +9,29 @@ const command = process.argv[2];
|
|
|
9
9
|
|
|
10
10
|
function printUsage() {
|
|
11
11
|
console.log(`
|
|
12
|
-
Neohive
|
|
13
|
-
MCP
|
|
14
|
-
Supports: Claude Code, Gemini CLI, Codex CLI, Ollama
|
|
12
|
+
Neohive v6.0.0
|
|
13
|
+
The MCP collaboration layer for AI CLI tools.
|
|
15
14
|
|
|
16
15
|
Usage:
|
|
17
|
-
npx neohive init
|
|
18
|
-
npx neohive init --claude
|
|
19
|
-
npx neohive init --gemini
|
|
20
|
-
npx neohive init --codex
|
|
21
|
-
npx neohive init --all
|
|
22
|
-
npx neohive init --ollama
|
|
23
|
-
npx neohive init --template T
|
|
24
|
-
npx neohive
|
|
25
|
-
npx neohive dashboard
|
|
26
|
-
npx neohive
|
|
27
|
-
npx neohive
|
|
28
|
-
npx neohive
|
|
29
|
-
npx neohive
|
|
30
|
-
npx neohive
|
|
31
|
-
npx neohive
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
Parallel workflow steps with dependency graphs (depends_on)
|
|
37
|
-
Auto-retry with skill accumulation (3 attempts then team escalation)
|
|
38
|
-
Watchdog engine: idle nudge, stuck detection, auto-reassign
|
|
39
|
-
100ms handoff cooldowns in autonomous mode
|
|
40
|
-
Plan dashboard: live progress, pause/stop/skip/reassign controls
|
|
16
|
+
npx neohive init Auto-detect CLI and configure MCP
|
|
17
|
+
npx neohive init --claude Configure for Claude Code only
|
|
18
|
+
npx neohive init --gemini Configure for Gemini CLI only
|
|
19
|
+
npx neohive init --codex Configure for Codex CLI only
|
|
20
|
+
npx neohive init --all Configure for all detected CLIs
|
|
21
|
+
npx neohive init --ollama Setup Ollama local LLM bridge
|
|
22
|
+
npx neohive init --template T Initialize with a team template
|
|
23
|
+
npx neohive dashboard Launch web dashboard (http://localhost:3000)
|
|
24
|
+
npx neohive dashboard --lan Dashboard accessible on LAN
|
|
25
|
+
npx neohive status Show active agents and tasks
|
|
26
|
+
npx neohive msg <agent> <text> Send a message from CLI
|
|
27
|
+
npx neohive doctor Diagnostic health check
|
|
28
|
+
npx neohive templates List available team templates
|
|
29
|
+
npx neohive reset --force Clear all data (auto-archives first)
|
|
30
|
+
npx neohive uninstall Remove from all CLI configs
|
|
31
|
+
npx neohive help Show this help
|
|
32
|
+
|
|
33
|
+
Templates: pair, team, review, debate, managed
|
|
34
|
+
Docs: https://github.com/fakiho/neohive
|
|
41
35
|
`);
|
|
42
36
|
}
|
|
43
37
|
|
|
@@ -654,7 +648,7 @@ function cliStatus() {
|
|
|
654
648
|
console.log('');
|
|
655
649
|
}
|
|
656
650
|
|
|
657
|
-
//
|
|
651
|
+
// v6.0: Diagnostic health check
|
|
658
652
|
function cliDoctor() {
|
|
659
653
|
console.log('');
|
|
660
654
|
console.log(' \x1b[1mNeohive — Doctor\x1b[0m');
|
package/dashboard.html
CHANGED
|
@@ -3555,7 +3555,7 @@
|
|
|
3555
3555
|
</div>
|
|
3556
3556
|
</div>
|
|
3557
3557
|
<div class="app-footer">
|
|
3558
|
-
<span>Neohive
|
|
3558
|
+
<span>Neohive v6.0.0</span>
|
|
3559
3559
|
</div>
|
|
3560
3560
|
<div class="profile-popup" id="profile-popup" onclick="event.stopPropagation()">
|
|
3561
3561
|
<div class="profile-popup-header">
|
package/dashboard.js
CHANGED
|
@@ -2174,7 +2174,7 @@ const server = http.createServer(async (req, res) => {
|
|
|
2174
2174
|
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
2175
2175
|
res.end(JSON.stringify({ success: true }));
|
|
2176
2176
|
}
|
|
2177
|
-
// ========== Plan Control API (
|
|
2177
|
+
// ========== Plan Control API (v6.0 Autonomy Engine) ==========
|
|
2178
2178
|
|
|
2179
2179
|
else if (url.pathname === '/api/plan/status' && req.method === 'GET') {
|
|
2180
2180
|
const projectPath = url.searchParams.get('project') || null;
|
|
@@ -2948,7 +2948,7 @@ server.listen(PORT, LAN_MODE ? '0.0.0.0' : '127.0.0.1', () => {
|
|
|
2948
2948
|
const dataDir = resolveDataDir();
|
|
2949
2949
|
const lanIP = getLanIP();
|
|
2950
2950
|
console.log('');
|
|
2951
|
-
console.log(' Neohive
|
|
2951
|
+
console.log(' Neohive Dashboard v6.0.0');
|
|
2952
2952
|
console.log(' ============================================');
|
|
2953
2953
|
console.log(' Dashboard: http://localhost:' + PORT);
|
|
2954
2954
|
if (LAN_MODE && lanIP) {
|
package/package.json
CHANGED
package/server.js
CHANGED
|
@@ -6097,7 +6097,7 @@ function toolToggleRule(ruleId) {
|
|
|
6097
6097
|
// --- MCP Server setup ---
|
|
6098
6098
|
|
|
6099
6099
|
const server = new Server(
|
|
6100
|
-
{ name: 'neohive', version: '
|
|
6100
|
+
{ name: 'neohive', version: '6.0.0' },
|
|
6101
6101
|
{ capabilities: { tools: {} } }
|
|
6102
6102
|
);
|
|
6103
6103
|
|
|
@@ -7164,7 +7164,7 @@ async function main() {
|
|
|
7164
7164
|
try {
|
|
7165
7165
|
const transport = new StdioServerTransport();
|
|
7166
7166
|
await server.connect(transport);
|
|
7167
|
-
console.error('Neohive MCP server
|
|
7167
|
+
console.error('Neohive MCP server v6.0.0 running (66 tools)');
|
|
7168
7168
|
} catch (e) {
|
|
7169
7169
|
console.error('ERROR: MCP server failed to start: ' + e.message);
|
|
7170
7170
|
console.error('Fix: Run "npx neohive doctor" to check your setup.');
|