blowfish: Skill for Claude Code

.claude/skills/blowfish/SKILL.md

blowfish is a skill for Claude Code from nunocoracao/blowfish. It costs 67 tokens per session (2,439 once invoked), scanned A, original, MIT.

Instructions for installing and customizing Blowfish, a Hugo theme for building websites. Hugo is a tool that turns content and templates into web pages.

In plain words
What is it for?
Use it when creating or maintaining a Hugo site that uses Blowfish, or when changing the theme itself.
Why use it?
It explains the setup choices and configuration files needed to use Blowfish correctly. It also covers updates, page layouts, shortcodes, and the theme's structure.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions CLAUDE.md.

This is nunocoracao/blowfish's own configuration. It tells Claude Code how to work on blowfish itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything blowfish configures →

Part of the blowfish plugin — 1 skill shipped together

About the project

Blowfish is a personal website and blog theme for Hugo, a tool that generates websites from content files. Hugo users use it to create customizable blogs and other content-focused sites. Its catalogue add-ons help AI coding agents install and configure the theme.

nunocoracao/blowfish · 2,890 stars · on GitHub · blowfish.page

Reuse

Borrowing it

Nothing to install: this file belongs to nunocoracao/blowfish. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/nunocoracao/blowfish/main/.claude/skills/blowfish/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/nunocoracao/blowfish

Made for: Claude Code.

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

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 blowfish

README.md
[![agentmods](https://agentmods.dev/badge/skills/nunocoracao/blowfish/blowfish/github.svg)](https://agentmods.dev/skills/nunocoracao/blowfish/blowfish)
Your own site
<a href="https://agentmods.dev/skills/nunocoracao/blowfish/blowfish"><img src="https://agentmods.dev/badge/skills/nunocoracao/blowfish/blowfish/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.

agentmods 80×15 button for blowfish

Your own site · 80×15
<a href="https://agentmods.dev/skills/nunocoracao/blowfish/blowfish"><img src="https://agentmods.dev/badge/skills/nunocoracao/blowfish/blowfish.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,439 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 16
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
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.00067 $0.02439
Opus 5 $0.00034 $0.01220
Sonnet 5 $0.00013 $0.00488
Haiku 4.5 $0.00007 $0.00244

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

Security

Grade A, and why

blowfish 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 11d 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/blowfish/SKILL.md · 96 lines

How it starts

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

Blowfish theme

Blowfish is a lightweight Hugo theme built with Tailwind CSS. Docs: https://blowfish.page/ · Repo: https://github.com/nunocoracao/blowfish

Requires Hugo extended edition, within the version range declared in the theme's config.toml under [module.hugoVersion] (check that file — the range is a rolling window that tracks recent Hugo releases).

Installing

Full walkthrough: https://blowfish.page/docs/installation/

  1. Blowfish Tools CLI: npx blowfish-tools — interactive setup that scaffolds the site and config. npx blowfish-tools new <site> creates project + theme in one go.
  2. Git submodule:
    git init   # if not already a repo
    git submodule add -b main https://github.com/nunocoracao/blowfish.git themes/blowfish
    
    Then set theme = "blowfish" in the site's config/_default/hugo.toml.
  3. Hugo module: hugo mod init github.com/<user>/<repo> then in config/_default/module.toml:
    [[imports]]
    path = "github.com/nunocoracao/blowfish/v3"
    
  4. Manual: download the latest release archive, extract to themes/blowfish/, set theme = "blowfish".

After installing (any method): delete the site's generated hugo.toml in the project root, and copy the theme's config/_default/*.toml files into the site's config/_default/ (don't overwrite module.toml if using Hugo modules). A ready-made zip of the config files: https://github.com/nunocoracao/blowfish/releases/latest/download/config-default.zip

Updating

  • Git submodule: git submodule update --remote --merge
  • Hugo module: hugo mod get -u (inspects module.toml + go.mod)
  • Manual: download the latest release and replace themes/blowfish/ entirely (local edits inside the theme folder are lost — site-level overrides are safe).
  • Upgrading v2 → v3: fully backwards compatible; all new features are opt-in and nothing was removed or renamed. Hugo-module users change the import path …/blowfish/v2…/blowfish/v3 in module.toml, then hugo mod get -u. Other methods need no changes. Details: https://blowfish.page/docs/installation/#upgrading-from-v2-to-v3

Read the full file on GitHub · 96 lines

Files

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.

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. 11d ago First seen · 96 lines · 67 tokens per session scan A 4f70a97d4411

Subscribe to this mod's changes

blowfish is a skill published in the GitHub repository nunocoracao/blowfish (2,890 stars, last pushed today), licensed MIT. It adds 67 tokens to every session and 2,439 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.

Related

Other skills, from other repositories

article-magazine

Huashu / huashu-md-html-inspired magazine article layout for turning Markdown or notes into a polished long-form HTML essay.

nexu-io/open-design · 30 tokens

nextjs-nextra-starter-distill-zh

A project guide for a Next.js documentation and landing-page starter built with Nextra, Tailwind CSS, MDX, translations, themes, and interface components. It explains the repository’s structure, existing features, extension points, and migration patterns.

pdsuwwz/nextjs-nextra-starter · 97 tokens

nextjs-nextra-starter-distill

Distill and apply this repository's Next.js Nextra starter architecture, implemented features, extension points, and migration patterns. Use when Codex needs to understand this project, continue second-stage development, add or change docs/landing/i18n/theme/auth/UI behavior, or reuse these Next.js 16 + Nextra 4 +…

pdsuwwz/nextjs-nextra-starter · 85 tokens

integrate-product-site

Mount OpenBlog on an existing product website — chrome, deploy patterns, brand import. PRIMARY path. Use when the user already has a main site and wants /blog or blog subdomain. Ask the user to confirm before suggesting create-openblog.

kostja94/openblog · 54 tokens

article-magazine

Huashu / huashu-md-html-inspired magazine article layout for turning Markdown or notes into a polished long-form HTML essay.

linyeping/Metis · 30 tokens

visual-ralph

Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ralph with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.

Yeachan-Heo/oh-my-codex · 50 tokens