server

server is a command for Claude Code from tranfu-labs/tranfu-skills. It costs 0 tokens per session (1,116 once invoked), scanned A, original, MIT.

A reference for Coolify commands that list, add, validate, and inspect servers. A server is the machine where deployed applications run.

In plain words
What is it for?
Use it to check the available servers, add a server with its network address and private key, validate the setup, and view server details.
Why use it?
It helps onboarding verify that the required server is configured and reachable before deployment work continues.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md).

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is ⚠️ **ad-hoc 速查**: 本文件是 CLI ad-hoc 速查(排障 / 临时操作用),reconcile flow 主链路不依赖;命令需要时手动跑。reconcile 主链路全走 HTTP API,见 [../scenarios/reconcile-deployment.md](../scenarios/r.

Good fit Use it to check the available servers, add a server with its network address and private key, validate the setup, and view server details.

Compare 6 commands 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/tranfu-labs/tranfu-skills
agentmods
npx agentmods add commands/tranfu-labs/tranfu-skills/server

Made for: Claude Code.

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 server

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

Your own site · 80×15
<a href="https://agentmods.dev/commands/tranfu-labs/tranfu-skills/server"><img src="https://agentmods.dev/badge/commands/tranfu-labs/tranfu-skills/server.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 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,116 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.00000 $0.01116
Opus 5 $0.00000 $0.00558
Sonnet 5 $0.00000 $0.00223
Haiku 4.5 $0.00000 $0.00112

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

Security

Grade A, and why

server 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 8d 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.

own-skills/tranfu-coolify-ops/commands/server.md · 84 lines

How it starts

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

⚠️ ad-hoc 速查: 本文件是 CLI ad-hoc 速查(排障 / 临时操作用),reconcile flow 主链路不依赖;命令需要时手动跑。reconcile 主链路全走 HTTP API,见 ../scenarios/reconcile-deployment.md../references/coolify-api-fields.md

server 命令参考

本文件覆盖 onboard 场景实际用到的 coolify server 子命令。其它子命令(domains / remove) 未来扩展时再追加。

参数表按原文 1:1。全局 flag(--context / --token / --format / --show-sensitive / --debug) 不再重复,见 conventions.md。所有命令在 onboard 场景里都必须显式带 --context="${context}"(见 SKILL.md「全局守则」),下面的示例都已带上。

本文件覆盖的命令:


coolify server list

列出 Coolify 上所有 server。无参数。

参数 类型 必填 默认 说明
(无)

onboard 场景用法(在 prerequisites.md Step B 断言只有一台 server):

SERVER_COUNT=$(coolify server list --context="${context}" --format json | jq 'length')
# 必须 == 1
SERVER_UUID=$(coolify server list --context="${context}" --format json | jq -r '.[0].uuid')

coolify server add <server-name> <ip-address> <private-key-uuid>

加一台新 server。本 skill 不直接调——只在 Step 0 终止文案里指引用户用此命令加 server。 加 server 涉及 SSH 私钥分发等手工动作,无法在 onboard 流程里自动完成。

参数 类型 必填 默认 说明
<server-name> string server 名(位置参数)
<ip-address> string server IP(位置参数)
<private-key-uuid> string 私钥 UUID(位置参数,先用 coolify private-key add 加)
--port (-p) integer 22 SSH 端口
--user (-u) string root SSH 用户
--validate boolean false 加完立即调 validate

终止文案模板(在 Step 0 server 数量 == 0 时用):

当前 context (${context}) 上没有任何 server。先用 coolify server add --context="${context}" <name> <ip> <private-key-uuid> 加一台, coolify server validate --context="${context}" <uuid> 验证通过后再跑这个流程。

Read the full file on GitHub · 84 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. 8d ago First seen · 84 lines · 0 tokens per session scan A ef91b255ea60

Subscribe to this mod's changes

server is a command published in the GitHub repository tranfu-labs/tranfu-skills (2 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,116 tokens. 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-09-03.