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 skills add gerodp/hugo-landing-skill --skill hugo-landinggit clone --depth 1 https://github.com/gerodp/hugo-landing-skillWrote 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/gerodp/hugo-landing-skill/hugo-landing)<a href="https://agentmods.dev/skills/gerodp/hugo-landing-skill/hugo-landing"><img src="https://agentmods.dev/badge/skills/gerodp/hugo-landing-skill/hugo-landing/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/gerodp/hugo-landing-skill/hugo-landing"><img src="https://agentmods.dev/badge/skills/gerodp/hugo-landing-skill/hugo-landing.svg" alt="Reviewed on agentmods" width="80" 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.00089 | $0.02652 |
| Opus 5 | $0.00044 | $0.01326 |
| Sonnet 5 | $0.00018 | $0.00530 |
| Haiku 4.5 | $0.00009 | $0.00265 |
Grade A, and why
hugo-landing scanned grade A with 1 finding 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 12d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
(same as CI), `hugo --gc --minify`, and a dev-server curl against the How it starts
The opening of the file, as written. The whole thing — 209 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Hugo Landing Page + Blog Scaffolder
Creates a complete, buildable Hugo site from the embedded template/. The
result is a single-page landing site (hero, pain points, method, case studies,
about, blog preview, CTA — every section optional) plus a blog with pagination,
tags, RSS, and rich structured data.
Division of labor: the shell scripts in scripts/ handle everything
mechanical (copying, token substitution, deploy config, structure). You handle
everything requiring judgment: the interview, copywriting, translations,
branding, and fixing build warnings. Never re-implement what a script does.
Prerequisites
hugo (>= 0.146), node/npm, and git on PATH. If Hugo is missing, tell
the user to install it first (brew install hugo / see gohugo.io).
Procedure
1. Interview the user
Ask (AskUserQuestion works well; skip anything already stated):
- Site name + base URL (e.g. "Acme Consulting",
https://acme.example). If they don't have a domain yet and chose GitHub Pages, usehttps://<user>.github.io/<repo>/. - Site type: personal brand / consultant (adds a
Personentity to JSON-LD) vs product/company (Organization only). - Languages: default language + any extra languages. Any language is
supported — see
reference/multilingual.md. - Brand color + font: any Tailwind palette name or a custom color; Google Font family (default Inter).
- Homepage sections: which of pain-points, features, method/steps, stats band, case studies, testimonials, pricing, about, team, blog preview, open-source, FAQ, newsletter, final CTA to include. Hero is always on. Suggest a sensible subset for the site type (consultant: pain-points, method, case studies, about, FAQ; product: features, stats, testimonials, pricing, FAQ) rather than enabling everything.
- Blog: include one? (default yes). If no, scaffold with
--no-blog— the site then ships without any blog files. - Deploy target: github-pages (default) / cloudflare / netlify / amplify.
- Analytics: umami / plausible / ga4 / none, plus website ID and (self-hosted) script host.
- Contact CTA: scheduling link (Cal.com/Calendly) or email.
- Copy: does the user want to provide the copy themselves, or should you draft it? If they provide it, ask them to paste it (or point to a source: existing site, bio, pitch deck) — it should cover the sections selected in question 5.
What ships with it
60 files 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.
- reference/content-model.md 6.6 KB
- reference/dark-theme.md 3.9 KB
- reference/deploy.md 2.5 KB
- reference/multilingual.md 4.4 KB
- scripts/add-language.sh 3.0 KB runs code
- scripts/resolve-hugo-version.sh 1.0 KB runs code
- scripts/scaffold.sh 4.8 KB runs code
- scripts/verify.sh 2.8 KB runs code
- template/.githooks/pre-commit 1.1 KB
- template/.github/workflows/ci.yml 1.1 KB
- template/.gitignore 236 B
- template/.htmlhintrc 666 B
- template/.stylelintrc.json 968 B
- template/archetypes/blog.md 293 B
- template/archetypes/default.md 104 B
- template/config/_default/hugo.toml 3.6 KB
- template/content/en/_index.md 7.0 KB
- template/content/en/blog/_index.md 156 B
- template/content/en/blog/hello-world.md 993 B
- template/content/en/legal/privacy.md 404 B
- template/deploy/amplify/amplify.yml 1.1 KB
- template/deploy/cloudflare/.github/workflows/deploy.yml 1.2 KB
- template/deploy/cloudflare/DEPLOY.md 1.2 KB
- template/deploy/github-pages/.github/workflows/deploy.yml 1.4 KB
- template/deploy/netlify/netlify.toml 330 B
- template/eslint.config.js 1.2 KB runs code
- template/i18n/en.toml 328 B
- template/Makefile 788 B
- template/package.json 844 B
- template/postcss.config.js 80 B runs code
- template/scripts/check-translations.sh 2.5 KB runs code
- template/static/favicon.svg 271 B
- template/static/site.webmanifest 166 B
- template/tailwind.config.js 813 B runs code
- template/themes/landing/assets/css/main.css 23 KB
- template/themes/landing/assets/js/analytics-events.js 2.8 KB runs code
- template/themes/landing/assets/js/main.js 1 B runs code
- template/themes/landing/layouts/_default/_markup/render-image.html 1.2 KB
- template/themes/landing/layouts/_partials/cross-domain-url.html 925 B
- template/themes/landing/layouts/_partials/footer.html 2.3 KB
- template/themes/landing/layouts/_partials/head.html 11 KB
- template/themes/landing/layouts/_partials/head/css.html 350 B
- template/themes/landing/layouts/_partials/head/js.html 520 B
- template/themes/landing/layouts/_partials/header.html 5.0 KB
- template/themes/landing/layouts/_partials/menu.html 1.9 KB
- template/themes/landing/layouts/_partials/post-card-small.html 1.2 KB
- template/themes/landing/layouts/_partials/post-card.html 945 B
- template/themes/landing/layouts/_partials/responsive-image.html 2.1 KB
- template/themes/landing/layouts/_partials/terms.html 554 B
- template/themes/landing/layouts/baseof.html 326 B
- template/themes/landing/layouts/blog/single.html 4.9 KB
- template/themes/landing/layouts/home.html 31 KB
- template/themes/landing/layouts/legal/single.html 1.6 KB
- template/themes/landing/layouts/page.html 325 B
- template/themes/landing/layouts/robots.txt 127 B
- template/themes/landing/layouts/section.html 2.5 KB
- template/themes/landing/layouts/shortcodes/faq.html 607 B
- template/themes/landing/layouts/shortcodes/stat-grid.html 328 B
- template/themes/landing/layouts/shortcodes/timeline.html 773 B
- template/themes/landing/layouts/taxonomy.html 1.0 KB
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.
- 12d ago First seen · 209 lines · 89 tokens per session scan A 327363bf9d86
hugo-landing is a skill published in the GitHub repository gerodp/hugo-landing-skill (7 stars, last pushed 1mo ago), licensed MIT. It adds 89 tokens to every session and 2,652 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
chakra-ui-builder
Build responsive, accessible UI components and layouts using Chakra UI v3, install or configure Chakra UI in new and existing projects, and design scalable themes using tokens, semantic tokens, recipes, and slot recipes. Use this skill whenever a user asks to build, create, or generate any UI component, page, form…
visual-ralph
Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ultragoal with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.
frontend-visual-qa
Audits already-rendered web, landing-page, HTML deck/slide, browser tool/game, dashboard/admin, design-system, and desktop UIs using real-browser or native-app journeys, inspected screenshots, DOM geometry, responsive or projection viewports, and a bundled Playwright sweep. Use after UI implementation to find…
prototype-web
A clickable, high-fidelity web product prototype with navigation, a hero section, feature cards, steps, social proof, and optional pricing. It is designed to resemble a finished landing page while remaining a prototype.
waitlist-page
A simple waitlist page for collecting email addresses from people interested in a new product or early-access release.
refactoring-ui
Audit and fix visual hierarchy, spacing, color, and depth in web UIs. Use when the user mentions "my UI looks off" (or amateur/unprofessional), "fix the design", "Tailwind styling", "color palette", "visual hierarchy", "design system", "spacing scale", or "component styling". Also trigger when building consistent…