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/clezcoding/awesome-coolify/coolify-setupnpx skills add clezcoding/awesome-coolify --skill coolify-setupgit clone --depth 1 https://github.com/clezcoding/awesome-coolifyWhat 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.00033 | $0.01537 |
| Opus 5 | $0.00016 | $0.00768 |
| Sonnet 5 | $0.00007 | $0.00307 |
| Haiku 4.5 | $0.00003 | $0.00154 |
Grade A, and why
coolify-setup 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 141 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Coolify Setup
Install this skill pack (Cursor, Claude Code, Codex):
npx skills add clezcoding/awesome-coolify -a cursor -a claude-code -a codex
MCP prompt analog: new-project (src/mcp/prompts.ts) — primary entry is MCP setup tool per D-01.
Related skills: coolify-deploy · coolify-diagnose · coolify-incident
MCP setup tool
Primary entry: MCP setup tool (setupActionsCatalog):
preflight()— verify GitHub CLI presence and auth (headless-safe)wire(mode, ...)— provision or link Coolify resourcesresume(mode?, ...)— re-run preflight after human gh auth
Safety: optional instance routing · no auto-push git by default · gh soft-pause (no in-tool poll)
Workflow
- Preflight — call
setup({ action: "preflight" }). - On
COOLIFY_SETUP_PAUSED— stop for human action:- Install gh if missing: cli.github.com
- Run
gh auth login(or setGH_TOKEN/GITHUB_TOKENfor headless) - Do not poll or sleep inside the agent loop waiting for auth.
- Resume — after auth succeeds, call
setup({ action: "resume", ... })with the same wire params you will use for step 4. - Wire — call
setup({ action: "wire", mode: "greenfield" | "link-existing", ... }).
Modes
| Mode | Use when |
|---|---|
greenfield |
Create new Coolify project/environment and provision via recipe |
link-existing |
Attach workspace to an existing Coolify project/server |
Optional flags (default off)
Pass explicitly only when needed:
include_domains— attach domains after wire (greenfield, or link-existing withapplication_uuid)set_env— sync environment variables after wire (greenfield, or link-existing withapplication_uuid). When enabled, pass exactly one ofenv_file(local.envpath) orenv_content(inline.envtext) — no workspace auto-detect. Application resources only (not one-click services).deploy_and_watch— trigger deploy and boundeddeployment.watchafter wire (greenfield, or link-existing withapplication_uuid)push— on greenfield only; defaultfalseomitsgh --push. Setpush: trueto push after repo create.
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.
- yesterday First seen · 141 lines · 33 tokens per session scan A e705cdc998df
coolify-setup is a skill published in the GitHub repository clezcoding/awesome-coolify (0 stars, last pushed 3d ago), licensed MIT. It adds 33 tokens to every session and 1,537 once invoked, about $0.0002 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.
Other skills, from other repositories
artifact
Share documents, images, and PDFs with a human as persistent links via the Artifacts MCP server. Use when the user asks to publish or share an artifact, document, diagram, generated image, or PDF with a link.
coss
Helps implement coss UI components correctly. Use when building UIs with coss primitives (buttons, dialogs, selects, forms, menus, tabs, inputs, toasts, etc.), migrating from shadcn/Radix to coss/Base UI, composing trigger-based overlays, or troubleshooting coss component behavior. Covers imports, accessibility…
post-build-flow
Handles workflow verification and setup after build-workflow succeeds, or when the message contains workflow-verification-follow-up or workflow-setup-required. Load after direct builds, when verificationReadiness requires action, or on orchestrator verify/setup follow-up turns.
n8n:content-design
Product content designer for UI copy. Use when writing, reviewing, or auditing user-facing text: button labels, error messages, tooltips, empty states, modal copy, placeholder text, confirmation dialogs, onboarding flows, or i18n strings. Also use when the user says /copy, /content, or /ux-copy.
n8n:human-like-code-review
Reviews a GitHub pull request like a thoughtful human reviewer and writes the feedback to a markdown file. Prioritizes context, architecture fit, solution complexity, bugs, security edge cases, and missing tests. Use when given a PR URL to review, or when the user says /human-like-code-review.
n8n:node-add-oauth
Add OAuth2 credential support to an existing n8n node — creates the credential file, updates the node, adds tests, and keeps the CLI constant in sync. Use when the user says /node-add-oauth.