oh-my-opencode 3.0.0-beta.3 → 3.0.0-beta.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.
@@ -1,3 +1,5 @@
1
+ import { lspManager } from "./lsp";
2
+ export { lspManager };
1
3
  export { createSlashcommandTool, discoverCommandsSync } from "./slashcommand";
2
4
  export { sessionExists } from "./session-manager/storage";
3
5
  export { interactive_bash, startBackgroundCheck as startTmuxCheck } from "./interactive-bash";
@@ -15,6 +15,7 @@ declare class LSPServerManager {
15
15
  releaseClient(root: string, serverId: string): void;
16
16
  isServerInitializing(root: string, serverId: string): boolean;
17
17
  stopAll(): Promise<void>;
18
+ cleanupTempDirectoryClients(): Promise<void>;
18
19
  }
19
20
  export declare const lspManager: LSPServerManager;
20
21
  export declare class LSPClient {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-opencode",
3
- "version": "3.0.0-beta.3",
3
+ "version": "3.0.0-beta.4",
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",