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 CHANGED
@@ -9,35 +9,29 @@ const command = process.argv[2];
9
9
 
10
10
  function printUsage() {
11
11
  console.log(`
12
- Neohive — Neohive v5.3.0
13
- MCP message broker for inter-agent communication
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 Auto-detect CLI and configure MCP
18
- npx neohive init --claude Configure for Claude Code
19
- npx neohive init --gemini Configure for Gemini CLI
20
- npx neohive init --codex Configure for Codex CLI
21
- npx neohive init --all Configure for all supported CLIs
22
- npx neohive init --ollama Setup Ollama agent bridge (local LLM)
23
- npx neohive init --template T Initialize with a team template (pair, team, review, debate, ollama)
24
- npx neohive templates List available agent templates
25
- npx neohive dashboard Launch the web dashboard (http://localhost:3000)
26
- npx neohive dashboard --lan Launch dashboard accessible on LAN (phone/tablet)
27
- npx neohive reset Clear all conversation data
28
- npx neohive msg <agent> <text> Send a message to an agent
29
- npx neohive status Show active agents and message count
30
- npx neohive uninstall Remove neohive from all CLI configs
31
- npx neohive help Show this help message
32
-
33
- v5.0 — True Autonomy Engine (61 tools):
34
- New tools: get_work, verify_and_advance, start_plan, retry_with_improvement
35
- Proactive work loop: get_work → do work → verify_and_advance → get_work
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
- // v5.0: Diagnostic health check
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 v3.5.0</span>
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 (v5.0 Autonomy Engine) ==========
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 - Neohive Dashboard v3.5.1');
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neohive",
3
- "version": "6.0.0",
3
+ "version": "6.0.2",
4
4
  "description": "The MCP collaboration layer for AI CLI tools. Turn Claude Code, Gemini CLI, and Codex CLI into a team.",
5
5
  "main": "server.js",
6
6
  "bin": {
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: '5.3.0' },
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 v5.3.0 running (66 tools)');
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.');