db-agent
01Iteam-company/claude-code-boilerplates
Agent Claude Code
Handles all database work — migrations, queries, schema changes. Invoke for any DB-related task.
Iteam-company/claude-code-boilerplates
Agent Claude Code
Handles all database work — migrations, queries, schema changes. Invoke for any DB-related task.
Iteam-company/claude-code-boilerplates
Agent Claude Code
Pre-PR code review. Invoke before opening any pull request.
Iteam-company/claude-code-boilerplates
Agent Claude Code
Reviews code for security vulnerabilities. Invoke when touching auth, API routes, input handling, or secrets.
Iteam-company/claude-code-boilerplates
Command Claude Code
Generate a blog post and save it to the database.
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.
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.
Iteam-company/claude-code-boilerplates
Settings file Claude Code
Agent settings declaring 2 hook events (PreToolUse, PostToolUse) and 15 allowed tools.
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…
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.
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.
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…
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…
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.
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…
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.
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.
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…
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.
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…
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…
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…
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.
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…
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.