fullstack-backend-master
Master-level fullstack software engineering with deep backend expertise. Use when building production-grade APIs, database architectures, authentication systems, microservices, or any backend-heavy application. Triggers on: (1) API design and implementation, (2) Database schema design and optimization, (3) Authentication/authorization systems, (4) System architecture decisions, (5) Performance optimization, (6) Error handling and logging, (7) Testing strategies, (8) DevOps and deployment, (9) Security hardening.
Best use case
fullstack-backend-master is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Master-level fullstack software engineering with deep backend expertise. Use when building production-grade APIs, database architectures, authentication systems, microservices, or any backend-heavy application. Triggers on: (1) API design and implementation, (2) Database schema design and optimization, (3) Authentication/authorization systems, (4) System architecture decisions, (5) Performance optimization, (6) Error handling and logging, (7) Testing strategies, (8) DevOps and deployment, (9) Security hardening.
Teams using fullstack-backend-master should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/fullstack-backend-master/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How fullstack-backend-master Compares
| Feature / Agent | fullstack-backend-master | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Master-level fullstack software engineering with deep backend expertise. Use when building production-grade APIs, database architectures, authentication systems, microservices, or any backend-heavy application. Triggers on: (1) API design and implementation, (2) Database schema design and optimization, (3) Authentication/authorization systems, (4) System architecture decisions, (5) Performance optimization, (6) Error handling and logging, (7) Testing strategies, (8) DevOps and deployment, (9) Security hardening.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Fullstack Backend Master
Expert-level guidance for building robust, scalable, production-ready backend systems.
## Core Philosophy
**Build for the unhappy path first.** Errors, edge cases, and failures define production quality.
**Optimize for debuggability.** Structured logging, correlation IDs, and clear error messages save hours.
**Security is non-negotiable.** Input validation, parameterized queries, and principle of least privilege always.
## API Design
### REST Conventions
```
GET /resources → List (paginated)
GET /resources/:id → Get one
POST /resources → Create
PUT /resources/:id → Full update
PATCH /resources/:id → Partial update
DELETE /resources/:id → Delete
# Nested resources
GET /users/:userId/posts
POST /users/:userId/posts
# Actions (when CRUD doesn't fit)
POST /orders/:id/cancel
POST /users/:id/verify-email
```
### Response Structure
```json
// Success
{
"data": { ... },
"meta": { "page": 1, "total": 100 }
}
// Error
{
"error": {
"code": "VALIDATION_ERROR",
"message": "Email is required",
"details": [{ "field": "email", "issue": "required" }]
}
}
```
### Status Codes
| Code | Use Case |
|------|----------|
| 200 | Success with body |
| 201 | Created (return created resource) |
| 204 | Success, no content (DELETE) |
| 400 | Validation error (client's fault) |
| 401 | Not authenticated |
| 403 | Authenticated but not authorized |
| 404 | Resource not found |
| 409 | Conflict (duplicate, state conflict) |
| 422 | Unprocessable (valid JSON, invalid semantics) |
| 429 | Rate limited |
| 500 | Server error (never expose stack traces) |
## Database Design
### Schema Principles
1. **Always include audit columns**: `created_at`, `updated_at`, `deleted_at` (soft delete)
2. **UUID vs Integer IDs**: UUIDs for distributed systems, integers for simplicity
3. **Normalize first, denormalize for performance**: Start with 3NF, add caching/denormalization when measured
4. **Index strategically**: Index foreign keys, frequently queried columns, composite indexes for multi-column WHERE
### Migration Patterns
```sql
-- Always reversible migrations
-- UP
ALTER TABLE users ADD COLUMN phone VARCHAR(20);
-- DOWN
ALTER TABLE users DROP COLUMN phone;
```
### Query Optimization
- Use `EXPLAIN ANALYZE` before production
- Avoid `SELECT *` in application code
- Use connection pooling (pgbouncer, HikariCP)
- Implement pagination with cursor-based (keyset) for large datasets
## Authentication & Authorization
### Token Strategy
```
Access Token: Short-lived (15-60 min), stateless JWT
Refresh Token: Long-lived (7-30 days), stored server-side, rotatable
```
### JWT Best Practices
- Sign with RS256 (asymmetric) for microservices, HS256 for monoliths
- Include: `sub`, `exp`, `iat`, `iss`, roles/permissions
- Never include: passwords, PII, sensitive data
- Validate: signature, expiry, issuer, audience
### Authorization Patterns
```typescript
// Role-Based Access Control (RBAC)
interface Permission {
resource: string; // "posts"
action: string; // "create" | "read" | "update" | "delete"
}
// Attribute-Based Access Control (ABAC) - for complex rules
canEdit = (user.id === resource.ownerId) || user.roles.includes('admin');
```
## Error Handling
### Layered Error Strategy
```typescript
// 1. Domain errors (business logic)
class InsufficientFundsError extends DomainError {
constructor(public available: number, public requested: number) {
super(`Insufficient funds: ${available} < ${requested}`);
}
}
// 2. Application errors (mapped to HTTP)
class NotFoundError extends ApplicationError {
statusCode = 404;
}
// 3. Global error handler
app.use((err, req, res, next) => {
logger.error({ err, requestId: req.id, path: req.path });
if (err instanceof ApplicationError) {
return res.status(err.statusCode).json({ error: err.toJSON() });
}
// Never expose internal errors
res.status(500).json({ error: { code: 'INTERNAL_ERROR', message: 'Something went wrong' } });
});
```
## Logging & Observability
### Structured Logging
```typescript
// Always structured, never string concatenation
logger.info({
event: 'order_created',
orderId: order.id,
userId: user.id,
amount: order.total,
duration: Date.now() - startTime
});
// Correlation ID for request tracing
const requestId = req.headers['x-request-id'] || uuid();
logger.child({ requestId });
```
### Key Metrics
- **Latency**: p50, p95, p99 response times
- **Error rate**: 5xx / total requests
- **Throughput**: requests/second
- **Saturation**: CPU, memory, DB connections
## Security Checklist
| Category | Requirement |
|----------|-------------|
| Input | Validate & sanitize all input (zod, joi) |
| SQL | Parameterized queries ONLY, never string concat |
| Auth | Hash passwords (bcrypt/argon2, cost ≥ 10) |
| HTTPS | TLS 1.2+ everywhere, HSTS headers |
| Headers | CSP, X-Frame-Options, X-Content-Type-Options |
| Secrets | Environment variables, never in code |
| Rate Limit | All endpoints, stricter on auth endpoints |
| CORS | Whitelist specific origins, never `*` in prod |
## Testing Strategy
### Test Pyramid
```
/\
/ \ E2E (few, slow, high confidence)
/----\
/ \ Integration (API, DB, external services)
/--------\
/ \ Unit (many, fast, isolated)
/--------------\
```
### Backend Test Patterns
```typescript
// Unit: Pure functions, business logic
test('calculateDiscount applies 10% for orders over $100', () => {
expect(calculateDiscount({ total: 150 })).toBe(15);
});
// Integration: Real DB, mocked external services
test('POST /orders creates order in database', async () => {
const res = await request(app).post('/orders').send(orderData);
expect(res.status).toBe(201);
const order = await db.orders.findById(res.body.data.id);
expect(order.total).toBe(orderData.total);
});
```
## Performance Patterns
### Caching Layers
1. **Application cache**: In-memory (Redis) for hot data
2. **Database cache**: Query result caching, materialized views
3. **HTTP cache**: ETags, Cache-Control headers
### Async Processing
```typescript
// Offload slow operations to queue
await queue.add('send-email', { to: user.email, template: 'welcome' });
await queue.add('generate-report', { reportId }, { delay: 5000 });
// Process in workers
queue.process('send-email', async (job) => {
await emailService.send(job.data);
});
```
### Database Connection Pooling
```typescript
// Node.js example
const pool = new Pool({
max: 20, // Max connections
idleTimeoutMillis: 30000,
connectionTimeoutMillis: 2000,
});
```
## Architecture Patterns
### Monolith First
Start monolithic, extract services ONLY when:
- Team size requires independent deployability
- Specific component has vastly different scaling needs
- Clear bounded context with minimal cross-service calls
### Service Communication
| Pattern | Use Case |
|---------|----------|
| REST/HTTP | Synchronous, simple CRUD |
| gRPC | High-performance, internal services |
| Message Queue | Async, decoupled, retry-able |
| Event Sourcing | Audit trail, complex state |
## File Organization
```
src/
├── api/
│ ├── routes/ # Route definitions
│ ├── controllers/ # Request handling
│ ├── middleware/ # Auth, validation, logging
│ └── validators/ # Request validation schemas
├── services/ # Business logic
├── repositories/ # Data access layer
├── models/ # Database models/entities
├── utils/ # Shared utilities
├── config/ # Environment config
└── types/ # TypeScript types
tests/
├── unit/
├── integration/
└── fixtures/
```
## Quick References
- **Database optimization**: See `references/database-patterns.md`
- **Auth implementation**: See `references/auth-patterns.md`
- **Deployment checklist**: See `references/deployment.md`Related Skills
fullstack
Use this skill when building web applications, React components, Next.js apps, APIs, databases, or doing rapid prototyping. Activates on mentions of React, Next.js, TypeScript, Node.js, Express, Fastify, PostgreSQL, MongoDB, Prisma, Drizzle, tRPC, REST API, GraphQL, authentication, server components, client components, SSR, SSG, ISR, or general web development.
fullstack-validation
Comprehensive validation methodology for multi-component applications including backend, frontend, database, and infrastructure
fullstack-template-generator
Generates a complete fullstack application template with Python FastAPI backend and React Vite frontend. Includes OpenAI ChatGPT integration, CORS configuration, comprehensive error handling, and a modern Tailwind CSS + shadcn/ui React UI. Use this skill when the user wants to bootstrap a new fullstack web application project with both API backend and web frontend components ready to go.
fullstack-mirror-arch
풀스택 미러 아키텍처 규칙. BE↔FE 1:1 타입 동기화, 레이어 의존 규칙, barrel re-export, API 클라이언트 패턴, 상태관리 분리 규칙을 적용. 풀스택 프로젝트 설계 시 사용.
fullstack-guardian
Use when implementing features across frontend and backend, building APIs with UI, or creating end-to-end data flows. Invoke for feature implementation, API development, UI building, cross-stack work.
fullstack-expertise
Full-stack development expertise covering backend, frontend, database, DevOps, and testing domains
Fullstack Developer
End-to-end feature expert specializing in frontend-backend integration, system architecture, and complete application development
fullstack-dev
Comprehensive fullstack development skill combining architecture, testing, security, DevOps, and code quality best practices for building modern web applications from frontend to backend.
frontend_mastery
Advanced React patterns, performance optimization, and state management rules.
frontend-master
Frontend Master - 大师级前端页面开发。智能分析项目技术栈,生成独特设计美感的 UI,避免'AI审美'。自动持久化设计规范,保持项目一致性。整合 Frontend-Design 设计哲学 + UI-UX Pro Max 设计数据库。触发词: 前端、页面、组件、UI、登录页、落地页、dashboard、表单、卡片、导航栏。
fastapi-sqlmodel-arq-backend
构建或改造基于 FastAPI + SQLModel(异步 SQLAlchemy) + Arq + Redis 的后端系统。用于新增/重构 RESTful API、实现异步数据库访问、编写服务层与依赖注入、配置 OAuth2 + JWT(Argon2) 认证、生成 Alembic 迁移建议、统一 loguru 日志规范等后端任务;不用于纯前端页面样式开发或仅做 OpenAPI 客户端同步的任务。
faion-backend-systems
Systems backends: Go, Rust, databases, caching.