project

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

A reference for the Coolify command-line commands that list, create, and inspect projects. Coolify is a tool for deploying and managing applications on servers.

In plain words
What is it for?
Use it to list projects, find a project by name, create a missing project, and inspect project details.
Why use it?
It gives an operator a quick way to check whether a project exists and create one when onboarding an application. It also makes clear that deleting a project must be done in Coolify’s web interface.

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 list projects, find a project by name, create a missing project, and inspect project 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/project

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 project

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

Your own site · 80×15
<a href="https://agentmods.dev/commands/tranfu-labs/tranfu-skills/project"><img src="https://agentmods.dev/badge/commands/tranfu-labs/tranfu-skills/project.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 868 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.00868
Opus 5 $0.00000 $0.00434
Sonnet 5 $0.00000 $0.00174
Haiku 4.5 $0.00000 $0.00087

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

Security

Grade A, and why

project 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/project.md · 74 lines

How it starts

The opening of the file, as written. The whole thing — 74 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

project 命令参考

本文件覆盖 onboard 场景实际用到的 coolify project 子命令。project 一共就 3 个子命令, 全部抄录如下。

注意:coolify CLI 当前不暴露 project delete 命令。删 project 只能去 Coolify 网页 UI 操作。本 skill 任何提到"删 project"的地方都意味着"去网页 UI 删"——这是 SKILL.md 「任务的本质」 段落里强调"回滚成本高"的原因之一。

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

本文件覆盖的命令:


coolify project list

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

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

onboard 场景用法(在 Step 3 查名 == 仓库名的 project 是否存在):

PROJECT_UUID=$(coolify project list --context="${context}" --format json \
  | jq -r --arg name "${repo}" '.[] | select(.name == $name) | .uuid')

coolify project create

创建一个新 project。

参数 类型 必填 默认 说明
--description string project 描述
--name string project 名

onboard 场景用法(Step 3 找不到同名 project 时建一个 1:1 命名的):

coolify project create --context="${context}" --name "${repo}"

约定:project 名 == 仓库名(见 tranfu-naming.md)。 本 skill 不传 --description

回滚提醒:如果新建 project 后下游步骤(Step 6 app create github)失败,没办法用 CLI 删 这个 project(CLI 不暴露 project delete)。要么留着复用(project 名跟仓库名 1:1,等下次重跑 本流程时 Step 3 会复用,不会重建),要么去 Coolify 网页 UI 手动删。


coolify project get <uuid>

按 UUID 拿一个 project 的详情。无 flag 参数,位置参数 <uuid> 必填。

参数 类型 必填 默认 说明
<uuid> string project UUID(位置参数)

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

Subscribe to this mod's changes

project 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 868 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.