@hung319/opencode-hive 1.5.6 → 1.5.8

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.
@@ -1,6 +1,6 @@
1
1
  import { type ToolDefinition } from "@opencode-ai/plugin";
2
2
  /**
3
- * Check if ast-grep is available
3
+ * Check if native ast-grep is available
4
4
  */
5
5
  export declare function isAstGrepAvailable(): Promise<boolean>;
6
6
  /**
@@ -8,6 +8,7 @@ export declare function isAstGrepAvailable(): Promise<boolean>;
8
8
  */
9
9
  export declare function getAstGrepStatus(): Promise<{
10
10
  available: boolean;
11
+ mode: 'native' | 'cli' | 'unavailable';
11
12
  version?: string;
12
13
  }>;
13
14
  export declare const astGrepDumpSyntaxTreeTool: ToolDefinition;
@@ -1,6 +1,6 @@
1
1
  import { type ToolDefinition } from "@opencode-ai/plugin";
2
2
  export declare const hiveDoctorTool: ToolDefinition;
3
3
  /**
4
- * Quick check tool - just shows status without details
4
+ * Quick check - just status summary
5
5
  */
6
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.5.6",
3
+ "version": "1.5.8",
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",