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.
npx agentmods add commands/sevii/agent-marketplace/thymeleafgit clone --depth 1 https://github.com/Sevii/agent-marketplaceWrote 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.
[](https://agentmods.dev/commands/sevii/agent-marketplace/thymeleaf)<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>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.
| Model | Per session | Once 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 |
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.
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) overth: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:
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.
- 5d ago First seen · 670 lines · 50 tokens per session scan A 27b887aeaf64
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.
Other commands, from other repositories
profile
Coordinate a reproducible Java profiling and optimization lifecycle.
openrewrite-violations
Fix each violated OpenRewrite recipe in its own commit on an openrewrite-violations branch.
scaffold-spring-api
Scaffold a new Spring Boot 3.5.x WebFlux REST API project with standard structure, build config, and sample endpoint.
savant-jvm
JVM performance optimization with JVM Developer agent.
java-exercise-pattern
Новое упражнение по паттернам проектирования или принципам SOLID.
java-exercise-fix
Исправить код с объяснениями и мнемотехникой.