microservices-design

Microservices design patterns including service mesh, event-driven architecture, saga pattern, and API gateway

Content Preview
---
name: microservices-design
description: Microservices design patterns including service mesh, event-driven architecture, saga pattern, and API gateway
---

# Microservices Design

## Service Boundaries

Define services around business capabilities, not technical layers. Each service owns its data store and exposes a clear API contract.

```
order-service/       -> owns orders table, publishes OrderCreated events
inventory-service/   -> owns inventory table, subscribes to OrderCreated
payment
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/microservices-design.md \
  https://raw.githubusercontent.com/rohitg00/awesome-claude-code-toolkit/main/skills/microservices-design/SKILL.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/rohitg00/awesome-claude-code-toolkit

Then reference at skills/microservices-design/SKILL.md

Related Skills