backend-dev-guidelines
Provides project-specific guidelines for backend development in a Next.js/tRPC monorepo environment.
Install
mkdir -p .claude/skills/backend-dev-guidelines && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/143" && unzip -o skill.zip -d .claude/skills/backend-dev-guidelines && rm skill.zipInstalls to .claude/skills/backend-dev-guidelines
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Shared backend guide for Langfuse's Next.js, tRPC, BullMQ, and TypeScript monorepo. Use when creating or reviewing tRPC routers, public REST endpoints, BullMQ queue processors, backend services, middleware, Prisma or ClickHouse data access, OpenTelemetry instrumentation, Zod validation, env configuration, or backend tests across web, worker, or packages/shared.Key capabilities
- →Implement tRPC routers and procedures
- →Develop public API endpoints with Zod validation
- →Create BullMQ queue processors
- →Apply tenant isolation via projectId filtering
- →Instrument backend services with OpenTelemetry
How it works
The skill provides a reference map and checklists for maintaining consistent backend patterns across a Next.js, tRPC, and BullMQ monorepo.
Inputs & outputs
When to use backend-dev-guidelines
- →Creating tRPC routers
- →Developing Next.js API routes
- →Implementing BullMQ queue processors
- →Standardizing backend service structures
About this skill
Backend Development Guidelines
Use this skill for backend and API work across web/, worker/, and
packages/shared/.
When to Apply
- Creating or modifying tRPC routers and procedures
- Creating or modifying public API endpoints
- Creating or modifying queue processors, producers, or queue-backed workflows
- Building or refactoring backend services and repositories
- Working on backend auth, middleware, validation, or observability
- Updating Prisma or ClickHouse access patterns
- Adding or fixing backend tests
How to Read This Skill
- Use this
SKILL.mdwhen the task spans multiple backend areas or you need the end-to-end reference map. - Read only the specific reference file that matches the work when the scope is narrower.
- If the task introduces a user-supplied URL, an outbound HTTP request, a new
integration, or touches secrets, RBAC, or redirect handling, also load the
shared
security-reviewskill before designing or implementing the change.
Quick Start Checklists
UI: New tRPC Feature
- Define the router in
features/[feature]/server/*Router.ts. - Use the appropriate protected or public procedure.
- Authenticate with JWT-aware middleware.
- Check project/resource access and entitlements.
- Validate input with Zod v4.
- Put business logic in a service file.
- Use
traceExceptionfor error handling where relevant. - Add unit or integration tests in
__tests__/. - Access config via
env.mjs.
Existing Endpoint: Additive Field or Filter
Before coding, classify the change as a new endpoint, an additive field/filter on an existing endpoint, or a semantic replacement/breaking change.
For an additive field/filter:
- Reuse the canonical predicate. For endpoints that already support field-group selection, reuse their existing field-group/projection path.
- Preserve the endpoint's existing response contract: use the normal optional partial-row schema and converter path for field-group endpoints; retain the strict response schema and converter path for ordinary endpoints.
- Do not create API-version-specific field sets, casts, or "must be selected" runtime assertions unless compatibility requires them.
- Extend examples and contracts; do not replace an existing filter example.
- Write one test per unique boundary, not one test per file touched.
SDKs: New Public API Endpoint
- Create the route in
pages/api/public/. - Wrap it with
withMiddlewaresandcreateAuthedProjectAPIRoute. - Define types in
features/public-api/types/. - Authenticate with basic auth.
- Validate query, body, and response with Zod schemas.
- Include API versioning in paths and schemas.
- Update Fern API definitions to match TypeScript types.
- Add end-to-end tests in
__tests__/async/.
Worker: New Queue Processor
- Create the processor in
worker/src/queues/. - Define queue types in
packages/shared/src/server/queues. - Place business logic in
features/orworker/src/features/. - Distinguish failed jobs from jobs that should succeed with a recorded error.
- Register the queue in
WorkerManagerinapp.ts. - Add worker vitest coverage.
Core Principles
- tRPC procedures, public API routes, and queue processors delegate business logic to services.
- Access configuration through
env.mjs; do not readprocess.envdirectly outside env setup. - Validate all external input with Zod v4.
- Use Prisma directly for simple CRUD and repositories for complex query access.
- Use OpenTelemetry and DataDog for backend observability.
- Always filter project-scoped database queries by
projectId. - Keep Fern API definitions in sync with public TypeScript API contracts.
- Keep backend tests independent and parallel-safe.
Live Examples
- tRPC router with project auth and Zod input:
web/src/features/events/server/eventsRouter.ts. - Public API route with middleware and typed request/response schemas:
web/src/pages/api/public/datasets/index.ts. - Worker queue processor with typed jobs, logging, and retry behavior:
worker/src/queues/evalQueue.ts. - Tenant filters for Prisma and ClickHouse:
references/database-patterns.md.
Naming Conventions
- tRPC routers:
camelCaseRouter.ts, for exampledatasetRouter.ts. - Services:
service.tsin the feature server directory. - Queue processors:
camelCaseQueue.ts, for exampleevalQueue.ts. - Public API routes: kebab-case filenames, for example
dataset-items.ts.
Anti-Patterns to Avoid
- Business logic in routes or procedures.
- Direct
process.envusage instead ofenv.mjs/env.ts. - Missing error handling.
- Missing input validation.
- Missing
projectIdfilters on tenant-scoped queries. console.loginstead oflogger/traceException.
Reference Map
| Topic | Read this when | File |
|---|---|---|
| Architecture and package boundaries | You need the web/worker/shared split, request flow, or queue lifecycle | references/architecture-overview.md |
| Routing and controllers | You are writing tRPC procedures, public API routes, or queue entrypoints | references/routing-and-controllers.md |
| Middleware and auth | You are changing request auth, permissions, or middleware composition | references/middleware-guide.md |
| Services and repositories | You are placing business logic, repository code, or DI patterns | references/services-and-repositories.md |
| Database access | You are touching Prisma, ClickHouse, tenant filters, or query patterns | references/database-patterns.md |
| Configuration | You are adding env vars, startup config, or runtime toggles | references/configuration.md |
| Testing | You are adding or updating backend tests | references/testing-guide.md |
When not to use it
- →Frontend-only UI logic
- →Non-monorepo project architectures
- →Direct process.env access
Prerequisites
Limitations
- →Requires adherence to specific monorepo structure
- →Mandates use of env.mjs for configuration
How it compares
It enforces strict architectural boundaries and shared patterns instead of allowing ad-hoc backend implementation.
Compared to similar skills
backend-dev-guidelines side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| backend-dev-guidelines (this skill) | 10 | 1mo | Review | Advanced |
| route-handlers | 1 | 7mo | Review | Intermediate |
| add-api-endpoint | 0 | 5mo | No flags | Intermediate |
| backend-dev-guidelines | 0 | 6mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
route-handlers
davepoon
This skill should be used when the user asks to "create an API route", "add an endpoint", "build a REST API", "handle POST requests", "create route handlers", "stream responses", or needs guidance on Next.js API development in the App Router.
add-api-endpoint
tahmidbintaslim
Add a new Next.js App Router API route with validation, safe errors, Supabase auth checks, docs and tests.
backend-dev-guidelines
yashvinthan
Comprehensive backend development guide for Langfuse's Next.js 14/tRPC/Express/TypeScript monorepo. Use when creating tRPC routers, public API endpoints, BullMQ queue processors, services, or working with tRPC procedures, Next.js API routes, Prisma database access, ClickHouse analytics queries, Redi
hr-portal-skill
hariventures2000-ship-it
Use this skill when developing, testing, debugging, or modifying code inside the HR Portal frontend (apps/hr-portal). It applies to handling HR administration tasks such as employee roster management, contract seeding, leave request approvals, attendance monitoring, payroll calculation, and recruitm
payload
payloadcms
Use when working with Payload CMS projects (payload.config.ts, collections, fields, hooks, access control, Payload API). Use when debugging validation errors, security issues, relationship queries, transactions, or hook behavior.
add-setting-env
lobehub
Guide for adding environment variables to configure user settings. Use when implementing server-side environment variables that control default values for user settings. Triggers on env var configuration or setting default value tasks.