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…
Nuxt Content v3 Git-based CMS for Markdown/MDC content sites. Use for blogs, docs, content-driven apps with type-safe queries, schema validation (Zod/Valibot), full-text search, navigation utilities. Supports Nuxt Studio production editing, Cloudflare D1/Pages deployment, Vercel
$ npx -y skills add secondsky/claude-skills --skill nuxt-content --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/nuxt-contentContext preview
The summary Claude sees to decide when to auto-load this skill.
Nuxt Content v3 Git-based CMS for Markdown/MDC content sites. Use for blogs, docs, content-driven apps with type-safe queries, schema validation (Zod/Valibot), full-text search, navigation utilities. Supports Nuxt Studio production editing, Cloudflare D1/Pages deployment, Vercel
name: nuxt-content
description: "Nuxt Content v3 Git-based CMS for Markdown/MDC content sites. Use for blogs, docs, content-driven apps with type-safe queries, schema validation (Zod/Valibot), full-text search, navigation utilities. Supports Nuxt Studio production editing, Cloudflare D1/Pages deployment, Vercel deployment, SQL storage, MDC components, content collections."
metadata:
keywords:
- nuxt content
- "@nuxt/content"
- content collections
- git-based cms
- markdown cms
- mdc syntax
- nuxt studio
- content editing
- queryCollection
- cloudflare d1 deployment
- vercel deployment
- markdown components
- prose components
- content navigation
- full-text search
- type-safe queries
- sql storage
- content schema validation
- zod validation
- valibot
- remote repositories
- content queries
- queryCollectionNavigation
- queryCollectionSearchSections
- ContentRenderer component
license: MIT**Status**: Production Ready **Last Updated**: 2025-01-10 **Dependencies**: None **Latest Versions**: @nuxt/content@^3.0.0, nuxt-studio@^0.1.0-alpha, zod@^4.3.6, valibot@^0.42.0, better-sqlite3@^11.0.0
---
Nuxt Content v3 is a powerful Git-based CMS for Nuxt projects that manages content through Markdown, YAML, JSON, and CSV files. It transforms content files into structured data with type-safe queries, automatic validation, and SQL-based storage for optimal performance.
**Major Improvements**:
Use this skill when:
---
# Bun (recommended) bun add @nuxt/content better-sqlite3 # npm npm install @nuxt/content better-sqlite3 # pnpm pnpm add @nuxt/content better-sqlite3
**Why this matters:**
// nuxt.config.ts
export default defineNuxtConfig({
modules: ['@nuxt/content']
})**CRITICAL:**
// content.config.ts
import { defineContentConfig, defineCollection } from '@nuxt/content'
import { z } from 'zod'
export default defineContentConfig({
collections: {
content: defineCollection({
type: 'page',
source: '**/*.md',
schema: z.object({
tags: z.array(z.string()).optional(),
date: z.date().optional()
})
})
}
})Create content file:
<!-- content/index.md --> --- title: Hello World description: My first Nuxt Content page tags: ['nuxt', 'content'] --- # Welcome to Nuxt Content v3 This is my first content-driven site!
<!-- pages/[...slug].vue -->
<script setup>
const route = useRoute()
const { data: page } = await useAsyncData(route.path, () =>
queryCollection('content').path(route.path).first()
)
</script>
<template>
<ContentRenderer v-if="page" :value="page" />
</template>**See Full Template**: `templates/blog-collection-setup.ts`
---
1. **Define Collections** in `content.config.ts` before querying 2. **Use ISO 8601 Date Format**: `2024-01-15` or `2024-01-15T10:30:00Z` 3. **Restart Dev Server** after changing `content.config.ts` 4. **Use `.only()`** to select specific fields (performance) 5. **Place MDC Components** in `components/content/` directory 6. **Use Zero-Padded Prefixes** for numeric sorting: `01-`, `02-` 7. **Install Database Connector**: `better-sqlite3` required 8. **Specify Language** in code blocks for syntax highlighting 9. **Use `<!--more-->`** in content to separate excerpts 10. **D1 Binding Must Be "DB"** (case-sensitive) on Cloudflare
1. **Don't Query Before Defining Collection** in `content.config.ts` 2. **Don't Use Non-ISO Date Formats** (e.g., "January 15, 2024") 3. **Don't Forget to Restart** dev server after config changes 4. **Don't Query All Fields** when you only need some (use `.only()`) 5. **Don't Place Components** outside `components/content/` 6. **Don't Use Single-Digit Prefixes** (use `01-` not `1-`) 7. **Don't Skip Database Connector** installation 8. **Don't Forget Language** in code fences 9. **Don't Expect Excerpts** without `<!--more-->` divider 10. **Don't Use Different Binding Names** for D1 (must be "DB")
---
Collections organize related content with shared configuration:
// content.config.ts
import { defineCollection, defineContentConfig } from '@nuxt/content'
import { z } from 'zod'
export default defineContentConfig({
collections: {
blog: defineCollection({
type: 'page',
source: 'blog/**/*.md',
schema: z.object({
title: z.string(),
date: z.date(),
ta145 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…