@hung319/opencode-hive 1.6.11 → 1.7.1

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/bin/doctor.ts CHANGED
@@ -336,8 +336,6 @@ function runDoctor(autoFix = false): DoctorOutput {
336
336
  const cliToolsList = [
337
337
  { name: 'dora', command: '@butttons/dora', desc: 'SCIP-based code navigation' },
338
338
  { name: 'auto-cr', command: 'auto-cr-cmd', desc: 'SWC-based code review' },
339
- { name: 'scip-typescript', command: '@sourcegraph/scip-typescript', desc: 'TypeScript indexer' },
340
- { name: 'veil', command: '@ushiradineth/veil', desc: 'Code discovery' },
341
339
  { name: 'btca', command: 'btca', desc: 'BTC/A blockchain agent' },
342
340
  ];
343
341
 
package/dist/index.js CHANGED
@@ -17649,7 +17649,7 @@ var hiveDoctorTool = tool({
17649
17649
 
17650
17650
  **Checks:**
17651
17651
  1. Agent Tools (optional): agent-booster, memory
17652
- 2. CLI Tools (optional): dora, auto-cr, scip-typescript, veil, btca
17652
+ 2. CLI Tools (optional): dora, auto-cr, btca
17653
17653
  3. C++20 config: For @ast-grep/napi native modules
17654
17654
 
17655
17655
  **Status:**
@@ -17663,7 +17663,7 @@ var hiveDoctorTool = tool({
17663
17663
  const cxxflags = checkCxxFlags();
17664
17664
  const result = {
17665
17665
  status: "ready",
17666
- version: "1.6.6",
17666
+ version: "1.7.1",
17667
17667
  checks: {
17668
17668
  agentTools: { total: 0, installed: 0, items: [] },
17669
17669
  cliTools: { total: 0, available: 0, items: [] }
@@ -17683,8 +17683,6 @@ var hiveDoctorTool = tool({
17683
17683
  const cliTools = [
17684
17684
  checkCliTool("dora", "@butttons/dora", "SCIP-based code navigation"),
17685
17685
  checkCliTool("auto-cr", "auto-cr-cmd", "SWC-based code review"),
17686
- checkCliTool("scip-typescript", "@sourcegraph/scip-typescript", "TypeScript indexer"),
17687
- checkCliTool("veil", "@ushiradineth/veil", "Code discovery"),
17688
17686
  checkCliTool("btca", "btca", "BTC/A blockchain agent")
17689
17687
  ];
17690
17688
  result.checks.cliTools.items = cliTools;
@@ -19574,19 +19572,12 @@ var pareSearchMcp = {
19574
19572
  command: ["npx", "-y", "@paretools/search"]
19575
19573
  };
19576
19574
 
19577
- // src/mcp/veil.ts
19578
- var veilMcp = {
19579
- type: "local",
19580
- command: ["npx", "-y", "@ushiradineth/veil@latest", "mcp", "server"]
19581
- };
19582
-
19583
19575
  // src/mcp/index.ts
19584
19576
  var allBuiltinMcps = {
19585
19577
  websearch: websearchMcp,
19586
19578
  context7: context7Mcp,
19587
19579
  grep_app: grepAppMcp,
19588
- pare_search: pareSearchMcp,
19589
- veil: veilMcp
19580
+ pare_search: pareSearchMcp
19590
19581
  };
19591
19582
  var createBuiltinMcps = (disabledMcps = []) => {
19592
19583
  const disabled = new Set(disabledMcps);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hung319/opencode-hive",
3
- "version": "1.6.11",
3
+ "version": "1.7.1",
4
4
  "type": "module",
5
5
  "description": "OpenCode plugin for Agent Hive - from vibe coding to hive coding",
6
6
  "license": "MIT WITH Commons-Clause",
@@ -49,7 +49,6 @@
49
49
  "@upstash/context7-mcp": "^2.1.0",
50
50
  "exa-mcp-server": "^3.1.5",
51
51
  "@paretools/search": "^0.15.0",
52
- "@ushiradineth/veil": "^0.4.1",
53
52
  "@butttons/dora": "^0.1.0",
54
53
  "auto-cr-cmd": "^2.0.112"
55
54
  },
@@ -1,12 +0,0 @@
1
- import type { LocalMcpConfig } from './types';
2
- /**
3
- * @ushiradineth/veil MCP for code discovery
4
- *
5
- * Veil helps coding agents find the right code fast.
6
- * - discover: Get files, symbols, and code chunks in one step
7
- * - lookup: Get the most relevant context for the task
8
- * - files, symbols, search: Focused follow-up
9
- *
10
- * https://github.com/ushiradineth/veil
11
- */
12
- export declare const veilMcp: LocalMcpConfig;