一键导入
architecture-paradigm-client-server
// Applies client-server architecture for web/mobile apps. Use when designing systems with centralized backend services, trust boundaries, or offline-first sync.
// Applies client-server architecture for web/mobile apps. Use when designing systems with centralized backend services, trust boundaries, or offline-first sync.
Analyze and improve the improvement process. Use for detecting regressions and meta-optimization.
Review plugin quality with tiered checks and dependency scoping. Use for PR and pre-release audits.
Applies CQRS and Event Sourcing for read/write separation and audit trails. Use when designing systems with complex domain logic or full state-change history.
Applies event-driven async messaging to decouple producers and consumers. Use when designing real-time or multi-subscriber systems needing loose coupling.
Applies Functional Core, Imperative Shell to isolate logic from side effects. Use when business logic is entangled with I/O or unit tests are slow and brittle.
Applies hexagonal architecture isolating domain from infrastructure. Use when designing systems where testability and port/adapter separation are priorities.
| name | architecture-paradigm-client-server |
| description | Applies client-server architecture for web/mobile apps. Use when designing systems with centralized backend services, trust boundaries, or offline-first sync. |
| alwaysApply | false |
| category | architectural-pattern |
| tags | ["architecture","client-server","peer-to-peer","distributed-systems"] |
| dependencies | [] |
| tools | [] |
| usage_patterns | ["paradigm-implementation","distributed-system-design","offline-first"] |
| complexity | low |
| model_hint | fast |
| estimated_tokens | 600 |
Accept headers for content negotiation, or semantic versioning for APIs.These vocabulary items name the concrete tools and abstractions
that show up when the paradigm is implemented. They are not
required dependencies and they are not part of the skill's
tools: frontmatter (which is reserved for Claude Code tool
restrictions). Use this list to disambiguate during architecture
discussions.
api-contract-generator — produces machine-readable OpenAPI/RPC contracts the client and server sharenetworking-debugger — captures request/response traces for diagnosing latency, retries, and timeout issues