/** * Kimi Code artifact writers. */ import type { InitOptions, InitResult } from './types.js'; /** * Write Kimi Code artifacts. ADDITIVE — only invoked when * `components.kimicode` is set. Never touches .claude/, .gemini/, .opencode/. * * Tier 1: .kimi-code/mcp.json (merged, never clobbered), AGENTS.md (skip-if-exists), * .kimi-code/{agents,skills}/ converted from the Claude tree. * Tier 2: .kimi-code/plugin/hooks/monomind-gate.mjs — stdin/exit-code bridge into * the existing .claude/helpers gate handlers (kimi has no project-level * hooks, so enforcement only activates via the Tier 3 plugin). * Tier 3: .kimi-code/plugin/kimi.plugin.json + commands/ — installable via * `/plugins install ./.kimi-code/plugin` for /monomind:* slash commands * and auto-wired hooks. */ export declare function writeKimiFiles(targetDir: string, options: InitOptions, result: InitResult): Promise; //# sourceMappingURL=write-kimicode.d.ts.map