chore: include pre-built dist for github install

This commit is contained in:
Robin Mordasiewicz
2026-03-14 04:56:50 +00:00
parent a7f0a4cf46
commit bce8ff3a75
1011 changed files with 150081 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import type { Plugin, ToolDefinition } from "@opencode-ai/plugin";
export type PluginContext = Parameters<Plugin>[0];
export type PluginInstance = Awaited<ReturnType<Plugin>>;
type ChatHeadersHook = PluginInstance extends {
"chat.headers"?: infer T;
} ? T : (input: unknown, output: unknown) => Promise<void>;
export type PluginInterface = Omit<PluginInstance, "experimental.session.compacting" | "chat.headers"> & {
"chat.headers"?: ChatHeadersHook;
};
export type ToolsRecord = Record<string, ToolDefinition>;
export type TmuxConfig = {
enabled: boolean;
layout: "main-horizontal" | "main-vertical" | "tiled" | "even-horizontal" | "even-vertical";
main_pane_size: number;
main_pane_min_width: number;
agent_pane_min_width: number;
};
export {};