一键导入
backend-patterns
Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Web取得の標準前処理レイヤー。URL・公式ドキュメント・ブログ・ニュース・OSSページを読むときは、原則として毎回このSkillでDefuddleを使い本文をMarkdown/JSON化してから読む。生HTMLのまま要約・分析・比較・レビューしない。トリガー例: URLを読む/Webページ要約/OSS調査/公式Doc確認/記事解析/競合サイト確認/Web一次情報確認。
Formal evaluation framework for Claude Code sessions implementing eval-driven development (EDD) principles.
Frontend development patterns for React, Next.js, state management, performance optimization, and UI best practices.
Example project-specific skill template. Use as a starting point when creating guidelines for your own projects.
Practical prompt patterns and techniques for effective Claude Code usage. Reference when crafting prompts, planning workflows, or debugging interactions.
Use this skill when the user explicitly asks for TDD or a tests-first workflow, or when developing a new feature with a test coverage requirement. Provides a structured red-green-refactor workflow with unit, integration, and E2E test guidance.
| name | backend-patterns |
| description | Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes. |
| when_to_use | Use when the user is designing or refactoring APIs, service layers, database access, or backend architecture in Node.js or Next.js projects. |
Backend architecture patterns and best practices for scalable server-side applications.
RESTful structure, Repository pattern, Service layer, Middleware pattern. See references/api-patterns.md for implementations.
Query optimization, N+1 prevention, transactions, Redis cache-aside pattern. See references/database-caching.md for implementations.
Centralized error handler, retry with backoff, JWT/RBAC, rate limiting, job queues, structured logging. See references/error-auth-infra.md for implementations.
| Need | Pattern |
|---|---|
| Data access abstraction | Repository pattern |
| Business logic isolation | Service layer |
| Auth/logging/validation | Middleware pattern |
| Expensive DB queries | Cache-aside (Redis) |
| N+1 query problem | Batch fetch with Map |
| Atomic multi-table writes | Database transactions |
| Unreliable external APIs | Retry with exponential backoff |
| Abuse prevention | Rate limiter (in-memory or Redis) |
| Non-blocking operations | Job queue |
Remember: Choose patterns that fit your complexity level. Not every project needs every pattern.