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
+3
View File
@@ -0,0 +1,3 @@
export declare const SKILL_MCP_TOOL_NAME = "skill_mcp";
export declare const SKILL_MCP_DESCRIPTION = "Invoke MCP server operations from skill-embedded MCPs. Requires mcp_name plus exactly one of: tool_name, resource_name, or prompt_name.";
export declare const BUILTIN_MCP_TOOL_HINTS: Record<string, string[]>;
+3
View File
@@ -0,0 +1,3 @@
export * from "./constants";
export * from "./types";
export { createSkillMcpTool } from "./tools";
+11
View File
@@ -0,0 +1,11 @@
import { type ToolDefinition } from "@opencode-ai/plugin";
import type { SkillMcpManager } from "../../features/skill-mcp-manager";
import type { LoadedSkill } from "../../features/opencode-skill-loader/types";
interface SkillMcpToolOptions {
manager: SkillMcpManager;
getLoadedSkills: () => LoadedSkill[];
getSessionID: () => string;
}
export declare function applyGrepFilter(output: string, pattern: string | undefined): string;
export declare function createSkillMcpTool(options: SkillMcpToolOptions): ToolDefinition;
export {};
+8
View File
@@ -0,0 +1,8 @@
export interface SkillMcpArgs {
mcp_name: string;
tool_name?: string;
resource_name?: string;
prompt_name?: string;
arguments?: string | Record<string, unknown>;
grep?: string;
}