New to Claude Skills? Learn how to install them →

langfuse on GitHub

Backend Development Guidelines

Free

Streamline your backend and API development processes.

by langfuse32.8k stars on langfuse/langfuse
1 views
Updated Aug 10, 2026
Get this skill

Free · Opens the source repo

What Backend Development Guidelines does

The Backend Development Guidelines skill provides a comprehensive framework for building and reviewing backend code in Langfuse projects. It is designed for developers working on various aspects of backend development, including tRPC routers, public REST APIs, queue processors, and middleware. This skill serves as an essential resource for both creating new features and modifying existing ones, ensuring best practices are followed throughout the development lifecycle.

By utilizing this skill, developers can easily navigate through multiple backend areas such as authentication, validation, and observability. The skill includes detailed instructions for common tasks, such as defining routers, creating API endpoints, and implementing queue-backed workflows. Additionally, it emphasizes the importance of input validation using Zod, proper error handling, and maintaining a clean separation of business logic from routing and controller definitions.

The skill is particularly useful for teams looking to maintain consistency and quality in their backend code. It provides quick start checklists and guidelines that help developers adhere to core principles, such as using environment configuration properly and ensuring that all database queries are scoped correctly. With live examples and a clear reference map, this skill can significantly reduce the time spent on onboarding new developers and improve overall project maintainability.

Whether you are building new features or refactoring existing code, the Backend Development Guidelines skill equips you with the knowledge and resources necessary to implement effective backend solutions. It is an invaluable tool for any developer or team involved in backend development within the Langfuse ecosystem.

When to use it

Use this skill when creating or modifying backend code, especially when working on tRPC routers, public APIs, or middleware.

When not to use it

This skill may not be suitable for frontend development tasks or when working outside the Langfuse framework.

What you can build with it

Creating a New tRPC Router

Define a new router in the specified directory and ensure it follows the authentication and validation guidelines.

Modifying an Existing API Endpoint

Add a new field or filter to an existing endpoint while preserving the response contract and ensuring thorough testing.

Implementing a Queue Processor

Set up a new queue processor by following the outlined structure and ensuring proper error handling and logging.

How to install Backend Development Guidelines

View source

1. Install with the skills CLI

npx skills add langfuse/langfuse/backend-dev-guidelines --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by langfuse

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.

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 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

Frequently asked questions about Backend Development Guidelines

Similar skills