/** * Project Guidelines Tools * * Intelligent auto-update of AGENTS.md and CLAUDE.md with important decisions, * patterns, and conventions. Reads existing content first, deduplicates, * adds date stamps, and only writes genuinely new information. */ import { type ToolDefinition } from "@opencode-ai/plugin"; export type ProjectGuidelinesTools = { [key: string]: ToolDefinition; }; export declare function createProjectGuidelinesTools(projectDir: string): ProjectGuidelinesTools;