Claude-skill-registry backend-patterns

Apply backend patterns for server architecture, database interactions, and API structure. Use when designing backend systems. Not for frontend logic or simple scripts.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/backend-patterns-git-fg-meta-plugin-manager" ~/.claude/skills/majiayu000-claude-skill-registry-backend-patterns && rm -rf "$T"
manifest: skills/data/backend-patterns-git-fg-meta-plugin-manager/SKILL.md
source content

Backend Patterns

<mission_control> <objective>Apply backend architecture patterns for server design, database interactions, and API structure</objective> <success_criteria>Backend system follows established patterns for scalability, maintainability, and security</success_criteria> </mission_control>

<trigger>When designing server architecture, database interactions, or API structure. Not for: Frontend logic or simple scripts.</trigger>

<interaction_schema> ANALYZE REQUIREMENTS → SELECT PATTERN → IMPLEMENT → VALIDATE </interaction_schema>

Backend patterns for server architecture, database interactions, and API design.

Core Concept

Backend patterns provide proven solutions for common architectural challenges:

  • Server architecture: MVC, Layered architecture, Hexagonal (when justified)
  • Database interactions: Repository pattern, Unit of Work, Data Mapper
  • API structure: REST, GraphQL, RPC (select based on requirements)
  • Security: Authentication, authorization, input validation, output sanitization

Pattern Selection Matrix

RequirementRecommended PatternWhen to Use
Simple CRUD APIREST + MVCStandard web applications
Complex business logicLayered architectureDomain complexity requires isolation
Database abstractionRepository patternNeed testable data access layer
Real-time featuresWebSocket + EventsLive updates, notifications
High scalabilityMicroservices (justify)CLEAR team boundaries, independent deployment

Best Practices

  • Prefer simplicity over enterprise patterns when justified
  • Use repository pattern for testable database interactions
  • Implement proper error handling and logging
  • Validate all input and sanitize all output
  • Use environment variables for configuration
  • Implement proper authentication and authorization
  • Design APIs with clear versioning strategy
  • Use appropriate HTTP status codes
  • Implement rate limiting for public APIs

Dynamic Sourcing Protocol

<fetch_protocol> MANDATORY FETCH: Before designing REST APIs, fetch the content from:

CONDITIONAL FETCH: Fetch https://swagger.io/docs/specification/ only when documenting APIs with OpenAPI.

The local skill focuses on Seed System-specific backend patterns. </fetch_protocol>


Navigation

Official Documentation:

Local References:

If you need...Read...
Seed System REST patternsreferences/api-patterns.md
Database patternsreferences/database-patterns.md
Security patternsreferences/security-patterns.md

Absolute Constraints

<critical_constraint> MANDATORY: Validate all input at API boundaries MANDATORY: Sanitize all output to prevent injection attacks MANDATORY: Use repository pattern for database access (not inline queries) MANDATORY: Implement proper error handling with appropriate status codes MANDATORY: Use environment variables for sensitive configuration (never hardcode secrets) MANDATORY: Implement rate limiting for public APIs

NEVER expose database errors directly to clients NEVER trust client-side validation (server-side validation is mandatory) NEVER hardcode secrets or credentials in code

Choose patterns based on actual requirements, not theoretical future needs. Start simple, add complexity only when justified. </critical_constraint>


Genetic Code

This component carries essential Seed System principles for context: fork isolation:

<critical_constraint> MANDATORY: All components MUST be self-contained (zero .claude/rules dependency) MANDATORY: Achieve 80-95% autonomy (0-5 AskUserQuestion rounds per session) MANDATORY: Description MUST use What-When-Not format in third person MANDATORY: No component references another component by name in description MANDATORY: Progressive disclosure - references/ for detailed content MANDATORY: Use XML for control (mission_control, critical_constraint), Markdown for data No exceptions. Portability invariant must be maintained. </critical_constraint>

Delta Standard: Good Component = Expert Knowledge − What Claude Already Knows

Recognition Questions:

  • "Would Claude know this without being told?" → Delete (zero delta)
  • "Can this work standalone?" → Fix if no (non-self-sufficient)
  • "Did I read the actual file, or just see it in grep?" → Verify before claiming