Iteam-company/claude-code-boilerplates

Reusable boilerplates and shared Claude setup, with a CLI to scaffold ready-to-use projects

This repository also configures its own agents. See what claude-code-boilerplates tells them →

2Stars on the repository
39Mods indexed here, across every type
4d agoLast push, which is what freshness is scored on
noneNo LICENSE: all rights reserved, so bodies are not copied

analytics

01

Iteam-company/claude-code-boilerplates

Skill Claude Code

Analytics event tracking in this Next.js project — trackEvent() stub in lib/analytics.ts, Vercel Analytics auto-pageviews already wired in app/layout.tsx, and how to swap in a real provider (PostHog, Mixpanel). Use this skill whenever the user asks about analytics, tracking custom events, replacing the analytics stub…

not rated 2 4d ago A 76 tokens

api-patterns

02

Iteam-company/claude-code-boilerplates

Skill Claude Code

REST API structure, error handling, and response shapes for Next.js App Router routes. Loaded when writing or reviewing API route handlers.

not rated 2 4d ago A 30 tokens

auth-patterns

03

Iteam-company/claude-code-boilerplates

Skill Claude Code

Authentication and authorization patterns for this project. JWT-based auth via getUserFromRequest() called in route handlers, not middleware. Loaded when touching protected routes, token handling, or user session logic.

not rated 2 4d ago A 43 tokens

claude-feature

04

Iteam-company/claude-code-boilerplates

Skill Claude Code

Add an AI feature powered by Claude (Anthropic) to this Next.js project — lib/claude.ts client, streaming chat route, tool-use pattern, prompt caching, and credit deduction per AI call. Use this skill whenever the user asks about Claude AI, Anthropic API, streaming AI responses, AI chat, tool use, prompt caching, or…

not rated 2 4d ago A 81 tokens

cloudinary-upload

05

Iteam-company/claude-code-boilerplates

Skill Claude Code

Integrate Cloudinary image uploads into a Next.js project — lib setup, upload API route, upload hook, and ImageUpload component. Use this skill whenever the user asks about image uploads, file storage, Cloudinary, cover images, or avatar uploads. Always use this skill when adding any kind of file or image upload…

not rated 2 4d ago A 70 tokens

component-splitting

06

Iteam-company/claude-code-boilerplates

Skill Claude Code

Split large React components into focused, performant pieces. Use when a component exceeds 150 lines, owns mixed concerns, or causes unnecessary re-renders. Covers extraction patterns, state isolation, and co-location conventions.

not rated 2 4d ago A 47 tokens

create-hook

07

Iteam-company/claude-code-boilerplates

Skill Claude Code

Analyze a component or file and identify inline logic that can be extracted into a reusable React hook. Proposes the hook name, signature, and affected components -- then asks before writing any code. Use when a component mixes state + effects, when a pattern repeats across components, or when the user asks "can this…

not rated 2 4d ago A 69 tokens

db-patterns

08

Iteam-company/claude-code-boilerplates

Skill Claude Code

Database access patterns, query rules, and migration conventions using Drizzle ORM + Neon. Loaded when writing queries, repositories, or migrations.

not rated 2 4d ago A 31 tokens

drizzle-migrate

09

Iteam-company/claude-code-boilerplates

Skill Claude Code

Run Drizzle ORM migrations — generate SQL migrations from schema changes and apply them to the database. Use this skill whenever the user changes a schema file, adds a new table, adds a column, or asks to run/apply/push migrations. Always use this skill before assuming the DB is in sync with the schema.

not rated 2 4d ago A 69 tokens

drizzle-relations

10

Iteam-company/claude-code-boilerplates

Skill Claude Code

Define Drizzle ORM relations correctly so that db.query. with with works without errors. Use this skill whenever the user gets a "referencedTable" error, asks how to use with in a Drizzle query, needs to add a relation between tables, or creates a new schema file. This is a common gotcha — always apply this skill when…

not rated 2 4d ago A 83 tokens

dto-patterns

11

Iteam-company/claude-code-boilerplates

Skill Claude Code

Type and validation conventions for this Next.js project. Types live in modules/[name]/[name].types.ts, Zod schemas in modules/[name]/[name].validation.ts. Load when creating or modifying types, validation schemas, or shared interfaces.

not rated 2 4d ago A 55 tokens

email-setup

12

Iteam-company/claude-code-boilerplates

Skill Claude Code

Set up and extend transactional email in this Next.js project using Resend and react-email. Covers lib/email.ts service, emails/ templates, feature flags, and calling emailService from a service layer. Use this skill whenever the user asks about sending email, adding a new email template, toggling email verification…

not rated 2 4d ago A 74 tokens

feature-module

13

Iteam-company/claude-code-boilerplates

Skill Claude Code

Scaffold a complete feature module (schema, relations, types, validation, repo, service, index) following the project's DDD-lite structure. Use this skill whenever the user wants to add a new feature, entity, or resource — e.g. "add a categories feature", "I need a tags module", "create a module for X", "I want to add…

not rated 2 4d ago A 105 tokens

i18n

14

Iteam-company/claude-code-boilerplates

Skill Claude Code

Add translations to any page or component in this Next.js project using next-intl. All strings live in messages/en.json. Use getTranslations() in server components and useTranslations() in client components. Use this skill whenever the user asks about translations, i18n, adding a new language, moving text to…

not rated 2 4d ago A 90 tokens

init-project

15

Iteam-company/claude-code-boilerplates

Skill Claude Code

Full project initialization after cloning the boilerplate. Installs dependencies, walks through .env setup, configures the database, and writes a project-specific CLAUDE.md. Run this once after cloning. Triggers on /init-project.

not rated 2 4d ago A 50 tokens

landing-page

16

Iteam-company/claude-code-boilerplates

Skill Claude Code

Generate and customize marketing landing page sections for a Next.js project. Covers Hero, Features, Pricing teaser, FAQ (custom accordion), and CTA components in components/landing/, i18n integration, section background alternation, and connecting Pricing to Stripe checkout. Use this skill whenever the user asks to…

not rated 2 4d ago A 85 tokens

multi-tenancy

17

Iteam-company/claude-code-boilerplates

Skill Claude Code

Add multi-tenancy to the app — organizations with owner/admin/member roles, invite-by-email flow, and org context via localStorage + X-Org-Id header. Use this skill whenever the user asks to add organizations, teams, workspaces, multi-tenancy, or member management.

not rated 2 4d ago A 62 tokens

nextjs-api-route

18

Iteam-company/claude-code-boilerplates

Skill Claude Code

Generate Next.js App Router API route files (route.ts) following the project's thin-route pattern. Use this skill whenever the user asks to add an endpoint, create a route, add an API, or implement a new HTTP handler. Triggers on phrases like "add a route for", "create an endpoint", "I need a POST/GET/PUT/DELETE for"…

not rated 2 4d ago A 108 tokens

nextjs-mdx-blog

19

Iteam-company/claude-code-boilerplates

Skill Claude Code

Set up and maintain a Next.js MDX blog that renders posts stored as MDX strings in a database. Use this skill whenever the user asks about MDX rendering, blog post pages, prose styling, serialize/MDXRemote setup, or gets errors like "async Client Component" or missing prose styles. Always use this skill for anything…

not rated 2 4d ago A 90 tokens

product-review

20

Iteam-company/claude-code-boilerplates

Skill Claude Code

Review the entire project from the perspective of a potential customer and a growth-focused CEO. Scans landing copy, product UX, API routes, DB schema, auth flow, pricing, email, and configuration — reporting specific conversion blockers, trust issues, UX problems, security gaps, and missing elements. Each finding has…

not rated 2 4d ago A 96 tokens

pwa

21

Iteam-company/claude-code-boilerplates

Skill Claude Code

Progressive Web App setup for Next.js using @ducanh2912/next-pwa. Covers manifest.json, icons, service worker config, viewport/metadata, .gitignore entries, and how to replace placeholder icons. Use when adding PWA support, adjusting caching strategy, or customizing the web app manifest.

not rated 2 4d ago A 67 tokens

seo

22

Iteam-company/claude-code-boilerplates

Skill Claude Code

Full SEO layer for this Next.js project — root layout metadata, page-level static/dynamic metadata, OG images (static + dynamic), sitemap.ts, robots.ts, JSON-LD structured data, canonical URLs, Twitter cards, and comparison/vs pages. Use this skill whenever the user asks about SEO, metadata, open graph, OG image…

not rated 2 4d ago A 96 tokens

stripe-setup

23

Iteam-company/claude-code-boilerplates

Skill Claude Code

Integrate Stripe payments or subscriptions into a Next.js project — lib setup, checkout session API route (payment and subscription modes), webhook handler, customer portal, credit system, and CheckoutButton component. Use this skill whenever the user asks about payments, Stripe, checkout, subscriptions, pricing…

not rated 2 4d ago A 86 tokens

swr-hooks

24

Iteam-company/claude-code-boilerplates

Skill Claude Code

Generate SWR data-fetching hooks (useSWR and useSWRMutation) following the project's fetcher pattern. Use this skill whenever the user asks to add a hook, create a useX function, fetch data from the API in a component, or needs client-side data fetching. Triggers on "add a hook for", "I need to fetch X", "create a…

not rated 2 4d ago A 97 tokens

At most 3 mods per repository are shown here, and a mod shipped inside a plugin is left to that plugin's page — the rest are on their repository pages: