oh-my-opencode 3.1.6 → 3.1.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.
- package/dist/agents/utils.d.ts +1 -1
- package/dist/cli/doctor/checks/index.d.ts +1 -0
- package/dist/cli/doctor/checks/mcp-oauth.d.ts +15 -0
- package/dist/cli/doctor/checks/mcp-oauth.test.d.ts +1 -0
- package/dist/cli/doctor/constants.d.ts +1 -0
- package/dist/cli/index.js +716 -23
- package/dist/cli/mcp-oauth/index.d.ts +6 -0
- package/dist/cli/mcp-oauth/index.test.d.ts +1 -0
- package/dist/cli/mcp-oauth/login.d.ts +6 -0
- package/dist/cli/mcp-oauth/login.test.d.ts +1 -0
- package/dist/cli/mcp-oauth/logout.d.ts +4 -0
- package/dist/cli/mcp-oauth/logout.test.d.ts +1 -0
- package/dist/cli/mcp-oauth/status.d.ts +1 -0
- package/dist/cli/mcp-oauth/status.test.d.ts +1 -0
- package/dist/cli/run/events.d.ts +2 -0
- package/dist/cli/run/types.d.ts +3 -1
- package/dist/features/background-agent/manager.d.ts +2 -0
- package/dist/features/claude-code-mcp-loader/types.d.ts +4 -0
- package/dist/features/hook-message-injector/injector.d.ts +1 -0
- package/dist/features/hook-message-injector/types.d.ts +2 -0
- package/dist/features/mcp-oauth/callback-server.d.ts +11 -0
- package/dist/features/mcp-oauth/callback-server.test.d.ts +1 -0
- package/dist/features/mcp-oauth/dcr.d.ts +34 -0
- package/dist/features/mcp-oauth/dcr.test.d.ts +1 -0
- package/dist/features/mcp-oauth/discovery.d.ts +8 -0
- package/dist/features/mcp-oauth/discovery.test.d.ts +1 -0
- package/dist/features/mcp-oauth/index.d.ts +1 -0
- package/dist/features/mcp-oauth/provider.d.ts +41 -0
- package/dist/features/mcp-oauth/provider.test.d.ts +1 -0
- package/dist/features/mcp-oauth/resource-indicator.d.ts +2 -0
- package/dist/features/mcp-oauth/resource-indicator.test.d.ts +1 -0
- package/dist/features/mcp-oauth/schema.d.ts +6 -0
- package/dist/features/mcp-oauth/schema.test.d.ts +1 -0
- package/dist/features/mcp-oauth/step-up.d.ts +8 -0
- package/dist/features/mcp-oauth/step-up.test.d.ts +1 -0
- package/dist/features/mcp-oauth/storage.d.ts +17 -0
- package/dist/features/mcp-oauth/storage.test.d.ts +1 -0
- package/dist/features/skill-mcp-manager/manager.d.ts +8 -0
- package/dist/features/tmux-subagent/manager.d.ts +6 -1
- package/dist/hooks/interactive-bash-session/index.d.ts +1 -1
- package/dist/index.js +4170 -265
- package/dist/shared/model-resolver.d.ts +1 -0
- package/dist/tools/lsp/client.d.ts +4 -11
- package/package.json +9 -8
|
@@ -22,24 +22,17 @@ export declare class LSPClient {
|
|
|
22
22
|
private root;
|
|
23
23
|
private server;
|
|
24
24
|
private proc;
|
|
25
|
-
private
|
|
26
|
-
private pending;
|
|
27
|
-
private requestIdCounter;
|
|
25
|
+
private connection;
|
|
28
26
|
private openedFiles;
|
|
29
27
|
private stderrBuffer;
|
|
30
28
|
private processExited;
|
|
31
29
|
private diagnosticsStore;
|
|
30
|
+
private readonly REQUEST_TIMEOUT;
|
|
32
31
|
constructor(root: string, server: ResolvedServer);
|
|
33
32
|
start(): Promise<void>;
|
|
34
|
-
private startReading;
|
|
35
33
|
private startStderrReading;
|
|
36
|
-
private
|
|
37
|
-
private
|
|
38
|
-
private processBuffer;
|
|
39
|
-
private send;
|
|
40
|
-
private notify;
|
|
41
|
-
private respond;
|
|
42
|
-
private handleServerRequest;
|
|
34
|
+
private sendRequest;
|
|
35
|
+
private sendNotification;
|
|
43
36
|
initialize(): Promise<void>;
|
|
44
37
|
openFile(filePath: string): Promise<void>;
|
|
45
38
|
definition(filePath: string, line: number, character: number): Promise<unknown>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-opencode",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.8",
|
|
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",
|
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
"jsonc-parser": "^3.3.1",
|
|
65
65
|
"picocolors": "^1.1.1",
|
|
66
66
|
"picomatch": "^4.0.2",
|
|
67
|
+
"vscode-jsonrpc": "^8.2.0",
|
|
67
68
|
"zod": "^4.1.8"
|
|
68
69
|
},
|
|
69
70
|
"devDependencies": {
|
|
@@ -73,13 +74,13 @@
|
|
|
73
74
|
"typescript": "^5.7.3"
|
|
74
75
|
},
|
|
75
76
|
"optionalDependencies": {
|
|
76
|
-
"oh-my-opencode-darwin-arm64": "3.1.
|
|
77
|
-
"oh-my-opencode-darwin-x64": "3.1.
|
|
78
|
-
"oh-my-opencode-linux-arm64": "3.1.
|
|
79
|
-
"oh-my-opencode-linux-arm64-musl": "3.1.
|
|
80
|
-
"oh-my-opencode-linux-x64": "3.1.
|
|
81
|
-
"oh-my-opencode-linux-x64-musl": "3.1.
|
|
82
|
-
"oh-my-opencode-windows-x64": "3.1.
|
|
77
|
+
"oh-my-opencode-darwin-arm64": "3.1.8",
|
|
78
|
+
"oh-my-opencode-darwin-x64": "3.1.8",
|
|
79
|
+
"oh-my-opencode-linux-arm64": "3.1.8",
|
|
80
|
+
"oh-my-opencode-linux-arm64-musl": "3.1.8",
|
|
81
|
+
"oh-my-opencode-linux-x64": "3.1.8",
|
|
82
|
+
"oh-my-opencode-linux-x64-musl": "3.1.8",
|
|
83
|
+
"oh-my-opencode-windows-x64": "3.1.8"
|
|
83
84
|
},
|
|
84
85
|
"trustedDependencies": [
|
|
85
86
|
"@ast-grep/cli",
|