agentsclimarketplace

Handlebars

Skill ecelayes/roots-skills/handlebars

Best practices for writing clean, logic-less Handlebars (hbs) templates.From its SKILL.md

Install
npx -y skills add ecelayes/roots-skills --skill handlebars

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.8 KB, 410 tokens by cl100k_base, as published. Nobody here has run it

Handlebars Templating Standards

The "Logic-less" Philosophy

  1. Data Preparation: Templates should strictly DISPLAY data. All filtering, sorting, or complex math MUST happen in the application code (Controller/Service) before the data reaches the template.
  2. Avoid Spaghettis: If you need more than two nested {{#if}} or {{#each}} blocks, consider refactoring the data structure or creating a custom helper.

Syntax & Helpers

  1. Escaping:
    • Default {{ value }} is safe and escapes HTML characters.
    • Use {{{ value }}} (triple-stash) ONLY for trusted HTML strings (e.g., pre-sanitized content).
  2. Custom Helpers:
    • Do not write complex inline logic. Instead of {{#if (eq (mod index 2) 0)}}, create a helper {{#if (isEven index)}} or, better yet, pre-calculate isEven in the data model.
    • Register helpers for formatting dates, currencies, and translation.

Component Architecture (Partials)

  1. Atomic Design: Break complex UIs into small files in the partials/ directory.
    • Naming convention: _card.hbs, _navbar.hbs.
  2. Context Passing:
    • Explicit Context: {{> myPartial specificData }} is preferred over implicit context inheritance.
    • Block Partials: Use {{#> layout}} ... {{/layout}} for wrapping content (like slots).

Troubleshooting

  • Missing Properties: Handlebars fails silently on undefined properties. Ensure your data object structure strictly matches the template expectations.
  • Prototypes: If using Mongoose/ORMs, convert documents to Plain Old JavaScript Objects (POJOs) (e.g., .lean() or .toJSON()) before passing to Handlebars to avoid prototype access issues.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,422. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.