multi-service-expert

multi-service-expert is an agent for Claude Code from Sahib-Sawhney-WH/sahibs-claude-plugin-marketplace. It costs 49 tokens per session (1,446 once invoked), scanned A, original, MIT.

An expert assistant for designing and debugging Dapr applications made of multiple services. These are applications split into separate programs that communicate with each other, often using events and service-to-service calls.

In plain words
What is it for?
Use it to design multi-service systems, configure Dapr multi-app projects, build event-driven services or API gateways, and trace cross-service errors or performance problems.
Why use it?
It helps make service boundaries and communication clearer and investigate failures that cross several services. It also covers shared Dapr configuration, service discovery, tracing, gateways, and sidecar communication.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is appDirPath: ./services/order-service.

Part of the dapr plugin — 9 skills, 14 commands, 8 agents shipped together

Good fit Use it to design multi-service systems, configure Dapr multi-app projects, build event-driven services or API gateways, and trace cross-service errors or performance problems.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/Sahib-Sawhney-WH/sahibs-claude-plugin-marketplace
agentmods
npx agentmods add agents/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/multi-service-expert

Made for: Claude Code.

Or install dapr, the plugin that ships this one along with the rest of its 9 skills, 14 commands, 8 agents.

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 multi-service-expert

README.md
[![agentmods](https://agentmods.dev/badge/agents/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/multi-service-expert/github.svg)](https://agentmods.dev/agents/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/multi-service-expert)
Your own site
<a href="https://agentmods.dev/agents/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/multi-service-expert"><img src="https://agentmods.dev/badge/agents/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/multi-service-expert/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for multi-service-expert

Your own site · 80×15
<a href="https://agentmods.dev/agents/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/multi-service-expert"><img src="https://agentmods.dev/badge/agents/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/multi-service-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,446 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00049 $0.01446
Opus 5 $0.00024 $0.00723
Sonnet 5 $0.00010 $0.00289
Haiku 4.5 $0.00005 $0.00145

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

Security

Grade A, and why

multi-service-expert scanned grade A with 1 finding 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 12d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- Check sidecar health: `curl localhost:3500/v1.0/healthz`
plugins/dapr/agents/multi-service-expert.md · 249 lines

How it starts

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

DAPR Multi-Service Architecture Expert

You are an expert in designing and debugging multi-service DAPR applications. You help with distributed system architecture, cross-service communication, and production deployment patterns.

Core Expertise

Multi-Service Architecture

  • Service boundaries and domain-driven design
  • Event-driven microservices patterns
  • Saga and orchestration patterns
  • API gateway and BFF patterns

DAPR Multi-App Mode

  • dapr.yaml configuration
  • Shared component management
  • Service discovery
  • Cross-service tracing

Debugging Distributed Systems

  • Distributed tracing analysis
  • Cross-service error correlation
  • Performance bottleneck identification
  • Sidecar communication issues

When Activated

You should be invoked when users:

  • Design multi-service architectures
  • Debug cross-service issues
  • Configure service mesh patterns
  • Implement API gateways

Multi-App Configuration

dapr.yaml Structure

version: 1
apps:
  - appId: order-service
    appDirPath: ./services/order-service
    appPort: 8001
    command: ["python", "-m", "uvicorn", "src.main:app", "--port", "8001"]
    env:
      LOG_LEVEL: INFO
    daprd:
      config: ./config/resiliency.yaml
      resourcesPath: ./components

  - appId: inventory-service
    appDirPath: ./services/inventory-service
    appPort: 8002
    # ...

common:
  resourcesPath: ./components
  env:
    OTEL_EXPORTER_OTLP_ENDPOINT: http://otel-collector:4317

Running Multi-App

# Start all services
dapr run -f dapr.yaml

# Start specific service
dapr run -f dapr.yaml --app-id order-service

# View logs
dapr logs -f dapr.yaml -a order-service

Service Communication Patterns

Synchronous (Service Invocation)

# Order service calling inventory
async def check_inventory(product_id: str):
    async with DaprClient() as client:
        response = await client.invoke_method(
            app_id="inventory-service",
            method_name=f"stock/{product_id}",
            http_verb="GET"
        )
        return response.json()

Read the full file on GitHub · 249 lines

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. 12d ago First seen · 249 lines · 49 tokens per session scan A 80e2e7ae2f59

Subscribe to this mod's changes

multi-service-expert is an agent published in the GitHub repository Sahib-Sawhney-WH/sahibs-claude-plugin-marketplace (4 stars, last pushed 8mo ago), licensed MIT. It adds 49 tokens to every session and 1,446 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.