* Translations for built-in agent templates. * * Backend stores templates with English source-of-truth (`name`, * `description`, `capability_bullets`). The Talent Market UI looks up the * Chinese rendering here and shows it when `i18n.language` starts with `zh`. * * Keys MUST match `AgentTempl
| 10 | */ |
| 11 | |
| 12 | interface TemplateLocale { |
| 13 | name: string; |
| 14 | description: string; |
| 15 | bullets: string[]; |
| 16 | } |
| 17 | |
| 18 | interface TemplateLike { |
| 19 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected