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.
Applies modular monolith with enforced internal boundaries. Use when teams want service-level autonomy without distributed system overhead.
$ npx -y skills add athola/claude-night-market --skill architecture-paradigm-modular-monolith --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/architecture-paradigm-modular-monolithContext preview
The summary Claude sees to decide when to auto-load this skill.
Applies modular monolith with enforced internal boundaries. Use when teams want service-level autonomy without distributed system overhead.
name: architecture-paradigm-modular-monolith description: Applies modular monolith with enforced internal boundaries. Use when teams want service-level autonomy without distributed system overhead. alwaysApply: false category: architectural-pattern tags: - architecture - modular-monolith - monolith - internal-boundaries - team-autonomy dependencies: [] tools: [] usage_patterns: - paradigm-implementation - monolith-modernization - team-scaling complexity: medium model_hint: standard estimated_tokens: 700
1. **Identify Modules**: Define module boundaries that align with distinct business capabilities or Bounded Contexts from Domain-Driven Design. 2. **Encapsulate Internals**: Use language-level visibility modifiers (e.g., public/private), separate packages, or namespaces to hide the implementation details of each module. 3. **Expose Public Contracts**: Each module should expose its functionality through well-defined facades, APIs, or events. Forbid direct database table access or direct implementation calls between modules. 4. **Enforce Architectural Fitness**: Implement automated tests that fail the build if forbidden dependencies or package references are introduced between modules. 5. **Plan for Evolution**: Continuously track metrics such as change coupling and deployment scope to make informed decisions about if and when to split a module into a separate service.
**Skill not loading** Check YAML frontmatter syntax and required fields
**Token limits exceeded** Use progressive disclosure - move details to modules
**Modules not found** Verify module paths in SKILL.md are correct
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.
states the conditions under which a module would be extracted into a separate service.
database table access between modules is absent (verified by schema ownership review).
least one such violation test case is documented.
pair with > 50% coupling is flagged as a candidate for boundary review.
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.