backend-dev-guidelines

द्वारा langfuse

Langfuse के Next.js, tRPC, BullMQ और TypeScript मोनोरिपो के लिए साझा बैकएंड गाइड। tRPC राउटर, सार्वजनिक REST एंडपॉइंट, BullMQ बनाते या समीक्षा करते समय उपयोग करें…

npx skills add https://github.com/langfuse/langfuse --skill backend-dev-guidelines

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.md when 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-review skill 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 traceException for error handling where relevant.
  • Add unit or integration tests in __tests__/.
  • Access config via env.mjs.

SDKs: New Public API Endpoint

  • Create the route in pages/api/public/.
  • Wrap it with withMiddlewares and createAuthedProjectAPIRoute.
  • 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/ or worker/src/features/.
  • Distinguish failed jobs from jobs that should succeed with a recorded error.
  • Register the queue in WorkerManager in app.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 read process.env directly 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 example datasetRouter.ts.
  • Services: service.ts in the feature server directory.
  • Queue processors: camelCaseQueue.ts, for example evalQueue.ts.
  • Public API routes: kebab-case filenames, for example dataset-items.ts.

Anti-Patterns to Avoid

  • Business logic in routes or procedures.
  • Direct process.env usage instead of env.mjs / env.ts.
  • Missing error handling.
  • Missing input validation.
  • Missing projectId filters on tenant-scoped queries.
  • console.log instead of logger / traceException.

Reference Map

TopicRead this whenFile
Architecture and package boundariesYou need the web/worker/shared split, request flow, or queue lifecyclereferences/architecture-overview.md
Routing and controllersYou are writing tRPC procedures, public API routes, or queue entrypointsreferences/routing-and-controllers.md
Middleware and authYou are changing request auth, permissions, or middleware compositionreferences/middleware-guide.md
Services and repositoriesYou are placing business logic, repository code, or DI patternsreferences/services-and-repositories.md
Database accessYou are touching Prisma, ClickHouse, tenant filters, or query patternsreferences/database-patterns.md
ConfigurationYou are adding env vars, startup config, or runtime togglesreferences/configuration.md
TestingYou are adding or updating backend testsreferences/testing-guide.md

langfuse की और Skills

add-model-price
langfuse
जब worker/src/constants/default-model-prices.json, packages/shared/src/server/llm/types.ts, मूल्य निर्धारण स्तर, टोकनाइज़र आईडी, या matchPattern regexes को संपादित कर रहे हों तब उपयोग करें…
official
agent-setup-maintenance
langfuse
इस कौशल का उपयोग तब करें जब रिपॉजिटरी के लिए साझा एजेंट सेटअप बदल रहे हों।
official
changelog-writing
langfuse
इस कौशल का उपयोग तब करें जब किसी पूर्ण फीचर ब्रांच के लिए चेंजलॉग एंट्री की आवश्यकता हो।
official
clickhouse-best-practices
langfuse
ClickHouse स्कीमा, क्वेरी या कॉन्फ़िगरेशन की समीक्षा करते समय अनिवार्य रूप से उपयोग करें। इसमें 28 नियम शामिल हैं जिन्हें सिफारिशें देने से पहले जांचना अनिवार्य है। हमेशा पढ़ें…
official
code-review
langfuse
इस कौशल का उपयोग तब करें जब कार्य कोई सुविधा लागू करने के बजाय कोड परिवर्तनों की समीक्षा करना हो।
official
frontend-browser-review
langfuse
इस कौशल का उपयोग तब करें जब कोई बदलाव ब्राउज़र में उपयोगकर्ताओं द्वारा देखे या किए जाने वाले कार्यों को प्रभावित करता है।
official
skill-developer
langfuse
एन्थ्रोपिक की सर्वोत्तम प्रथाओं का पालन करते हुए क्लॉड कोड स्किल्स बनाएं और प्रबंधित करें। नई स्किल्स बनाते समय, skill-rules.json को संशोधित करते समय, ट्रिगर को समझते समय उपयोग करें…
official
turborepo
langfuse
जावास्क्रिप्ट/टाइपस्क्रिप्ट मोनोरेपो के लिए बिल्ड सिस्टम। टर्बोरेपो कार्य आउटपुट को कैश करता है और निर्भरता ग्राफ के आधार पर कार्यों को समानांतर रूप से चलाता है।
official