Next.js 16 starter with Claude Code superpowers built-in.
Part of cc-skills | Works with docpull for documentation
- ✅ App Router
- ✅ Server Actions
- ✅ TypeScript
- ✅ Tailwind CSS
- ✅ Turbopack
- 🤖 7 Agents - Security auditor, database architect, API builder, etc.
- 🎯 6 Skills - Next.js caching, streaming, App Router patterns
- ⚡ 5 Commands - /sync-types, /clear-cache, /build-safe, etc.
- 🪝 Hooks - Pre-commit validation, auto-formatting
- ⚙️ Settings - Optimized for Next.js development
# Clone this directory or use as template
git clone [repo-url] my-app
cd my-app
# Install dependencies
bun install
# Start development
bun dev
# Start Claude Code
claude# Security audit
"Use security-auditor to check this auth flow"
# Database migrations
/db-migrate create add_user_settings
# Type safety
/sync-types
# Cache management
/clear-cache- Server Components by default
- Optimized caching strategies
- Streaming and Suspense
- Modern React patterns
Use docpull to fetch docs for your stack:
pip install docpull
docpull --source stripe --output ./docs/stripe
docpull --source supabase --output ./docs/supabaseClaude Code agents/skills will automatically reference the docs!
rm -rf .claude/skills/next/# Create custom agent
echo "# My Agent
Agent instructions here..." > .claude/agents/my-agent.mdEdit .claude/settings.json to customize:
- Agent behaviors
- Hook automation
- Tool restrictions
nextjs-claude-starter/
├── app/ # Next.js App Router
├── components/ # React components
├── lib/ # Utilities
├── public/ # Static assets
├── .claude/ # Claude Code config ⭐
│ ├── agents/ # AI assistants
│ ├── skills/ # Auto-invoked capabilities
│ ├── commands/ # Slash commands
│ ├── hooks/ # Event automation
│ └── settings.json # Configuration
├── package.json
├── tsconfig.json
└── tailwind.config.ts
# In Claude Code
"Use the security-auditor agent to check for vulnerabilities"# Just mention caching
"How should I cache this server component?"
# Claude automatically uses next-cache-architect skill/sync-types
# Syncs TypeScript types from SupabaseMIT License - See LICENSE file
Part of cc-skills - Ship faster with AI.