service-connectivity

service-connectivity is a skill for Claude Code from arjunprabhulal/devops-skills. It costs 118 tokens per session (1,302 once invoked), scanned A, original, MIT.

A guide to connecting software services reliably and securely. A service is one running software system that communicates with another, such as an application calling a database or API.

In plain words
What is it for?
Use it when designing service discovery, mutual TLS, timeouts, retries with circuit breakers, backpressure, or connections across hybrid and multi-cloud systems.
Why use it?
It addresses failures caused by missing timeouts, uncontrolled retries, overloaded dependencies, unverified identities, and unhealthy service instances.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the devops-skills plugin — 56 skills shipped together

Good fit Use it when designing service discovery, mutual TLS, timeouts, retries with circuit breakers, backpressure, or connections across hybrid and multi-cloud systems.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arjunprabhulal/devops-skills/service-connectivity
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 arjunprabhulal/devops-skills --skill service-connectivity
Clone the repo
git clone --depth 1 https://github.com/arjunprabhulal/devops-skills

Made for: Claude Code.

Or install devops-skills, the plugin that ships this one along with the rest of its 56 skills.

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 service-connectivity

README.md
[![agentmods](https://agentmods.dev/badge/skills/arjunprabhulal/devops-skills/service-connectivity/github.svg)](https://agentmods.dev/skills/arjunprabhulal/devops-skills/service-connectivity)
Your own site
<a href="https://agentmods.dev/skills/arjunprabhulal/devops-skills/service-connectivity"><img src="https://agentmods.dev/badge/skills/arjunprabhulal/devops-skills/service-connectivity/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 service-connectivity

Your own site · 80×15
<a href="https://agentmods.dev/skills/arjunprabhulal/devops-skills/service-connectivity"><img src="https://agentmods.dev/badge/skills/arjunprabhulal/devops-skills/service-connectivity.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 118 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,302 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.00118 $0.01302
Opus 5 $0.00059 $0.00651
Sonnet 5 $0.00024 $0.00260
Haiku 4.5 $0.00012 $0.00130

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

Security

Grade A, and why

service-connectivity 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 9d 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.

skills/networking/service-connectivity/SKILL.md · 107 lines

How it starts

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

Service Connectivity

Every call one service makes to another is a bet that the other side is up, fast, and honest about its identity. Distributed systems fail at the seams between services far more often than inside any single one — a slow dependency without a timeout, a retry storm without backoff, or a connection that was never actually authenticated all turn a local problem into a cascading one.

Design connectivity assuming the other side will eventually be slow, wrong, or absent — because over enough time, it will be. A call without a timeout is a promise to wait forever, and nothing downstream should ever make that promise.

1. Make service discovery answer "is this instance actually healthy," not just "does it exist"

Discovery mechanisms (DNS-based, a registry, or a mesh control plane) that only track which instances exist — without incorporating readiness — will happily hand out an address for an instance that's up but not ready to serve. Discovery and health need to be the same signal, or a caller ends up needing its own separate health check on top, which most callers skip.

  • Prefer discovery that's health-aware by construction (e.g., a mesh or orchestrator that removes not-ready instances from the result set) over a static list plus a hope.
  • In Kubernetes, this is exactly the Service/Endpoints readiness relationship — see kubernetes-networking for that mechanism specifically.

Done when: a caller resolving a dependency only ever gets instances that are actually ready to serve.

2. Set timeouts before retries, and retries before circuit breakers

These three exist in a dependency order: a timeout bounds how long one call can hang, a retry policy decides what to do about the failures a timeout produces, and a circuit breaker stops retrying a dependency that's clearly down instead of hammering it. Configuring retries without a timeout, or a circuit breaker without sane retries underneath, just moves the failure mode instead of fixing it.

Read the full file on GitHub · 107 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. 9d ago First seen · 107 lines · 118 tokens per session scan A 695b2db0faad

Subscribe to this mod's changes

service-connectivity is a skill published in the GitHub repository arjunprabhulal/devops-skills (3 stars, last pushed 15d ago), licensed MIT. It adds 118 tokens to every session and 1,302 once invoked, about $0.0006 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

gemini-interactions-api

Guides the usage of Gemini Interactions API on Gemini Enterprise Agent Platform. Use when the user wants to use the stateful, server-managed Interactions API for multi-turn conversations, background execution, streaming, structured output, and function calling on the Agent Platform.

google/skills · 58 tokens

google-cloud-solution-n-tier-serverless-web-app

Assists in designing and implementing secure n-tier serverless web applications and microservices on Google Cloud. Use when users need architecture designs, security checklists, Terraform code, or deployment guidance for multi-tier serverless apps, regional data residency / European sovereignty compliance, zero-trust…

google/skills · 91 tokens

dpop-adoption

Implement and debug OAuth 2.0 DPoP (RFC 9449) refresh token sender-constraining for WebCrypto, Node.js ES6, and browser runtimes integrating with Google's OAuth platform. Use when configuring non-extractable asymmetric key pairs (P-256), generating DPoP Proof JWTs for authorization code exchange and token refresh, or…

google/skills · 129 tokens

data-manager-api-event-ingestion

Guides developers through implementing event and conversion ingestion to Google products using the Data Manager API /v1/events/ingest endpoint and its associated client libraries. Use this skill when the user wants to upload offline conversions, enhanced conversions for leads, click conversions, Google Analytics web…

google/skills · 97 tokens

data-manager-api-audience-ingestion

Guides developers through managing (adding, removing, and clearing) audience members for Google products using the Data Manager API and its associated client libraries. Use this skill when the user wants to upload audience members, remove specific users, or clear/replace an entire audience for Customer Match, mobile…

google/skills · 100 tokens

google-cloud-global-frontend-configuration

Guides agents through a 6-step discovery process to design and deploy Google Cloud global external Application Load Balancers with Cloud CDN, Cloud Armor, and Service Extensions, mapping workload requirements to best-practice configurations. Use when: Designing, configuring, or deploying a Google Cloud global external…

google/skills · 203 tokens