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 skills/edutrul/drupal-ai/drupal-routesnpx skills add edutrul/drupal-ai --skill drupal-routesgit clone --depth 1 https://github.com/edutrul/drupal-aiWrote 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/skills/edutrul/drupal-ai/drupal-routes)<a href="https://agentmods.dev/skills/edutrul/drupal-ai/drupal-routes"><img src="https://agentmods.dev/badge/skills/edutrul/drupal-ai/drupal-routes.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.1 | $0.00037 | $0.00628 |
| Opus 5 | $0.00018 | $0.00314 |
| Sonnet 5 | $0.00007 | $0.00126 |
| Haiku 4.5 | $0.00004 | $0.00063 |
Grade A, and why
drupal-routes 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 6d 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 — 107 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Drupal Routes
routing.yml
# my_module.routing.yml
my_module.page:
path: '/my-page'
defaults:
_controller: '\Drupal\my_module\Controller\MyController::content'
_title: 'My Page'
requirements:
_permission: 'access content'
# Route with parameter
my_module.entity_page:
path: '/items/{item_id}'
defaults:
_controller: '\Drupal\my_module\Controller\ItemController::view'
_title_callback: '\Drupal\my_module\Controller\ItemController::title'
requirements:
_permission: 'access content'
item_id: '\d+'
# Admin route
my_module.admin:
path: '/admin/config/my-module'
defaults:
_form: '\Drupal\my_module\Form\SettingsForm'
_title: 'My Module Settings'
requirements:
_permission: 'administer my module'
# Route with entity upcasting
my_module.node_page:
path: '/custom/{node}'
defaults:
_controller: '\Drupal\my_module\Controller\NodeController::view'
_title: 'Node Custom Page'
requirements:
_entity_access: 'node.view'
options:
parameters:
node:
type: entity:node
Controller
// src/Controller/MyController.php
namespace Drupal\my_module\Controller;
use Drupal\Core\Controller\ControllerBase;
final class MyController extends ControllerBase {
public function content(): array {
return [
'#markup' => $this->t('Hello world'),
'#cache' => [
'contexts' => ['user.permissions'],
],
];
}
public function view(int $item_id): array {
// $item_id is from route parameter
return ['#markup' => $this->t('Item @id', ['@id' => $item_id])];
}
public function title(int $item_id): string {
return $this->t('Item @id', ['@id' => $item_id]);
}
}
Generating URLs and Links
use Drupal\Core\Url;
use Drupal\Core\Link;
// URL from route
$url = Url::fromRoute('my_module.page');
$url = Url::fromRoute('my_module.entity_page', ['item_id' => 42]);
$url = Url::fromRoute('entity.node.canonical', ['node' => $nid]);
// Absolute URL
$url = Url::fromRoute('my_module.page', [], ['absolute' => TRUE]);
// URL from path
$url = Url::fromUserInput('/my-page');
// Link
$link = Link::fromTextAndUrl($this->t('My Link'), $url);
$render = $link->toRenderable();
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 6d ago First seen · 107 lines · 37 tokens per session scan A 7c6ed80367b7
drupal-routes is a skill published in the GitHub repository edutrul/drupal-ai (71 stars, last pushed 3mo ago), licensed MIT. It adds 37 tokens to every session and 628 once invoked, about $0.0002 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 skills, from other repositories
open-source
Documentation reference for writing Python code using the browser-use open-source library. Use this skill whenever the user needs help with Agent, Browser, or Tools configuration, is writing code that imports from browseruse, asks about @sandbox deployment, supported LLM models, Actor API, custom tools, lifecycle…
omh-backend
This is a Hermes-native backend workflow skill.
design-mcp-server
Design the tool surface, resources, and service layer for a new MCP server. Use when starting a new server, planning a major feature expansion, or when the user describes a domain/API they want to expose via MCP. Produces a design doc at docs/design.md that drives implementation.
pinme-llm
Use this skill when a PinMe project (Worker TypeScript) needs to call OpenRouter-backed LLM APIs, including models, chat/completions, streaming, or OpenRouter web search. Guides AI to generate correct Worker TS code.
api-telemetry
Catalog of OpenTelemetry instrumentation built into framework @cyanheads/mcp-ts-core — spans, metrics, completion logs, env config, runtime caveats, custom instrumentation patterns, and cardinality rules. Use when enabling OTel export, adding custom spans or metrics in services, debugging missing telemetry, looking up…
unicli-explorer
Create new Uni-CLI adapters by exploring websites and APIs. Use when adding support for a new site, desktop app, or service that unicli doesn't cover yet.