twig-audit

twig-audit is a skill for Claude Code from trebormc/drupal-ai-agents. It costs 54 tokens per session (1,359 once invoked), scanned A, original, Apache-2.0.

A review tool for Twig, the template language commonly used to build Drupal websites.

In plain words
What is it for?
Use it when reviewing, refactoring, or modernising Drupal themes and modules, especially before changing legacy Twig templates.
Why use it?
It finds presentation templates that contain application logic, unsafe output, inefficient data access, or component and attribute mistakes.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it when reviewing, refactoring, or modernising Drupal themes and modules, especially before changing legacy Twig templates.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/trebormc/drupal-ai-agents/twig-audit
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.

Any agent
npx skills add trebormc/drupal-ai-agents --skill twig-audit
Clone the repo
git clone --depth 1 https://github.com/trebormc/drupal-ai-agents

Made for: Claude Code.

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 twig-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/trebormc/drupal-ai-agents/twig-audit.svg)](https://agentmods.dev/skills/trebormc/drupal-ai-agents/twig-audit)
Your own site
<a href="https://agentmods.dev/skills/trebormc/drupal-ai-agents/twig-audit"><img src="https://agentmods.dev/badge/skills/trebormc/drupal-ai-agents/twig-audit.svg" alt="Measured on agentmods" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,359 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00054 $0.01359
Opus 5 $0.00027 $0.00679
Sonnet 5 $0.00011 $0.00272
Haiku 4.5 $0.00005 $0.00136

Measured 8d ago against content hash e18ea2e04058, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

twig-audit 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 8d 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.

.claude/skills/twig-audit/SKILL.md · 188 lines

How it starts

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

Twig Audit

Principle: Twig is for presentation ONLY. Preprocess handles logic.

Audit Workflow

  1. Run the detection greps below on the theme/module templates.
  2. Read EVERY flagged template in full (grep hits need context to confirm).
  3. Classify each confirmed hit against the anti-pattern list (severity: drilling/raw = CRITICAL, logic/isolation = HIGH, attributes = MEDIUM).
  4. Produce the report using the Audit Report Format at the end.

Detection Commands

Replace TPL with the templates directory, e.g. $DDEV_DOCROOT/themes/custom/*/templates/:

# Anti-pattern 1: render array drilling — matches content.field_x[0]['#markup'] and ['#items']
grep -rn "\[.['\"]#" TPL ; grep -rn "\['#" TPL

# Anti-pattern 2: business logic — comparisons/calculations on .value inside if/set
grep -rnE "\{% *(if|set) .*\.value" TPL

# Anti-pattern 3: raw filter usage — every hit must be justified
grep -rn "|raw" TPL

# Anti-pattern 4: non-isolated includes — check each hit for "with_context = false" or "only"
grep -rn "include(" TPL ; grep -rn "{% embed" TPL

# Anti-pattern 6: direct entity access bypassing the render system
grep -rn "\.entity\." TPL

# Anti-pattern 7: attributes built as strings
grep -rnE "class=\"[^\"]*\{\{" TPL

A grep hit is a CANDIDATE, not a confirmed issue — always read the template before reporting.

Anti-Patterns to Detect

1. Render Array Drilling (CRITICAL — Breaks Cache)

{# BAD — loses cache metadata, security risk #}
{{ content.field_image[0]['#markup'] }}
{{ content.field_body['#items'][0]['value'] }}

{# GOOD #}
{{ content.field_image }}
{{ content.body }}

2. Business Logic in Templates

{# BAD #}
{% if user.field_role.value == 'premium' and user.field_expiration.value|date('U') > 'now'|date('U') %}
  {% set discount = product.price.value * 0.2 %}

{# GOOD — variable from preprocess #}
{% if has_premium_discount %}
  {{ formatted_discounted_price }}

3. Unsafe |raw Usage

{# BAD — XSS vulnerability #}
{{ node.field_user_content.value|raw }}

{# GOOD — use processed field #}
{{ content.field_user_content }}

Read the full file on GitHub · 188 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. 8d ago First seen · 188 lines · 54 tokens per session scan A e18ea2e04058

Subscribe to this mod's changes

twig-audit is a skill published in the GitHub repository trebormc/drupal-ai-agents (10 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 54 tokens to every session and 1,359 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-31.