Microservices

Microservices is a skill for Claude Code, Codex from kok-o/koko-contextos-agents. It costs 10 tokens per session (978 once invoked), scanned A, original, MIT.

A guide to microservices, an architecture where an application is split into independently deployable services.

In plain words
What is it for?
Use it when designing or reviewing service-based systems, including decisions about REST or gRPC requests, asynchronous messages, databases, scaling, and team structure.
Why use it?
It helps teams decide when this architecture fits and provides rules for service boundaries, data ownership, APIs, deployment, and communication.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it when designing or reviewing service-based systems, including decisions about REST or gRPC requests, asynchronous messages, databases, scaling, and team structure.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kok-o/koko-contextos-agents/microservices
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add kok-o/koko-contextos-agents --skill microservices
Clone the repo
git clone --depth 1 https://github.com/kok-o/koko-contextos-agents

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for Microservices

README.md
[![agentmods](https://agentmods.dev/badge/skills/kok-o/koko-contextos-agents/microservices.svg)](https://agentmods.dev/skills/kok-o/koko-contextos-agents/microservices)
Your own site
<a href="https://agentmods.dev/skills/kok-o/koko-contextos-agents/microservices"><img src="https://agentmods.dev/badge/skills/kok-o/koko-contextos-agents/microservices.svg" alt="Measured on agentmods" height="20"></a>
Per session 10 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 978 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00010 $0.00978
Opus 5 $0.00005 $0.00489
Sonnet 5 $0.00002 $0.00196
Haiku 4.5 $0.00001 $0.00098

Measured 2d ago against content hash b4677076f390, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

Microservices scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/core/skills/microservices/SKILL.md · 165 lines

How it starts

The opening of the file, as written. The whole thing — 165 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Microservices

Overview

A brief summary of what the skill does and its core philosophy.

When to Use

Context for when this skill is applicable.

Rules & Patterns

Microservices — Architecture Guide

When to Use Microservices

Use when:

  • Team > 10 engineers working on the same product
  • Independent deployment of components is critical
  • Different components have different scaling needs
  • Different components need different tech stacks

Don't use when:

  • Small team (< 5 engineers)
  • MVP or prototype
  • No operational expertise (monitoring, tracing, deployment)
  • Tight coupling between components

Core Principles

1. Single Responsibility

Each service does ONE thing well.

2. Own Your Data

Each service has its own database. No shared databases.

3. API Contracts

Services communicate through well-defined APIs. Internal implementation is hidden.

4. Autonomous Deployment

Each service can be deployed independently.

Communication Patterns

Synchronous (REST/gRPC)

  • When: Request needs immediate response
  • Tools: REST (HTTP), gRPC (high-performance)
  • Risk: Cascading failures, latency accumulation

Asynchronous (Events/Messages)

  • When: Eventual consistency is acceptable
  • Tools: Kafka, RabbitMQ, Redis Streams, AWS SQS
  • Benefit: Loose coupling, resilience

Saga Pattern (Distributed Transactions)

Order Service → Payment Service → Inventory Service → Shipping Service
      ↓ (failure)
Compensating transactions reverse each step
  1. Choreography (Event-Driven): Each service emits events, downstream services listen and react. Best for simple flows (≤ 3 steps) where a central coordinator adds unnecessary coupling.
  2. Orchestration (State Machine): A dedicated Saga Orchestrator controls the flow and explicitly triggers compensating transactions on failure (e.g., RefundPayment, ReleaseInventoryReservation). Mandatory for complex multi-step workflows.

Read the full file on GitHub · 165 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago Changed · +9 lines b4677076f390
  2. 7d ago First seen · 156 lines · 10 tokens per session scan A 3a276150d282

Subscribe to this mod's changes

Microservices is a skill published in the GitHub repository kok-o/koko-contextos-agents (2 stars, last pushed 3d ago), licensed MIT. It adds 10 tokens to every session and 978 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

event_driven

Structure systems around asynchronous, event-based communication to decouple producers and consumers for improved scalability and resilience. Use when building loosely coupled systems with asynchronous message-based communication.

vuralserhat86/antigravity-agentic-skills · 36 tokens

cache_patterns

Instruction set for enabling and operating the Spring Cache abstraction in Spring Boot when implementing application-level caching for performance-sensitive workloads.

DonggangChen/antigravity-agentic-skills · 26 tokens

event_driven

Structure systems around asynchronous, event-based communication to decouple producers and consumers for improved scalability and resilience. Use when building loosely coupled systems with asynchronous message-based communication.

DonggangChen/antigravity-agentic-skills · 36 tokens

angular-http-client

Integrate HttpClient, Interceptors, and API interactions in Angular. Use when integrating HttpClient, writing interceptors, or handling API calls in Angular.

HoangNguyen0403/agent-skills-standard · 35 tokens

system-design-methodology

Drives an interactive system design session: classifies depth, elicits scale/SLO/consistency inputs, computes capacity, then reveals components one at a time with a constraint justification each. Use when designing a system or running a design session; defer diagrams to the diagramming skill.

HoangNguyen0403/agent-skills-standard · 62 tokens

system-design-case-catalog

Answer classic system design problems as constraint-to-solution sketches and coach interview practice: URL shortener, rate limiter, news feed, chat, notification, autocomplete, crawler, unique id. Use for interview practice or naming the closest known shape for a new problem.

HoangNguyen0403/agent-skills-standard · 58 tokens