What problem does it solve?
Editing Authgear email templates incorrectly—such as modifying generated files directly or mixing source edits with generated artifacts in one commit—breaks the translation pipeline and produces inconsistent email output. This Skill enforces the correct file targets, generation commands, and commit order.
Core Features & Use Cases
- Source-only editing rules: Restricts changes to
*.txt.gotemplate and *.mjml.gotemplate files plus English translation JSON, never touching generated .txt, .mjml, or non-English locale files directly.
- Guided generation workflow: Runs the MJML generator, deletes stale non-English translation keys, regenerates translations via Claude, and builds final HTML emails with make targets.
- Strict commit boundaries: Separates source edits, regenerated translations, and HTML artifacts into three distinct commits.
- Use Case: When changing the wording of a password-reset email subject line, follow this workflow to edit the English source template, regenerate MJML and translations, and produce clean, reviewable commits.
Quick Start
Update the welcome email body text in Authgear following the email template workflow and commit the changes correctly.