25 lines
1.3 KiB
TypeScript
25 lines
1.3 KiB
TypeScript
export type { PluginContext } from "./context.js"
|
|
export { define } from "./plugin.js"
|
|
export type { Plugin, PluginDomain } from "./plugin.js"
|
|
export type { AgentDraft, AgentHooks } from "./agent.js"
|
|
export type { AISDKHooks } from "./aisdk.js"
|
|
export type { CatalogDraft, CatalogHooks, CatalogProviderRecord } from "./catalog.js"
|
|
export type { CommandDraft, CommandHooks } from "./command.js"
|
|
export type { EventHooks } from "./event.js"
|
|
export type { IntegrationDraft, IntegrationHooks, IntegrationMethodRegistration } from "./integration.js"
|
|
export type { ReferenceDraft, ReferenceHooks } from "./reference.js"
|
|
export type { SkillDraft, SkillHooks } from "./skill.js"
|
|
export * as Tool from "./tool.js"
|
|
export type { ToolDomain, ToolDraft, ToolExecuteBeforeEvent, ToolExecuteAfterEvent } from "./tool.js"
|
|
export type { SessionHooks } from "./runtime.js"
|
|
|
|
export { Agent } from "@opencode-ai/schema/agent"
|
|
export { Command } from "@opencode-ai/schema/command"
|
|
export { Connection } from "@opencode-ai/schema/connection"
|
|
export { Credential } from "@opencode-ai/schema/credential"
|
|
export { Integration } from "@opencode-ai/schema/integration"
|
|
export { Model } from "@opencode-ai/schema/model"
|
|
export { Provider } from "@opencode-ai/schema/provider"
|
|
export { Reference } from "@opencode-ai/schema/reference"
|
|
export { Skill } from "@opencode-ai/schema/skill"
|