architecture-paradigm-microservices
Apply microservices for independent deployment and per-service scaling
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/athola/nm-archetypes-architecture-paradigm-microservicesNight Market Skill — ported from claude-night-market/archetypes. For the full experience with agents, hooks, and commands, install the Claude Code plugin.
Table of Contents
- When to Employ This Paradigm
- When NOT to Use This Paradigm
- Adoption Steps
- Key Deliverables
- Technology Guidance
- Risks & Mitigations
- Troubleshooting
The Microservices Architecture Paradigm
When to Employ This Paradigm
- When the organizational structure requires high levels of team autonomy and independent release cycles.
- When different business capabilities (bounded contexts) have distinct scaling requirements or would benefit from different technology stacks.
- When there is a significant organizational commitment to investing in DevOps and SRE maturity, including advanced observability, CI/CD, and incident response capabilities.
When NOT To Use This Paradigm
- When team size is small and organizational complexity is low
- When lack of DevOps maturity or limited platform engineering resources
- When system requires strong transactional consistency across operations
- When early-stage startup with rapidly evolving requirements
- When regulatory constraints make distributed data management challenging
Adoption Steps
- Define Bounded Contexts: Map each microservice to a clear business capability and establish unambiguous data ownership.
- validate Service Data Autonomy: Each service must own and control its own database or persistence mechanism. All data sharing between services must occur via APIs or events, not shared tables.
- Build a production-grade Platform: Before deploying services, establish foundational infrastructure for service discovery, distributed tracing, centralized logging, CI/CD templates, and automated contract testing.
- Design for Resilience: Implement resilience patterns such as timeouts, retries, circuit breakers, and bulkheads for all inter-service communication. Formally document Service Level Indicators (SLIs) and Objectives (SLOs).
- Automate Governance: Implement automated processes to enforce security scanning, dependency management policies, and consistent versioning strategies across all services.
Key Deliverables
- An Architecture Decision Record (ADR) cataloging all service boundaries, their corresponding data stores, and their communication patterns (e.g., synchronous API vs. asynchronous events).
- A set of "golden path" templates and runbooks for creating and operating new services on the platform.
- A detailed testing strategy that includes unit, contract, integration, and chaos/resilience tests.
Technology Guidance
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-athola-nm-archetypes-architecture-paradigm-microservices": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
extract
Analyze a codebase and build a knowledge base of business logic, architecture, data flow, and engineering patterns. The foundation for gauntlet challenges and agent integration
discourse
>- Scan community discussion channels (HN, Lobsters, Reddit, tech blogs) for experience reports and opinions on a topic
synthesize
>- Merge, deduplicate, rank, and format research findings from multiple channels into a coherent report. Use after research agents return their results
workflow-monitor
Detect workflow failures and inefficient patterns, then create GitHub issues for improvement via /fix-workflow
architecture-paradigm-hexagonal
Hexagonal (Ports and Adapters) architecture isolating domain logic from infrastructure