oh-my-opencode 3.0.0-beta.6 → 3.0.0-beta.7

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,4 +1,5 @@
1
1
  export declare const AGENT_NAME_MAP: Record<string, string>;
2
+ export declare const BUILTIN_AGENT_NAMES: Set<string>;
2
3
  export declare const HOOK_NAME_MAP: Record<string, string>;
3
4
  export declare const MODEL_TO_CATEGORY_MAP: Record<string, string>;
4
5
  export declare function migrateAgentNames(agents: Record<string, unknown>): {
@@ -1,12 +1,8 @@
1
1
  import { type ToolDefinition } from "@opencode-ai/plugin/tool";
2
- export declare const lsp_hover: ToolDefinition;
3
2
  export declare const lsp_goto_definition: ToolDefinition;
4
3
  export declare const lsp_find_references: ToolDefinition;
5
- export declare const lsp_document_symbols: ToolDefinition;
6
- export declare const lsp_workspace_symbols: ToolDefinition;
4
+ export declare const lsp_symbols: ToolDefinition;
7
5
  export declare const lsp_diagnostics: ToolDefinition;
8
6
  export declare const lsp_servers: ToolDefinition;
9
7
  export declare const lsp_prepare_rename: ToolDefinition;
10
8
  export declare const lsp_rename: ToolDefinition;
11
- export declare const lsp_code_actions: ToolDefinition;
12
- export declare const lsp_code_action_resolve: ToolDefinition;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-opencode",
3
- "version": "3.0.0-beta.6",
3
+ "version": "3.0.0-beta.7",
4
4
  "description": "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -52,8 +52,8 @@
52
52
  "@code-yeongyu/comment-checker": "^0.6.1",
53
53
  "@modelcontextprotocol/sdk": "^1.25.1",
54
54
  "@openauthjs/openauth": "^0.4.3",
55
- "@opencode-ai/plugin": "^1.1.1",
56
- "@opencode-ai/sdk": "^1.1.1",
55
+ "@opencode-ai/plugin": "^1.1.19",
56
+ "@opencode-ai/sdk": "^1.1.19",
57
57
  "commander": "^14.0.2",
58
58
  "hono": "^4.10.4",
59
59
  "js-yaml": "^4.1.1",