/** * Rules file generator for non-Claude platforms. * * Generates platform-specific rules files (.cursorrules, .windsurfrules, .clinerules) * with MCP memory workflow instructions so AI assistants use memory tools proactively. * * @module @agentkits/memory/cli/rules-generator */ /** * Generate rules file content for AI coding assistants. * Instructs the AI to use MCP memory tools proactively. */ export declare function generateRulesContent(platformName: string): string; /** * Install rules file to project root. * If the file exists, appends/replaces the AgentKits section. * If the file doesn't exist, creates it. */ export declare function installRulesFile(projectDir: string, rulesFileName: string, force: boolean, asJson?: boolean): { installed: boolean; path: string; action: 'created' | 'updated' | 'skipped'; }; //# sourceMappingURL=rules-generator.d.ts.map