/** * Install the bundled Reconstruct Codex plugin into ~/.codex/plugins/reconstruct, * register ~/.agents/plugins/marketplace.json (home-relative paths), enable via * `codex plugin marketplace add` + `codex plugin add`, and wire MCP auth in * ~/.codex/config.toml under [mcp_servers.reconstruct]. */ export declare const CODEX_CONFIG_PATH: string; export declare const CODEX_LOCAL_PLUGIN_ID = "reconstruct"; export declare const CODEX_CLI_MARKETPLACE_NAME = "reconstruct-cli"; export declare const CODEX_PLUGIN_INSTALL_SPEC = "reconstruct@reconstruct-cli"; export declare function resolveBundledCodexPluginRoot(): string; export declare function getCodexLocalPluginDir(): string; /** * Copy bundled plugin assets, write plugin .mcp.json, register personal marketplace entry, * wire [mcp_servers.reconstruct] in config.toml, and install via Codex CLI. */ export declare function installCodexLocalPlugin(apiKey: string, mcpUrl?: string): Promise; export type CodexPluginDoctorStatus = "ok" | "missing" | "invalid_manifest" | "invalid_mcp" | "missing_marketplace" | "not_enabled_in_codex"; export declare function validateCodexLocalPlugin(): Promise; //# sourceMappingURL=codex-plugin-install.d.ts.map