aceternity-ui
100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI…
Hugo static site generator with Tailwind v4, headless CMS (Sveltia/Tina), Cloudflare deployment. Use for blogs, docs sites, or encountering theme installation, frontmatter, baseURL errors.
$ npx -y skills add secondsky/claude-skills --skill hugo --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/hugoContext preview
The summary Claude sees to decide when to auto-load this skill.
Hugo static site generator with Tailwind v4, headless CMS (Sveltia/Tina), Cloudflare deployment. Use for blogs, docs sites, or encountering theme installation, frontmatter, baseURL errors.
name: hugo
description: "Hugo static site generator with Tailwind v4, headless CMS (Sveltia/Tina), Cloudflare deployment. Use for blogs, docs sites, or encountering theme installation, frontmatter, baseURL errors."
license: MIT
metadata:
version: "2.0.0"
hugo_version: "0.164.0"
tailwind_version: "4.1.16"
last_verified: "2026-08-03"
production_tested: true
token_savings: "60-65%"
errors_prevented: 15
templates_included: 4
references_included: 6
keywords:
- hugo
- hugo-extended
- static-site-generator
- ssg
- go-templates
- papermod
- goldmark
- markdown
- blog
- documentation
- docs-site
- landing-page
- sveltia-cms
- tina-cms
- headless-cms
- cloudflare-workers
- workers-static-assets
- wrangler
- hugo-server
- hugo-build
- frontmatter
- yaml-frontmatter
- toml-config
- hugo-themes
- hugo-modules
- multilingual
- i18n
- github-actions
- version-mismatch
- baseurl-error
- theme-not-found
- tailwind
- tailwind-v4
- tailwind-css
- hugo-pipes
- postcss
- css-framework
- utility-css
- hugo-tailwind
- tailwind-integration
- hugo-assets**Status**: Production Ready | **Last Updated**: 2026-08-03 **Latest Version**: hugo@0.164.0+extended | **Build Speed**: <100ms
---
**CRITICAL**: Always install Hugo **Extended** edition (not Standard) unless you're certain you don't need SCSS/Sass support. Most themes require Extended.
# macOS brew install hugo # Linux (Ubuntu/Debian) wget https://github.com/gohugoio/hugo/releases/download/v0.164.0/hugo_extended_0.164.0_linux-amd64.deb sudo dpkg -i hugo_extended_0.164.0_linux-amd64.deb # Verify Extended edition hugo version # Should show "+extended"
**Why this matters:**
# Use YAML format (not TOML) for better CMS compatibility hugo new site my-blog --format yaml # Initialize Git cd my-blog git init # Add PaperMod theme (recommended for blogs) git submodule add --depth=1 https://github.com/adityatelange/hugo-PaperMod.git themes/PaperMod
**CRITICAL:**
# hugo.yaml - Minimal working configuration baseURL: "https://example.com/" title: "My Hugo Blog" theme: "PaperMod" languageCode: "en-us" enableRobotsTXT: true params: ShowReadingTime: true ShowShareButtons: true defaultTheme: auto # Supports dark/light/auto
# Create first post hugo new content posts/first-post.md # Run development server (with live reload) hugo server # Build for production hugo --minify # Output is in public/ directory
---
✅ **Install Hugo Extended** (not Standard) - required for SCSS/Sass support in themes ✅ **Use YAML configuration** (`--format yaml`) - better CMS compatibility than TOML ✅ **Add themes as Git submodules** - easier updates and version control ✅ **Set correct baseURL** - prevents broken asset links on deployment ✅ **Pin Hugo version in CI/CD** - prevents version mismatch errors between local and deployment ✅ **Add `public/` to .gitignore** - build output should not be committed ✅ **Use `draft: false`** - drafts don't appear in production builds ✅ **Clone with `--recursive` flag** - ensures theme submodules are fetched ✅ **Use relative paths for images** - `/images/photo.jpg` not `../images/photo.jpg` ✅ **Test build before deploying** - catch errors locally with `hugo --minify`
❌ **Don't install Hugo Standard** - most themes require Extended edition ❌ **Don't use TOML config with Sveltia CMS** - has known bugs, use YAML instead ❌ **Don't commit `public/` directory** - it's generated output, not source code ❌ **Don't use different Hugo versions** - local vs CI/CD version mismatch causes errors ❌ **Don't forget `submodules: recursive`** - themes won't load in CI/CD ❌ **Don't hardcode production URLs** - use `-b $CF_PAGES_URL` or environment configs ❌ **Don't push `resources/_gen/`** - generated assets, should be in .gitignore ❌ **Don't use future dates carelessly** - posts won't publish until date passes ❌ **Don't skip `.hugo_build.lock`** - add to .gitignore ❌ **Don't mix YAML and TOML** - stick to one format throughout project
---
This skill prevents **15 documented errors**. Here are the top 5:
**Error**: `Error: SCSS support not enabled` **Prevention**: Always install Hugo Extended edition. Verify with `hugo version | grep extended` **See**: `references/error-catalog.md` for full error list
**Error**: Broken CSS/JS/image links, 404s on all assets **Prevention**: Use environment-specific configs or build flag: `hugo -b $CF_PAGES_URL` **See**: `references/error-catalog.md` #2
**Error**: `Error: module "PaperMod" not found`, blank site **Prevention**: Set `theme: "PaperMod"` in hugo.yaml and run `git submodule update --init --recursive` **See**: `references/error-catalog.md` #6
**Error**: Features work locally but fail in CI/CD, or vice versa **Prevention**: Pin Hugo version everywhere (CI/CD, local docs, package.json if using npm) **See**: `references/error-catalog.md` #4
**Error**: Theme works loca
145 production-ready skills for Claude Code CLI 🔌 Platform / Harness Support These plugins ship as Claude Code marketplace plugins (.claude-plugin/ manifests) and Codex CLI plugins (.codex-plugin/ manifests).
Repo: secondsky/claude-skills
100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI…
Secure API authentication with JWT, OAuth 2.0, API keys. Use for authentication systems, third-party integrations, service-to-service communication, or…
Creates comprehensive API changelogs documenting breaking changes, deprecations, and migration strategies for API consumers. Use when managing API versions,…
Verifies API contracts between services using consumer-driven contracts, schema validation, and tools like Pact. Use when testing microservices communication,…
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs,…
Implements standardized API error responses with proper status codes, logging, and user-friendly messages. Use when building production APIs, implementing…