application-crud

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

A command reference for creating and managing Coolify applications connected to private GitHub repositories. It covers application records, deployment settings, and common API errors.

In plain words
What is it for?
It is for listing applications, creating Docker Compose applications through a GitHub App, and checking project, server, and deployment identifiers.
Why use it?
It gives repeatable commands for finding, creating, and inspecting applications while keeping API tokens out of command text.

Command for Claude Code

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

Good fit It is for listing applications, creating Docker Compose applications through a GitHub App, and checking project, server, and deployment identifiers.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/tranfu-labs/tranfu-skills/application-crud
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.

Clone the repo
git clone --depth 1 https://github.com/tranfu-labs/tranfu-skills

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 application-crud

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

Your own site · 80×15
<a href="https://agentmods.dev/commands/tranfu-labs/tranfu-skills/application-crud"><img src="https://agentmods.dev/badge/commands/tranfu-labs/tranfu-skills/application-crud.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 2,171 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.00000 $0.02171
Opus 5 $0.00000 $0.01086
Sonnet 5 $0.00000 $0.00434
Haiku 4.5 $0.00000 $0.00217

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

Security

Grade A, and why

application-crud 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 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.

Makes network callslowCapability

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

curl -sS \
own-skills/tranfu-coolify-ops/commands/application-crud.md · 169 lines

How it starts

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

Application CRUD 操作速查 (private-github-app + dockercompose)

reconcile Step 4I / 更新分支 D 用。字段语义详见 ../references/coolify-api-fields.md

公共环境变量假设:

BASE="http://120.77.223.183:8000"
# COOLIFY_API_TOKEN / GITHUB_APP_UUID 已在 shell env 中 (preflight 后导出)
# token 原文永不写进命令字符串, 永远只引用 $COOLIFY_API_TOKEN

列出所有 application (ad-hoc 排障用)

curl -sS \
  -H "Authorization: Bearer $COOLIFY_API_TOKEN" \
  "$BASE/api/v1/applications" \
  | jq '[.[] | {uuid, name, build_pack, status, project_uuid}]'

reconcile Step 1 用:按 name + project_uuid 双重 filter(防跨 project 同名误命中):

curl -sS -H "Authorization: Bearer $COOLIFY_API_TOKEN" "$BASE/api/v1/applications" \
  | jq -r --arg n "$APP_NAME" --arg p "$PROJECT_UUID" \
    '.[] | select(.name == $n and .project_uuid == $p) | .uuid'

$PROJECT_UUID 由 Step 1 通过 GET /api/v1/projects | jq 'select(.name == $REPO_NAME)' 取得(同名约束: REPO_NAME = PROJECT_NAME = APP_NAME)。

创建 Application (private-github-app + dockercompose)

JSON_BODY=$(jq -nc \
  --arg name "$APP_NAME" \
  --arg proj "$PROJECT_UUID" \
  --arg srv "$SERVER_UUID" \
  --arg gha "$GITHUB_APP_UUID" \
  --arg repo "$REPO_ORG/$REPO_NAME" \
  --arg br "$DEFAULT_BRANCH" \
  --arg ports "$PORTS_EXPOSES" \
  --argjson domains '[{"name":"<compose-svc-name>","domain":"https://<svc>.tranfu.com:<port>"}]' \
  '{
    name: $name,
    project_uuid: $proj,
    server_uuid: $srv,
    environment_name: "production",
    github_app_uuid: $gha,
    git_repository: $repo,
    git_branch: $br,
    build_pack: "dockercompose",
    docker_compose_location: "compose.yml",
    docker_compose_domains: $domains,
    ports_exposes: $ports,
    is_auto_deploy_enabled: false,
    instant_deploy: false
  }')

curl -sS -X POST \
  -w "\nHTTP=%{http_code}\n" \
  -H "Authorization: Bearer $COOLIFY_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d "$JSON_BODY" \
  "$BASE/api/v1/applications/private-github-app"

返回 {uuid}立刻 GET 一次拿全量校验关键字段:

Read the full file on GitHub · 169 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 · 169 lines · 0 tokens per session scan A b8254fad7190

Subscribe to this mod's changes

application-crud 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 2,171 tokens. 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-09-03.