Use for Symfony 8.1 utility components and helper tasks. Triggers: create or test a console command (bin/console, #[AsCommand], SymfonyStyle output, command arguments/options, verbosity); send email with Mailer (Email, TemplatedEmail, attachments, Twig emails); send notifications with Notifier (SMS via Texter, chat/Slack via Chatter, multi-channel Notification); translation and i18n (translator, trans(), TranslatableMessage, placeholders, pluralization); manipulate strings with the String component (u(), b(), slugger, case conversion, truncate); transliterate emoji; sanitize untrusted HTML (HtmlSanitizer); read/write sessions and flash messages; preload assets with WebLink. Reach for this skill whenever the task is "make a command", "send an email", "send an SMS or Slack message", "translate text", "slugify", "clean user HTML", or "store something in the session".
Instalación
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Use for Symfony 8.1 utility components and helper tasks. Triggers: create or test a console command (bin/console, #[AsCommand], SymfonyStyle output, command arguments/options, verbosity); send email with Mailer (Email, TemplatedEmail, attachments, Twig emails); send notifications with Notifier (SMS via Texter, chat/Slack via Chatter, multi-channel Notification); translation and i18n (translator, trans(), TranslatableMessage, placeholders, pluralization); manipulate strings with the String component (u(), b(), slugger, case conversion, truncate); transliterate emoji; sanitize untrusted HTML (HtmlSanitizer); read/write sessions and flash messages; preload assets with WebLink. Reach for this skill whenever the task is "make a command", "send an email", "send an SMS or Slack message", "translate text", "slugify", "clean user HTML", or "store something in the session".
Build Symfony 8.1 utility code (console, mailer, notifier, translation, strings, emoji, HTML sanitizer, session, web link) from real component APIs.
This file is a ROUTER. Pick ONE task, open ONE reference file, write the code, stop. Do not read multiple references.
Use this skill when
Creating, configuring, or testing a console command (bin/console, #[AsCommand]).
Translation: trans() call or TranslatableMessage instance written.
String/slug/emoji: the helper call (u(), b(), ->slug(), transliterate()) written.
HTML sanitizer: $htmlSanitizer->sanitize($input) written.
Session/flash: $session->set()/get() or $this->addFlash() written.
WebLink: preload() Twig function added.
Do NOT run bin/console, send a real email, or call external transports to "verify". Writing the correct code is the end state.
If the request spans two areas (e.g. a command that sends email), finish area one fully, then return to step 1 for area two. Never read two references at once.
Reference files
references/console-commands.md — open when creating, structuring, styling (SymfonyStyle), giving input (#[Argument], #[Option]), setting verbosity, or testing a console command.
references/mailer.md — open when sending email: Email, TemplatedEmail, attachments, embedded images, Twig email templates, async sending.
references/notifier.md — open when sending SMS (Texter/SmsMessage), chat/Slack (Chatter/ChatMessage), or a multi-channel Notification to a Recipient.
references/translation.md — open when translating: trans(), placeholders, TranslatableMessage, t() shortcut, ICU pluralization, translation files.
references/string-misc.md — open when manipulating strings (u()/b(), case, truncate, slug) or transliterating emoji.
references/web-utilities.md — open when sanitizing untrusted HTML, reading/writing the session and flash messages, or preloading assets with WebLink.