agentsclimarketplace

Backend dev guidelines

Skill jgamaraalv/delivery-loop/.claude/skills/backend-dev-guidelines

Continuous fullstack delivery loops — orchestrates frontend, backend, and quality subagents (behaviour drivers, engineers, UI/UX specialist, code/security reviewers, architects) in a test → diagnose → fix → review → secure → re-test cycle until the work is production-ready

Install
npx -y skills add jgamaraalv/delivery-loop --skill backend-dev-guidelines

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Shared backend guide for Langfuse's Next.js/tRPC/BullMQ/TypeScript monorepo — tRPC routers, public REST endpoints, BullMQ processors, services, Prisma/ClickHouse access, Zod validation, and backend tests across web/worker/shared.

SKILL.md

5.2 KB, as published. Nobody here has run it

Backend Development Guidelines

Backend and API work across web/, worker/, and packages/shared/.

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.

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

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.