go-bulma

go-bulma is a skill for Claude Code from sgaunet/claude-plugins. It costs 44 tokens per session (3,836 once invoked), scanned A, original, MIT.

A setup workflow that adds the Bulma CSS framework to a Go web application and embeds its styles and small interaction script into the compiled binary.

In plain words
What is it for?
Use it to build class-based HTML interfaces in Go with Bulma, including navigation menus, modals, dropdowns, tabs, buttons, columns, and themed styles.
Why use it?
The application can serve its frontend assets without a Node.js build toolchain or fetching files from the network while running.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is // See ../../BULMA_VERSION for the pinned release..

Part of the go-specialist plugin — 4 skills, 7 commands, 1 agent shipped together

Good fit Use it to build class-based HTML interfaces in Go with Bulma, including navigation menus, modals, dropdowns, tabs, buttons, columns, and themed styles.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/sgaunet/claude-plugins
agentmods
npx agentmods add skills/sgaunet/claude-plugins/go-bulma

Made for: Claude Code.

Or install go-specialist, the plugin that ships this one along with the rest of its 4 skills, 7 commands, 1 agent.

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 go-bulma

README.md
[![agentmods](https://agentmods.dev/badge/skills/sgaunet/claude-plugins/go-bulma.svg)](https://agentmods.dev/skills/sgaunet/claude-plugins/go-bulma)
Your own site
<a href="https://agentmods.dev/skills/sgaunet/claude-plugins/go-bulma"><img src="https://agentmods.dev/badge/skills/sgaunet/claude-plugins/go-bulma.svg" alt="Measured on agentmods" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,836 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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: 2 findings, 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 Data Exfiltration · line 54
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 251
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00044 $0.03836
Opus 5 $0.00022 $0.01918
Sonnet 5 $0.00009 $0.00767
Haiku 4.5 $0.00004 $0.00384

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

Security

Grade A, and why

go-bulma 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 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (app.js), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

allowed-tools: Read, Write, Edit, Glob, Grep, Bash(go:*), Bash(curl:*), Bash(mkdir:*), Bash(shasum:*), Bash(sha256sum:*), Bash(sleep:*), Bash(kill:*)
plugins/go-specialist/skills/go-bulma/SKILL.md · 378 lines

How it starts

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

Bulma for Go

Scaffold Bulma — a modern, classes-based, CSS-only framework (MIT, no JavaScript, no jQuery) — into a Go web app. Assets are always downloaded at setup time and embedded into the binary with //go:embed. The running binary never fetches anything from the network.

Bulma styles components through utility and component classes (class="button is-primary", class="column is-half", class="navbar"). Bulma 1.0+ (released Feb 2024) ships CSS custom properties for theming, so colors, radii, fonts, and spacing can be customized without Sass or a Node build step.

Bulma intentionally ships zero JavaScript, so interactive components (navbar burger, modal, dropdown, tabs) need a small amount of vanilla JS to actually work. This skill scaffolds a self-contained app.js covering those patterns.

When to Use

  • User asks for a polished classes-based HTML UI in a Go app without React/Vue/Angular
  • User mentions "Bulma", "no Node", "no Sass", or wants a Bootstrap-like experience with a cleaner class system
  • html/template, templ, or *.gohtml files exist but no CSS framework is present
  • bulma.min.css is already in the repo and needs wiring or upgrading

Prerequisites

  1. go.mod exists: The project must be a Go module. Abort otherwise.
  2. Go ≥ 1.16: //go:embed requires Go 1.16+. Read the go directive in go.mod to verify.
  3. HTTP server present or planned: Bulma renders HTML served over HTTP. Confirm with the user if unclear.

Core Principle

Zero runtime dependencies. The binary must run offline after go build. Never reference cdn.jsdelivr.net, unpkg.com, or cdnjs.cloudflare.com from rendered HTML. Download once at setup time, embed, commit, ship.

Asset Source

Use the pinned npm-on-jsdelivr URL — it is immutable per version and fetched only at setup:

https://cdn.jsdelivr.net/npm/bulma@<VERSION>/css/bulma.min.css

Alternative (also acceptable, also pinned): the GitHub release zip:

Read the full file on GitHub · 378 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. 8d ago First seen · 378 lines · 44 tokens per session scan A 0be8e696599d

Subscribe to this mod's changes

go-bulma is a skill published in the GitHub repository sgaunet/claude-plugins (16 stars, last pushed 6d ago), licensed MIT. It adds 44 tokens to every session and 3,836 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

dioxus-knowledge-patch

Use this skill when creating, migrating, debugging, testing, or packaging a Dioxus application. Inspect manifests and the target platform, then open the matching topic reference.

Nevaberry/nevaberry-plugins · 11 tokens

implementing-firmware

Implements ESP-IDF or PlatformIO firmware with mandatory requirement docstring tags and MISRA-C linting. Use when writing embedded C code, implementing firmware features, or adding requirement-traced functions.

qte77/claude-code-plugins · 45 tokens

implementing-typescript

Implements concise, streamlined TypeScript/React code matching exact architect specifications. Use when writing TypeScript code, creating modules, or when the user asks to implement features in TypeScript/React.

qte77/claude-code-plugins · 44 tokens

figma-to-code

Extract Figma designs and generate production-ready React/Next.js components with TypeScript, Tailwind CSS, and pixel-perfect accuracy. Use when a user provides a Figma URL or asks to convert Figma designs to code.

majiayu000/spellbook · 50 tokens

bun-bundler

This skill should be used when the user asks about "bun build", "Bun.build", "bundling with Bun", "code splitting", "tree shaking", "minification", "sourcemaps", "bundle optimization", "esbuild alternative", "building for production", "bundling TypeScript", "bundling for browser", "bundling for Node", or…

secondsky/claude-skills · 90 tokens

dotnet-analyzers

Run dotnet format to fix code style and analyzer diagnostics (IDE0005, CA, SA). Use when fixing unnecessary usings, code style violations, analyzer warnings, or verifying format compliance.

NikiforovAll/claude-code-rules · 45 tokens