microservices-patterns — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited microservices-patterns (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Any task involving microservice architecture, service decomposition, inter-service communication, distributed system design, or API contract definition between services.
#### Service boundary design (DDD)
Decomposition heuristics:
- Single Responsibility: one reason to change per service
- Team Ownership: one team owns one service (Conway's Law)
- Data Cohesion: entities that change together stay together
- Independent Deployability: releasing one never requires releasing another#### API contracts
#### Saga orchestration
Choreography (2-3 services, simple flows):
Service A -> emits Event -> Service B reacts -> emits Event -> Service C reacts
Each service owns its compensating action
Orchestration (4+ services, complex flows):
SagaCoordinator defines steps + compensations:
Step 1: InventoryService.reserve() | compensate: release()
Step 2: PaymentService.charge() | compensate: refund()
Step 3: OrderService.confirm() | compensate: cancel()#### Resilience patterns
Bulkhead: separate thread/connection pools per dependency
Circuit Breaker: Closed -> Open (5 failures/10s) -> Half-Open (probe after 30s)
Retry: exponential backoff + jitter, max 3 attempts, idempotent ops only
Timeout: every sync call has an explicit deadline (never infinite)#### Service mesh and discovery
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.