oh-my-opencode 3.0.0-beta.2 → 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.
- package/README.ja.md +49 -38
- package/README.md +32 -27
- package/README.zh-cn.md +50 -41
- package/dist/agents/orchestrator-sisyphus.d.ts +1 -1
- package/dist/cli/index.js +10 -6
- package/dist/features/background-agent/manager.d.ts +15 -0
- package/dist/features/background-agent/types.d.ts +4 -0
- package/dist/features/context-injector/injector.d.ts +1 -1
- package/dist/hooks/background-compaction/index.d.ts +19 -0
- package/dist/hooks/background-notification/index.d.ts +6 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/keyword-detector/index.d.ts +2 -1
- package/dist/hooks/prometheus-md-only/constants.d.ts +1 -1
- package/dist/hooks/prometheus-md-only/index.d.ts +1 -1
- package/dist/index.js +780 -468
- package/dist/tools/index.d.ts +2 -0
- package/dist/tools/lsp/client.d.ts +1 -0
- package/dist/tools/skill/tools.d.ts +1 -7
- package/dist/tools/slashcommand/tools.d.ts +1 -7
- package/package.json +1 -1
package/dist/tools/index.d.ts
CHANGED
|
@@ -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 {
|
|
@@ -1,10 +1,4 @@
|
|
|
1
1
|
import { type ToolDefinition } from "@opencode-ai/plugin";
|
|
2
2
|
import type { SkillLoadOptions } from "./types";
|
|
3
3
|
export declare function createSkillTool(options?: SkillLoadOptions): ToolDefinition;
|
|
4
|
-
export declare const skill:
|
|
5
|
-
description: string;
|
|
6
|
-
args: Readonly<{
|
|
7
|
-
[k: string]: import("zod/v4/core").$ZodType<unknown, unknown, import("zod/v4/core").$ZodTypeInternals<unknown, unknown>>;
|
|
8
|
-
}>;
|
|
9
|
-
execute(args: Record<string, unknown>, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
10
|
-
};
|
|
4
|
+
export declare const skill: ToolDefinition;
|
|
@@ -2,10 +2,4 @@ import { type ToolDefinition } from "@opencode-ai/plugin";
|
|
|
2
2
|
import type { CommandInfo, SlashcommandToolOptions } from "./types";
|
|
3
3
|
export declare function discoverCommandsSync(): CommandInfo[];
|
|
4
4
|
export declare function createSlashcommandTool(options?: SlashcommandToolOptions): ToolDefinition;
|
|
5
|
-
export declare const slashcommand:
|
|
6
|
-
description: string;
|
|
7
|
-
args: Readonly<{
|
|
8
|
-
[k: string]: import("zod/v4/core").$ZodType<unknown, unknown, import("zod/v4/core").$ZodTypeInternals<unknown, unknown>>;
|
|
9
|
-
}>;
|
|
10
|
-
execute(args: Record<string, unknown>, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
11
|
-
};
|
|
5
|
+
export declare const slashcommand: ToolDefinition;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-opencode",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
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",
|