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.
npx agentmods add skills/rehiy/isrvd/docsnpx skills add rehiy/isrvd --skill docsgit clone --depth 1 https://github.com/rehiy/isrvdWrote 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.
[](https://agentmods.dev/skills/rehiy/isrvd/docs)<a href="https://agentmods.dev/skills/rehiy/isrvd/docs"><img src="https://agentmods.dev/badge/skills/rehiy/isrvd/docs.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00096 | $0.03905 |
| Opus 5 | $0.00048 | $0.01953 |
| Sonnet 5 | $0.00019 | $0.00781 |
| Haiku 4.5 | $0.00010 | $0.00391 |
Grade A, and why
isrvd-ops 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 today.
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.
**首选:Python 标准库版**(无 `curl`/`jq` 依赖) How it starts
The opening of the file, as written. The whole thing — 288 lines — stays where its author put it; the contents beside it link to each section on GitHub.
isrvd 运维 Skill
快速开始
推荐按 Python → Node.js 的顺序选择脚本;仅当 Python 和 Node.js 都不可用时,才使用 Bash 版兜底。三者共用 ~/.config/isrvd/profile.json。
脚本的 URL 参数必须填写从域名到 API 根路径的完整地址,例如 https://gateway.example.invalid/isrvd/api 或 https://gateway.example.invalid/isrvd/api/automation。不要只填写域名;业务路径仍使用 /docker/containers 这类以 / 开头的相对路径。默认认证方式是 Authorization: Bearer <API_TOKEN>;如果前置网关要求使用其他请求头,可设置 ISRVD_AUTH_HEADER,例如 ISRVD_AUTH_HEADER=token 会发送 token: <API_TOKEN>。
首选:Python 标准库版(无 curl/jq 依赖)
python3 ./scripts/api.py token "$API_ROOT" "$TOKEN"
python3 ./scripts/api.py get "/docker/containers"
python3 ./scripts/api.py post "/docker/container" '{"image":"...","name":"..."}'
备选:Node.js 内置库版(无 curl/jq 依赖)
node ./scripts/api.js token "$API_ROOT" "$TOKEN"
node ./scripts/api.js get "/docker/containers"
node ./scripts/api.js post "/docker/container" '{"image":"...","name":"..."}'
兜底兼容:Bash 版(仅当 python3 与 node 都不可用时使用;保留给旧文档中的 isrvd_get / source 交互式用法)
source ./scripts/api.sh
# 认证方式(优先使用环境变量,自动保存到 ~/.config/isrvd/profile.json)
isrvd_token "$API_ROOT" "$TOKEN"
# 或
isrvd_login "$API_ROOT" "$ISRVD_USERNAME" "$ISRVD_PASSWORD"
isrvd_get "/docker/containers"
isrvd_post "/docker/container" '{"image":"...","name":"..."}'
脚本默认提取统一响应中的 .payload;数组对象会自动转为紧凑表格,降低输出噪音。Python/Node 版支持简单 selector(如 .content、.username)。Bash 版只作为 Python/Node 都不可用时的兜底兼容方案。
⚠️ 操作规范(必须遵守):
- 禁止硬编码:不要假设任何 IP、端口、路径、容器名——全部通过 API 查询或环境变量获取
- 禁止 base64:不要用 base64 编码内容写入文件,使用
isrvd_put "/filer/file"或isrvd_upload - filer 路径 ≠ 宿主机路径:volume mount 的 hostPath 必须是宿主机真实路径,先通过 inspect isrvd 容器确认映射关系,见 references/system/filer.md
- 不要重复重建容器:静态文件更新直接写 filer 即可,容器无需重建;只有初次部署或更换镜像时才需要重建
文档索引
按使用场景查找对应文档:
What ships with it
31 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.
- references/agent.md 8.3 KB
- references/apisix/consumers.md 3.3 KB
- references/apisix/routes.md 2.1 KB
- references/apisix/ssl.md 1.4 KB
- references/apisix/upstreams.md 1.3 KB
- references/caddy/basic-auth.md 2.8 KB
- references/caddy/certs.md 3.8 KB
- references/caddy/config.md 4.1 KB
- references/caddy/routes.md 5.0 KB
- references/caddy/servers.md 4.0 KB
- references/compose.md 11 KB
- references/docker/containers.md 6.4 KB
- references/docker/images.md 2.8 KB
- references/docker/networks.md 788 B
- references/docker/registries.md 738 B
- references/docker/volumes.md 660 B
- references/overview.md 4.7 KB
- references/shell.md 2.4 KB
- references/ssh/hosts.md 4.3 KB
- references/ssh/sftp.md 2.0 KB
- references/swarm/info.md 1.3 KB
- references/swarm/services.md 3.0 KB
- references/swarm/tasks.md 649 B
- references/system/account.md 6.2 KB
- references/system/config.md 5.3 KB
- references/system/cron.md 6.2 KB
- references/system/filer.md 3.9 KB
- references/system/ssh.md 7.1 KB
- scripts/api.js 12 KB runs code
- scripts/api.py 12 KB runs code
- scripts/api.sh 13 KB runs code
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.
- today Changed 6e3a135ca802
- 5d ago First seen · 288 lines · 96 tokens per session scan A 71f6a9c20633
isrvd-ops is a skill published in the GitHub repository rehiy/isrvd (22 stars, last pushed yesterday), licensed Apache-2.0. It adds 96 tokens to every session and 3,905 once invoked, about $0.0005 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-30.
Other skills, from other repositories
ecspresso
ECS deployment tool - deploy, manage, and troubleshoot ECS services.
k8s-dev-deploy
Build, push, and deploy Kurtosis dev images to a Kubernetes cluster without creating a release. Rebuilds engine, core, and files-artifacts-expander as multi-arch Docker images with a unique tag, pushes to the logged-in user's Docker Hub, and restarts the engine. Use when testing local code changes on a k8s cluster.
infra-conventions
Infrastructure and deployment conventions. Auto-injected into devops-aware agents - not user-invocable.
coolify
Use when self-hosting apps and databases with Coolify on a VPS you own — install, first-admin lockdown, Git-to-deploy (Nixpacks/Dockerfile/compose), managed Postgres/Redis, scheduled S3 backups, domains + auto-SSL. NOT a PaaS someone else runs (that is railway), NOT sizing/hardening the box (that is hetzner), NOT…
epistemic-graph-troubleshooting
Diagnose and recover a live epistemic-graph engine (the AI-native database): engine down / socket refused, host-daemon crash-loop, circuit-breaker open, backend-type errors, zombie containers, duplicate Swarm tasks, slow first boot. Use when the KG is unreachable, ingestion stalls, go tools error, or a deploy left the…
kubernetes
· Write/review Kubernetes manifests, Helm, Kustomize, Gateway API, ArgoCD, sealed secrets. Triggers: 'kubernetes', 'k8s', 'helm', 'kubectl', 'kubernetes deployment', 'pod', 'ingress', 'gateway api'.