Files
oh-my-opencode/dist/agents/builtin-agents/available-skills.d.ts
T
2026-03-14 04:56:50 +00:00

5 lines
392 B
TypeScript

import type { AvailableSkill } from "../dynamic-agent-prompt-builder";
import type { BrowserAutomationProvider } from "../../config/schema";
import type { LoadedSkill } from "../../features/opencode-skill-loader/types";
export declare function buildAvailableSkills(discoveredSkills: LoadedSkill[], browserProvider?: BrowserAutomationProvider, disabledSkills?: Set<string>): AvailableSkill[];