claude-code-plugin-ref…
Explain plugin, skill, command, agent, and hook mechanics used here. Use when authoring or debugging plugins. Do not use for ops; use night-market-operations.
Selects and routes to the right architecture paradigm. Use when choosing patterns for a new system or comparing trade-offs before making architecture decisions.
$ npx -y skills add athola/claude-night-market --skill architecture-paradigms --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/architecture-paradigmsContext preview
The summary Claude sees to decide when to auto-load this skill.
Selects and routes to the right architecture paradigm. Use when choosing patterns for a new system or comparing trade-offs before making architecture decisions.
name: architecture-paradigms description: Selects and routes to the right architecture paradigm. Use when choosing patterns for a new system or comparing trade-offs before making architecture decisions. alwaysApply: false category: architecture-decision tags: - architecture - patterns - selection - implementation - adr dependencies: - architecture-paradigm-functional-core - architecture-paradigm-hexagonal - architecture-paradigm-domain-driven - architecture-paradigm-cqrs-es - architecture-paradigm-event-driven - architecture-paradigm-layered - architecture-paradigm-modular-monolith - architecture-paradigm-microkernel - architecture-paradigm-microservices - architecture-paradigm-service-based - architecture-paradigm-space-based - architecture-paradigm-pipeline - architecture-paradigm-serverless - architecture-paradigm-client-server tools: [] usage_patterns: - paradigm-selection - architecture-review - implementation-planning - adr-creation complexity: intermediate model_hint: standard estimated_tokens: 280
`pensive:architecture-review`)
This skill helps you **select** the right architecture paradigm(s) for your system, then **routes** you to the specific paradigm skill for implementation details.
Match your needs to the recommended paradigm:
| Your Scenario | Primary Paradigm | Load Skill | |---------------|------------------|------------| | **Enterprise app with multiple teams** | Microservices or Modular Monolith | `architecture-paradigm-microservices` or `architecture-paradigm-modular-monolith` | | **Complex business rules & testing** | Functional Core, Imperative Shell | `architecture-paradigm-functional-core` | | **Real-time/event processing** | Event-Driven Architecture | `architecture-paradigm-event-driven` | | **Legacy system modernization** | Hexagonal (Ports & Adapters) | `architecture-paradigm-hexagonal` | | **Cloud-native/bursty workloads** | Serverless | `architecture-paradigm-serverless` | | **ETL/data processing pipeline** | Pipeline Architecture | `architecture-paradigm-pipeline` | | **Simple CRUD app** | Layered Architecture | `architecture-paradigm-layered` | | **Command/query separation** | CQRS and Event Sourcing | `architecture-paradigm-cqrs-es` | | **Rich business rules to model** | Domain-Driven Design | `architecture-paradigm-domain-driven` |
**One of these is not like the others.** Domain-Driven Design answers "what are the concepts and what do we call them." The rest answer "where does the code go." DDD composes with a structural paradigm (commonly layered, hexagonal, or modular monolith) rather than competing with it, so selecting it does not mean deselecting one of the others.
**Primary Concerns** (select all that apply):
**System Context**:
Based on your needs from Step 1, review these options:
**For Testability & Business Logic**
**For Team Autonomy**
**For Infrastructure Flexibility**
**For Simplicity & Maintainability**
**For Rich Business Rules**
own language. Pair it with whichever structural paradigm you picked above; it does not replace one. Skip it when the domain is CRUD over a form, where the model would just be the schema under a new name.
**For Real-time Event Processing**
**For Legacy Integration**
Once you've selected your paradigm(s), load the specific skill for detailed guidance:
# Example: You selected Hexagonal Architecture Skill(archetypes:architecture-paradigm-hexagonal)
The individual paradigm skill provides:
| Paradigm |
A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
Explain plugin, skill, command, agent, and hook mechanics used here. Use when authoring or debugging plugins. Do not use for ops; use night-market-operations.
States load-bearing decisions, invariants, and weak points. Use when judging a design change. Do not use for gating; use night-market-change-control.
Rebuild the dev environment: uv, Python tiers, pins, traps. Use when onboarding or toolchain breaks. Do not use for daily commands; use night-market-operations.
Classify, gate, and review changes. Use when landing a PR, releasing, or amending rules. Do not use for failure triage; use night-market-debugging-playbook.
Search and record project memory (Discussions, journal, ADRs). Use before re-investigating anything. Do not use for settled battles; see failure-archaeology.
Bind loop 'done' to unfakeable gates. Use to harden egregore/herald loops or promote completion_integrity. Not for QA gates; use night-market-validation-and-qa.