/** * zenox - OpenCode Plugin for Intelligent Agent Orchestration * * This plugin provides: * 1. Specialized subagents: explorer, librarian, oracle, ui-planner * 2. Orchestration injection into Build/Plan agents for smart delegation * 3. Auto-loaded MCP servers: exa, grep_app, sequential-thinking * 4. Background task system for parallel agent execution * 5. Auto-update checker with startup toast notifications * 6. Optional configuration via zenox.json for model/MCP overrides */ import type { Plugin } from "@opencode-ai/plugin"; declare const ZenoxPlugin: Plugin; export default ZenoxPlugin; export type { BuiltinAgentName, AgentOverrideConfig, AgentOverrides, } from "./agents"; export type { ZenoxConfig, AgentName, } from "./config"; export type { McpName } from "./mcp"; export type { BackgroundTask, TaskStatus } from "./background";