(lang: string, body: string)
| 228 | } |
| 229 | |
| 230 | const codeBlock = (lang: string, body: string): string => `\`\`\`${lang}\n${body}\n\`\`\``; |
| 231 | |
| 232 | const renderTool = (tool: ToolSnapshot): string => { |
| 233 | const lines: string[] = [`### \`${tool.name}\``, "", `> ${tool.listDescription || "(empty)"}`]; |
no outgoing calls
no test coverage detected