odoo-assistant-mcp: Skill for Claude Code

.agents/skills/coolify-compose/SKILL.md

coolify-compose is a skill for Claude Code, Codex from singleflo/odoo-assistant-mcp. It costs 46 tokens per session (2,846 once invoked), scanned A, a copy of coolify-compose, MIT.

Guidance for converting Docker Compose files into templates that can be deployed with Coolify, a self-hosted platform for running applications and services. It explains the differences between pasting Compose content and deploying from a Git repository.

In plain words
What is it for?
Use it to prepare Compose services for Coolify, add generated credentials and dynamic URLs, and troubleshoot Compose deployment problems.
Why use it?
It helps avoid deployment errors caused by unsupported Compose features or incorrect Coolify variables. It also clarifies when a pre-built image, inline file, or repository-based build is needed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is singleflo/odoo-assistant-mcp's own configuration. It tells Claude Code and Codex how to work on odoo-assistant-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything odoo-assistant-mcp configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is - ./config/settings.json:/app/config.json:ro.

Reuse

Borrowing it

Nothing to install: this file belongs to singleflo/odoo-assistant-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/singleflo/odoo-assistant-mcp/main/.agents/skills/coolify-compose/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/singleflo/odoo-assistant-mcp

Made for: Claude Code, Codex.

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 coolify-compose

README.md
[![agentmods](https://agentmods.dev/badge/skills/singleflo/odoo-assistant-mcp/coolify-compose/github.svg)](https://agentmods.dev/skills/singleflo/odoo-assistant-mcp/coolify-compose)
Your own site
<a href="https://agentmods.dev/skills/singleflo/odoo-assistant-mcp/coolify-compose"><img src="https://agentmods.dev/badge/skills/singleflo/odoo-assistant-mcp/coolify-compose/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 coolify-compose

Your own site · 80×15
<a href="https://agentmods.dev/skills/singleflo/odoo-assistant-mcp/coolify-compose"><img src="https://agentmods.dev/badge/skills/singleflo/odoo-assistant-mcp/coolify-compose.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,846 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 100% copy Near-identical to another mod 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.00046 $0.02846
Opus 5 $0.00023 $0.01423
Sonnet 5 $0.00009 $0.00569
Haiku 4.5 $0.00005 $0.00285

Measured today against content hash 835a30dcba61, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-17, from the pricing page.

Security

Grade A, and why

coolify-compose 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.

test: ["CMD", "wget", "-q", "--spider", "http://localhost:3000/health"]
Origin

This is a copy

100% identical to coolify-compose — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/coolify-compose/SKILL.md · 390 lines

How it starts

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

Coolify Docker Compose

Convert standard Docker Compose files into Coolify-compatible templates with automatic credential generation, dynamic URLs, and one-click deployment.

Two Deployment Modes

Coolify supports two ways to deploy compose files with different capabilities:

1. Raw Compose (Paste Content)

Paste compose YAML directly into Coolify's UI. Limited feature set:

Feature Supported
image: ✅ Yes
build: ❌ No - must use pre-built images
External config files ❌ No - must use inline content:
YAML anchors (&, *) ✅ Yes - resolved by YAML parser
Coolify magic variables ✅ Yes
content: for inline files ✅ Yes

Use when: Quick deployments, simple services, no custom images needed.

2. Repository Mode (Git URL)

Point Coolify to a Git repository containing your compose file. Full Docker Compose features:

Feature Supported
image: ✅ Yes
build: ✅ Yes - builds from Dockerfile in repo
External config files ✅ Yes - relative paths work
Coolify magic variables ✅ Yes
content: for inline files ✅ Yes

Use when: Custom images needed, complex multi-file setups, existing docker-compose.yml in a repo.

Repository setup:

my-service/
├── compose.yml          # or docker-compose.yml
├── custom-image/
│   ├── Dockerfile
│   └── config.sql
└── other-files/
# compose.yml - can use build:
services:
  app:
    build:
      context: ./custom-image
      dockerfile: Dockerfile

Which Mode to Use?

Original compose has... Recommended mode
Only image: references Either works
build: directives Repository mode
External config files to mount Repository mode (or use content: in raw)
Single simple service Raw mode is faster

Quick Start

Every Coolify template needs a header and magic variables:

# documentation: https://example.com/docs
# slogan: Brief description of the service
# category: backend
# tags: api, database, docker
# logo: svgs/myservice.svg
# port: 3000

services:
  app:
    image: myapp:latest
    environment:
      - SERVICE_URL_APP_3000           # Generates URL, routes proxy to port 3000
      - DATABASE_URL=postgres://${SERVICE_USER_POSTGRES}:${SERVICE_PASSWORD_POSTGRES}@db:5432/mydb
    depends_on:
      db:
        condition: service_healthy
    healthcheck:
      test: ["CMD", "wget", "-q", "--spider", "http://localhost:3000/health"]
      interval: 5s
      timeout: 10s
      retries: 10

  db:
    image: postgres:16-alpine
    environment:
      - POSTGRES_USER=$SERVICE_USER_POSTGRES
      - POSTGRES_PASSWORD=$SERVICE_PASSWORD_POSTGRES
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER}"]
      interval: 5s
      timeout: 10s
      retries: 10

Read the full file on GitHub · 390 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. today First seen · 390 lines · 46 tokens per session scan A 835a30dcba61

Subscribe to this mod's changes

coolify-compose is a skill published in the GitHub repository singleflo/odoo-assistant-mcp (1 stars, last pushed today), licensed MIT. It adds 46 tokens to every session and 2,846 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 100% identical to coolify-compose, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

deploy-docker-compose

Run the Omnigent server as a Docker compose stack (server + Postgres) on any Docker host — your laptop, a VPS, EC2 by hand, or as the base layer of any container-platform deploy. Invoke when the user wants to build the image, bring up the compose stack, debug the stack on a host they already have, or extend the stack…

omnigent-ai/omnigent · 84 tokens

compute-env-setup

Set up a reproducible Feynman compute environment for research jobs. Use when a task needs Python/R packages, GPU libraries, containers, Modal, SSH, caches, or managed model runtime setup.

companion-inc/feynman · 45 tokens

securing-kubernetes-on-cloud

This skill covers hardening managed Kubernetes clusters on EKS, AKS, and GKE by implementing Pod Security Standards, network policies, workload identity, RBAC scoping, image admission controls, and runtime security monitoring. It addresses cloud-specific security features including IRSA for EKS, Workload Identity for…

xalgorix/xalgorix · 80 tokens

detecting-privilege-escalation-in-kubernetes-pods

Detect and prevent privilege escalation in Kubernetes pods by monitoring security contexts, capabilities, and syscall patterns with Falco and OPA policies.

xalgorix/xalgorix · 40 tokens

implementing-rbac-hardening-for-kubernetes

Harden Kubernetes Role-Based Access Control by implementing least-privilege policies, auditing role bindings, eliminating cluster-admin sprawl, and integrating external identity providers.

xalgorix/xalgorix · 41 tokens

docker-socket-mount

Docker / containerd socket mounted into a container → host RCE. Common in CI runners, GitOps controllers (ArgoCD, Flux), and 'Docker-in-Docker' setups. Single-command escape via docker run --rm --privileged -v /:/host alpine chroot /host.

PurpleAILAB/Decepticon · 67 tokens