thymeleaf

thymeleaf is a command for coding agents from Sevii/agent-marketplace. It costs 50 tokens per session (4,956 once invoked), scanned A, original, MIT.

A reference for Thymeleaf 3.1, a Java template engine that generates web pages from HTML templates and application data.

In plain words
What is it for?
Writing, debugging, and reviewing Thymeleaf templates used with Spring MVC, including expressions, views, and template syntax.
Why use it?
It helps prevent syntax mistakes and guides you toward templates that also work as ordinary static HTML.

Command

Part of the thymeleaf-skill plugin — 1 command shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/sevii/agent-marketplace/thymeleaf
Clone the repo
git clone --depth 1 https://github.com/Sevii/agent-marketplace

Or install thymeleaf-skill, the plugin that ships this one along with the rest of its 1 command.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for thymeleaf

README.md
[![agentmods](https://agentmods.dev/badge/commands/sevii/agent-marketplace/thymeleaf.svg)](https://agentmods.dev/commands/sevii/agent-marketplace/thymeleaf)
Your own site
<a href="https://agentmods.dev/commands/sevii/agent-marketplace/thymeleaf"><img src="https://agentmods.dev/badge/commands/sevii/agent-marketplace/thymeleaf.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,956 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00050 $0.04956
Opus 5 $0.00025 $0.02478
Sonnet 5 $0.00010 $0.00991
Haiku 4.5 $0.00005 $0.00496

Measured 5d ago against content hash 27b887aeaf64, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

thymeleaf scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/thymeleaf-skill/commands/thymeleaf.md · 670 lines

How it starts

The opening of the file, as written. The whole thing — 670 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Thymeleaf 3.1 Skill

You are an expert in Thymeleaf, the modern server-side Java template engine. Use this reference when helping users write, debug, or review Thymeleaf templates. Always produce idiomatic Thymeleaf that works as a natural template (viewable as static HTML in a browser).


Core Principles

  • Thymeleaf templates are valid HTML. Static prototype content is replaced at runtime by th:* attributes.
  • Always provide realistic placeholder content inside tags so the template is useful as a static prototype.
  • Prefer th:text (HTML-escaped) over th:utext (unescaped) unless raw HTML output is explicitly needed.
  • Use the HTML5-friendly data-th-* syntax when strict HTML5 validation is required.

Template Modes

Mode Use case
HTML Web pages (HTML5, XHTML) - the default
XML Strict XML documents
TEXT Plain text (emails, docs)
JAVASCRIPT JavaScript files with model data
CSS CSS files with model data
RAW Untouched resource passthrough

Standard Expression Syntax

Variable Expressions ${...}

Access context variables via OGNL (or SpEL in Spring):

<p th:text="${user.name}">John Doe</p>
<p th:text="${user.address.city}">Springfield</p>
<p th:text="${users[0].name}">First User</p>
<p th:text="${countriesByCode['US']}">United States</p>
<p th:text="${user.getFormattedName()}">John Doe</p>

Selection Variable Expressions *{...}

Evaluate against a previously selected object (th:object):

<div th:object="${session.user}">
  <p>Name: <span th:text="*{firstName}">Sebastian</span></p>
  <p>Surname: <span th:text="*{lastName}">Pepper</span></p>
</div>

Without th:object, *{...} is equivalent to ${...}.

Message Expressions #{...}

Internationalized messages from .properties files:

Read the full file on GitHub · 670 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 670 lines · 50 tokens per session scan A 27b887aeaf64

Subscribe to this mod's changes

thymeleaf is a command published in the GitHub repository Sevii/agent-marketplace (19 stars, last pushed 6mo ago), licensed MIT. It adds 50 tokens to every session and 4,956 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.