Iteam-company

39 mods across 1 repository, 2 stars between them.

PreToolUse

05

Iteam-company/claude-code-boilerplates

Hook Claude Code

Runs before the agent uses a tool for Bash tool calls, executing pre-tool-use.sh. From Iteam-company/claude-code-boilerplates.

2 6d ago A tokens not measured

PostToolUse

06

Iteam-company/claude-code-boilerplates

Hook Claude Code

Runs after a tool call finishes for Write, Edit and MultiEdit tool calls, running an inline shell check. From Iteam-company/claude-code-boilerplates.

2 6d ago A tokens not measured

analytics

08

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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…

2 6d ago A 76 tokens

api-patterns

09

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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

2 6d ago A 30 tokens

auth-patterns

10

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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.

2 6d ago A 43 tokens

claude-feature

11

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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…

2 6d ago A 81 tokens

cloudinary-upload

12

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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…

2 6d ago A 70 tokens

component-splitting

13

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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.

2 6d ago A 47 tokens

create-hook

14

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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…

2 6d ago A 69 tokens

db-patterns

15

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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

2 6d ago A 31 tokens

drizzle-migrate

16

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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.

2 6d ago A 69 tokens

drizzle-relations

17

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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…

2 6d ago A 83 tokens

dto-patterns

18

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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.

2 6d ago A 55 tokens

email-setup

19

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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…

2 6d ago A 74 tokens

feature-module

20

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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…

2 6d ago A 105 tokens

i18n

21

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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…

2 6d ago A 90 tokens

init-project

22

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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.

2 6d ago A 50 tokens

landing-page

23

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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…

2 6d ago A 85 tokens

multi-tenancy

24

Iteam-company/claude-code-boilerplates

Skill Claude CodeCodex

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.

2 6d ago A 62 tokens