sentdm/sent-plugin

template-builder-ui

Designs and audits tenant-facing Sent template builders, previews, validation, lifecycle UX, and API payload mapping. Use for template editor forms, variables, channel overrides, WhatsApp review, RCS suggestion chips, authentication templates, and safe submission flows.

All-time #5101 Trending #2144 First seen Aug 8, 2026
8-week activity · all time api

Installation

$ npx skills add sentdm/sent-plugin --skill template-builder-ui

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from sentdm/sent-plugin · top by installs.

npx skills add sentdm/sent-plugin

Browse all from sentdm/sent-plugin

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 51
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 5,018 B
  • docs SUMMARY.md 297 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2,600 installs

SKILL.md

Sent Template Builder UI

Design the interface around Sent's v3 definition contract. The UI may import Meta material, but its canonical saved and submitted model must never be Meta's components[] payload.

Product model

Use one draft object with:

  • optional category and language;
  • required definition.body.multiChannel;
  • optional complete body overrides for sms, whatsapp, and rcs;
  • optional definition.header, footer, buttons, definitionVersion, and authenticationConfig;
  • submission controls for creationsource, submitfor_review, and sandbox.

Do not expose top-level create fields named name, channels, body, header, or buttons. If the product needs an internal display label, keep it outside the Sent create payload.

Recommended editor sequence

  1. Capture intent and category.
  2. Write the multiChannel body.
  3. Insert variables as structured entities.
  4. Add optional per-channel overrides.
  5. Add header, footer, and buttons where supported.
  6. Review live previews and accessibility.
  7. Validate locally and with sandbox: true.
  8. Save a draft, then explicitly submit for provider review.

Category should not block the first keystroke, but it must be visible before submission because it affects authentication rules and WhatsApp policy review.

Variable UX

Inserting a variable creates both:

  • a placeholder such as {{0:variable}}; and
  • a matching entity with id, name, type, and props.sample.

Renumber atomically when variables move. Never let users edit placeholder syntax independently of the entity table. Show a clear error for naked {{1}} or IDs without definitions.

Validation matrix

Apply the exact rules in [references/template-validation-matrix.md](references/template-validation-matrix.md), including:

  • a 1,024-character maximum for every body;
  • 60 characters for header and footer;
  • no footer variables;
  • 10 buttons total;
  • button types QUICKREPLY, URL, VOICECALL, PHONENUMBER, and COPYCODE with their per-type limits;
  • no invented quick-reply-versus-CTA exclusivity;
  • authenticationConfig and authentication restrictions;
  • complete, independently valid channel overrides.

Run the bundled waba-template-author linter against serialized JSON. Server validation remains authoritative.

Channel previews

SMS

Preview plain text and estimated GSM/UCS-2 segments. Make clear that segment estimates affect billing and are not template body limits.

WhatsApp

Preview header, body, footer, and buttons. Show sample values, category, language, and provider-review impact.

RCS

Current Sent RCS guidance supports text plus up to four suggestion chips. Rich cards, carousels, and media attachments are roadmap capabilities, not current Sent builder controls. Do not generate capability declarations for unavailable features.

Channel routing belongs to the send flow, not the template editor. If routing is shown in a simulator:

  • omitted channel or ["sent"] means automatic routing and fallback;
  • ["rcs"] pins RCS with no cross-channel fallback;
  • multiple explicit values mean broadcast and separate billable messages.

Never describe an explicit RCS-plus-SMS array as ordered fallback.

Save and review behavior

Use sandbox: true for validation. Save with submitforreview: false. Before switching it to true, show:

  • category and language;
  • rendered previews with sample values;
  • channel overrides;
  • button actions;
  • any warnings;
  • the fact that provider review is an external state change.

Do not autosubmit on save.

Lifecycle UX

Resource status values currently include DRAFT, PENDING, APPROVED, REJECTED, and PAUSED. Keep an unknown-state renderer.

WhatsApp template webhook events use field: "templates", no subtype, and no event; the status is payload.status. Provider values can include CATEGORYUPDATED, DISABLED, and other future strings. See [references/template-status-handling.md](references/template-status-handling.md).

Accessibility and failure recovery

  • Associate every error with a field and a summary.
  • Do not rely on preview color alone.
  • Preserve user edits after validation failures.
  • Keep raw JSON inspection available for advanced users.
  • Label imported Meta JSON as “Meta Cloud API source” until converted.
  • Provide a diff for server normalization and provider-driven category/status changes.

Use [references/template-ui-wireflows.md](references/template-ui-wireflows.md) for state transitions. Use waba-template-author for copy and policy judgment, sent-templates for existing-resource operations, and rcs-agent-onboarding for RCS launch readiness.