/** * GEMINI.md Generator * Generates Antigravity (agy) configuration and rules for Monomind integration. * * Outputs: * - GEMINI.md — agent instructions read by agy * - .gemini/rules/monomind.md — rules file for Monomind workflows * - .gemini/helpers/statusline.sh — shell script for the agy status bar * - .gemini/settings.json — wires the status bar command into agy */ import type { InitOptions } from './types.js'; /** Generate GEMINI.md — the Antigravity equivalent of CLAUDE.md */ export declare function generateGeminiMd(_options: InitOptions): string; /** Generate .gemini/rules/monomind.md */ export declare function generateGeminiRulesMd(_options: InitOptions): string; /** Generate the .gemini/helpers/statusline.sh wrapper script */ export declare function generateStatuslineSh(): string; /** Generate .gemini/settings.json — wires the statusline into agy. * NOTE: currently unused — writeGeminiFiles builds the settings object * inline (it merges into existing settings instead of writing a fresh * file). Kept exported for consumers that want the standalone JSON. */ export declare function generateAgySettingsJson(_options: InitOptions): string; //# sourceMappingURL=geminimd-generator.d.ts.map