MCPcopy
hub / github.com/dataelement/Clawith / TemplateLocale

Interface TemplateLocale

frontend/src/i18n/templateTranslations.ts:12–16  ·  view source on GitHub ↗

* 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

Source from the content-addressed store, hash-verified

10 */
11
12interface TemplateLocale {
13 name: string;
14 description: string;
15 bullets: string[];
16}
17
18interface TemplateLike {
19 name: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected