/** * Documentation templates for AGENTS.md generation. */ export declare const AGENTS_MD_HEADER = "# {{serverName}}\n\n> Generated by [Bellwether](https://github.com/dotsetlabs/bellwether) on {{date}}\n\n"; export declare const OVERVIEW_SECTION = "## Overview\n\n{{summary}}\n\n**Server Version:** {{version}}\n**Protocol Version:** {{protocolVersion}}\n\n"; export declare const CAPABILITIES_SECTION = "## Capabilities\n\n{{#each capabilities}}\n- **{{name}}**: {{count}} available\n{{/each}}\n\n"; export declare const TOOL_SECTION_HEADER = "## Tools\n\n"; export declare const TOOL_ENTRY = "### {{name}}\n\n{{description}}\n\n**Input Schema:**\n```json\n{{inputSchema}}\n```\n\n{{#if behavioralNotes}}\n**Observed Behavior:**\n{{#each behavioralNotes}}\n- {{this}}\n{{/each}}\n{{/if}}\n\n{{#if limitations}}\n**Limitations:**\n{{#each limitations}}\n- {{this}}\n{{/each}}\n{{/if}}\n\n{{#if securityNotes}}\n**Security Considerations:**\n{{#each securityNotes}}\n- {{this}}\n{{/each}}\n{{/if}}\n\n"; export declare const LIMITATIONS_SECTION = "## Known Limitations\n\n{{#each limitations}}\n- {{this}}\n{{/each}}\n\n"; export declare const RECOMMENDATIONS_SECTION = "## Recommendations\n\n{{#each recommendations}}\n- {{this}}\n{{/each}}\n\n"; export declare const INTERVIEW_METADATA = "---\n\n*Interview completed in {{duration}}ms with {{toolCalls}} tool calls.*\n"; //# sourceMappingURL=templates.d.ts.map