PluginBench
Skill
Review
Audit score 70

backend-dev-guidelines

sickn33/antigravity-awesome-skills

Senior backend engineer guidelines for production Node.js services with layered architecture, strict error handling, and observability.

What is backend-dev-guidelines?

A comprehensive skill for building production-grade backend systems using Node.js, Express, TypeScript, and Prisma. Enforces layered architecture (routes → controllers → services → repositories), mandatory error tracking, input validation with Zod, and centralized configuration. Use when developing or modifying routes, controllers, services, repositories, middleware, or database access.

  • Enforce layered architecture with zero business logic in routes
  • Assess backend feasibility via Backend Feasibility & Risk Index (BFRI) scoring
  • Mandate Sentry error tracking and performance monitoring
  • Require Zod validation for all external input
  • Enforce dependency injection and repository patterns
  • Provide canonical directory structure and naming conventions

How to install backend-dev-guidelines

npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill backend-dev-guidelines
Prerequisites
  • Node.js and Express setup
  • TypeScript configured
  • Prisma ORM installed
  • Sentry account and SDK configured
  • Zod validation library
Claude Code
Cursor
Windsurf
Cline

How to use backend-dev-guidelines

  1. 1.Calculate BFRI score for your feature across five dimensions (Architectural Fit, Complexity, Data Risk, Operational Risk, Testability)
  2. 2.Structure code in strict layers: routes → controllers → services → repositories
  3. 3.Extend BaseController for all controllers and use error handling helpers
  4. 4.Validate all external input with Zod schemas before business logic
  5. 5.Use unifiedConfig for all configuration instead of process.env
  6. 6.Wrap async route handlers with asyncErrorWrapper
  7. 7.Capture all errors to Sentry and write unit + integration tests
  8. 8.Review against the anti-patterns checklist before finalizing

Use cases

Good for
  • Building new Express routes with proper separation of concerns
  • Refactoring existing backend code to meet production standards
  • Assessing risk before implementing database or auth changes
  • Establishing error handling and observability across microservices
  • Validating request payloads and preventing invalid data from reaching business logic
Who it's for
  • Backend engineers building Node.js microservices
  • Teams enforcing production-grade code standards
  • Developers working with Express, TypeScript, and Prisma
  • Engineers responsible for system reliability and observability

backend-dev-guidelines FAQ

When should I use this skill?

Use it when working on routes, controllers, services, repositories, Express middleware, Prisma database access, Zod validation, or any backend refactoring. It applies to all Node.js microservice development.

What is BFRI and how do I use it?

Backend Feasibility & Risk Index scores features from -10 to +10 across five dimensions. Scores 6-10 are safe to proceed; 3-5 need tests and monitoring; 0-2 are risky and need refactoring; below 0 require redesign before coding.

Can I skip the service layer or put logic in routes?

No. Layered architecture is non-negotiable. Routes must only route, controllers must coordinate, and services must contain business logic. Skipping layers is an immediate rejection anti-pattern.

What happens if I use process.env directly?

Don't. All configuration must come from unifiedConfig. Direct process.env usage is an anti-pattern and violates the skill's core doctrine.

Are tests required?

Yes. Unit tests for services, integration tests for routes, and repository tests for complex queries are mandatory. No tests means no merge.

Full instructions (SKILL.md)

Source of truth, from sickn33/antigravity-awesome-skills.


name: backend-dev-guidelines description: "You are a senior backend engineer operating production-grade services under strict architectural and reliability constraints. Use when routes, controllers, services, repositories, express middleware, or prisma database access." risk: unknown source: community date_added: "2026-02-27"

Backend Development Guidelines

(Node.js · Express · TypeScript · Microservices)

You are a senior backend engineer operating production-grade services under strict architectural and reliability constraints.

Your goal is to build predictable, observable, and maintainable backend systems using:

  • Layered architecture
  • Explicit error boundaries
  • Strong typing and validation
  • Centralized configuration
  • First-class observability

This skill defines how backend code must be written, not merely suggestions.


1. Backend Feasibility & Risk Index (BFRI)

Before implementing or modifying a backend feature, assess feasibility.

BFRI Dimensions (1–5)

DimensionQuestion
Architectural FitDoes this follow routes → controllers → services → repositories?
Business Logic ComplexityHow complex is the domain logic?
Data RiskDoes this affect critical data paths or transactions?
Operational RiskDoes this impact auth, billing, messaging, or infra?
TestabilityCan this be reliably unit + integration tested?

Score Formula

BFRI = (Architectural Fit + Testability) − (Complexity + Data Risk + Operational Risk)

Range: -10 → +10

Interpretation

BFRIMeaningAction
6–10SafeProceed
3–5ModerateAdd tests + monitoring
0–2RiskyRefactor or isolate
< 0DangerousRedesign before coding

When to Use

Automatically applies when working on:

  • Routes, controllers, services, repositories
  • Express middleware
  • Prisma database access
  • Zod validation
  • Sentry error tracking
  • Configuration management
  • Backend refactors or migrations

2. Core Architecture Doctrine (Non-Negotiable)

1. Layered Architecture Is Mandatory

Routes → Controllers → Services → Repositories → Database
  • No layer skipping
  • No cross-layer leakage
  • Each layer has one responsibility

2. Routes Only Route

// ❌ NEVER
router.post('/create', async (req, res) => {
  await prisma.user.create(...);
});

// ✅ ALWAYS
router.post('/create', (req, res) =>
  userController.create(req, res)
);

Routes must contain zero business logic.


3. Controllers Coordinate, Services Decide

  • Controllers:

    • Parse request
    • Call services
    • Handle response formatting
    • Handle errors via BaseController
  • Services:

    • Contain business rules
    • Are framework-agnostic
    • Use DI
    • Are unit-testable

4. All Controllers Extend BaseController

export class UserController extends BaseController {
  async getUser(req: Request, res: Response): Promise<void> {
    try {
      const user = await this.userService.getById(req.params.id);
      this.handleSuccess(res, user);
    } catch (error) {
      this.handleError(error, res, 'getUser');
    }
  }
}

No raw res.json calls outside BaseController helpers.


5. All Errors Go to Sentry

catch (error) {
  Sentry.captureException(error);
  throw error;
}

console.log ❌ silent failures ❌ swallowed errors


6. unifiedConfig Is the Only Config Source

// ❌ NEVER
process.env.JWT_SECRET;

// ✅ ALWAYS
import { config } from '@/config/unifiedConfig';
config.auth.jwtSecret;

7. Validate All External Input with Zod

  • Request bodies
  • Query params
  • Route params
  • Webhook payloads
const schema = z.object({
  email: z.string().email(),
});

const input = schema.parse(req.body);

No validation = bug.


3. Directory Structure (Canonical)

src/
├── config/              # unifiedConfig
├── controllers/         # BaseController + controllers
├── services/            # Business logic
├── repositories/        # Prisma access
├── routes/              # Express routes
├── middleware/          # Auth, validation, errors
├── validators/          # Zod schemas
├── types/               # Shared types
├── utils/               # Helpers
├── tests/               # Unit + integration tests
├── instrument.ts        # Sentry (FIRST IMPORT)
├── app.ts               # Express app
└── server.ts            # HTTP server

4. Naming Conventions (Strict)

LayerConvention
ControllerPascalCaseController.ts
ServicecamelCaseService.ts
RepositoryPascalCaseRepository.ts
RoutescamelCaseRoutes.ts
ValidatorscamelCase.schema.ts

5. Dependency Injection Rules

  • Services receive dependencies via constructor
  • No importing repositories directly inside controllers
  • Enables mocking and testing
export class UserService {
  constructor(
    private readonly userRepository: UserRepository
  ) {}
}

6. Prisma & Repository Rules

  • Prisma client never used directly in controllers

  • Repositories:

    • Encapsulate queries
    • Handle transactions
    • Expose intent-based methods
await userRepository.findActiveUsers();

7. Async & Error Handling

asyncErrorWrapper Required

All async route handlers must be wrapped.

router.get(
  '/users',
  asyncErrorWrapper((req, res) =>
    controller.list(req, res)
  )
);

No unhandled promise rejections.


8. Observability & Monitoring

Required

  • Sentry error tracking
  • Sentry performance tracing
  • Structured logs (where applicable)

Every critical path must be observable.


9. Testing Discipline

Required Tests

  • Unit tests for services
  • Integration tests for routes
  • Repository tests for complex queries
describe('UserService', () => {
  it('creates a user', async () => {
    expect(user).toBeDefined();
  });
});

No tests → no merge.


10. Anti-Patterns (Immediate Rejection)

❌ Business logic in routes ❌ Skipping service layer ❌ Direct Prisma in controllers ❌ Missing validation ❌ process.env usage ❌ console.log instead of Sentry ❌ Untested business logic


11. Integration With Other Skills

  • frontend-dev-guidelines → API contract alignment
  • error-tracking → Sentry standards
  • database-verification → Schema correctness
  • analytics-tracking → Event pipelines
  • skill-developer → Skill governance

12. Operator Validation Checklist

Before finalizing backend work:

  • BFRI ≥ 3
  • Layered architecture respected
  • Input validated
  • Errors captured in Sentry
  • unifiedConfig used
  • Tests written
  • No anti-patterns present

13. Skill Status

Status: Stable · Enforceable · Production-grade Intended Use: Long-lived Node.js microservices with real traffic and real risk

When to Use

This skill is applicable to execute the workflow or actions described in the overview.

Limitations

  • Use this skill only when the task clearly matches the scope described above.
  • Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
  • Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.