@hung319/opencode-hive 1.4.3 → 1.4.4

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.
@@ -0,0 +1,13 @@
1
+ import type { LocalMcpConfig } from './types';
2
+ /**
3
+ * @paretools/search MCP for structured code search
4
+ *
5
+ * Wraps ripgrep and fd with typed JSON output.
6
+ * Part of the Pare suite of MCP servers.
7
+ *
8
+ * Features:
9
+ * - 65-95% token reduction vs raw CLI output
10
+ * - Structured, schema-validated JSON
11
+ * - search, find, count tools
12
+ */
13
+ export declare const pareSearchMcp: LocalMcpConfig;
@@ -0,0 +1,18 @@
1
+ import { type ToolDefinition } from "@opencode-ai/plugin";
2
+ /**
3
+ * Check if ast-grep is available
4
+ */
5
+ export declare function isAstGrepAvailable(): Promise<boolean>;
6
+ /**
7
+ * Get ast-grep status
8
+ */
9
+ export declare function getAstGrepStatus(): Promise<{
10
+ available: boolean;
11
+ version?: string;
12
+ }>;
13
+ export declare const astGrepDumpSyntaxTreeTool: ToolDefinition;
14
+ export declare const astGrepTestMatchCodeRuleTool: ToolDefinition;
15
+ export declare const astGrepFindCodeTool: ToolDefinition;
16
+ export declare const astGrepScanCodeTool: ToolDefinition;
17
+ export declare const astGrepRewriteCodeTool: ToolDefinition;
18
+ export declare const astGrepAnalyzeImportsTool: ToolDefinition;
@@ -0,0 +1,6 @@
1
+ import { type ToolDefinition } from "@opencode-ai/plugin";
2
+ export declare const hiveDoctorTool: ToolDefinition;
3
+ /**
4
+ * Quick check tool - just shows status without details
5
+ */
6
+ export declare const hiveDoctorQuickTool: ToolDefinition;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hung319/opencode-hive",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
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",
@@ -44,7 +44,9 @@
44
44
  "@upstash/context7-mcp": "^2.1.0",
45
45
  "exa-mcp-server": "^3.1.5",
46
46
  "@sparkleideas/agent-booster": "^0.2.3",
47
- "@sparkleideas/memory": "^3.5.2"
47
+ "@sparkleideas/memory": "^3.5.2",
48
+ "@ast-grep/napi": "^0.41.1",
49
+ "@paretools/search": "^0.15.0"
48
50
  },
49
51
  "devDependencies": {
50
52
  "hive-core": "workspace:*",