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 skills add chaterm/terminal-skills --skill composegit clone --depth 1 https://github.com/chaterm/terminal-skillsWrote 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.
[](https://agentmods.dev/skills/chaterm/terminal-skills/compose)<a href="https://agentmods.dev/skills/chaterm/terminal-skills/compose"><img src="https://agentmods.dev/badge/skills/chaterm/terminal-skills/compose.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00006 | $0.01901 |
| Opus 5 | $0.00003 | $0.00950 |
| Sonnet 5 | $0.00001 | $0.00380 |
| Haiku 4.5 | $0.00001 | $0.00190 |
Grade A, and why
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 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.
test: ["CMD", "curl", "-f", "http://localhost/health"] How it starts
The opening of the file, as written. The whole thing — 408 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Docker Compose 编排
概述
多容器编排、环境变量、网络配置等技能。
基础命令
# 启动服务
docker compose up
docker compose up -d # 后台运行
docker compose up --build # 重新构建
# 停止服务
docker compose down
docker compose down -v # 同时删除卷
docker compose down --rmi all # 同时删除镜像
# 查看状态
docker compose ps
docker compose ps -a
# 查看日志
docker compose logs
docker compose logs -f # 实时跟踪
docker compose logs service_name
# 执行命令
docker compose exec service_name sh
docker compose run service_name command
# 重启服务
docker compose restart
docker compose restart service_name
# 扩缩容
docker compose up -d --scale web=3
配置文件
基础结构
# docker-compose.yml
version: "3.9"
services:
web:
image: nginx:alpine
ports:
- "80:80"
volumes:
- ./html:/usr/share/nginx/html
depends_on:
- api
api:
build: ./api
environment:
- DATABASE_URL=postgres://db:5432/mydb
depends_on:
- db
db:
image: postgres:15
volumes:
- db_data:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: secret
volumes:
db_data:
networks:
default:
driver: bridge
服务配置详解
build
services:
app:
# 简单形式
build: ./app
# 完整形式
build:
context: ./app
dockerfile: Dockerfile.prod
args:
- VERSION=1.0
target: production
cache_from:
- myapp:cache
ports
services:
web:
ports:
- "80:80" # HOST:CONTAINER
- "443:443"
- "8080-8090:8080-8090" # 端口范围
- "127.0.0.1:3000:3000" # 绑定特定 IP
volumes
services:
app:
volumes:
# 命名卷
- data:/var/lib/data
# 绑定挂载
- ./config:/etc/app/config:ro
# 匿名卷
- /var/lib/data
volumes:
data:
driver: local
environment
services:
app:
environment:
- NODE_ENV=production
- DATABASE_URL=postgres://localhost/db
# 或使用映射形式
environment:
NODE_ENV: production
DATABASE_URL: postgres://localhost/db
# 从文件加载
env_file:
- .env
- .env.local
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.
- 8d ago First seen · 408 lines · 6 tokens per session scan A e8caed99a916
compose is a skill published in the GitHub repository chaterm/terminal-skills (58 stars, last pushed 6mo ago), licensed Apache-2.0. It adds 6 tokens to every session and 1,901 once invoked, about $0.0000 per session on Opus 5. 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-08-30.
Other skills, from other repositories
docker
Use when authoring or auditing a Dockerfile, shrinking a bloated image, hardening a container that runs as root, picking a base image, or wiring a Compose dev loop with hot reload. NOT CI builds or deploy-to-host (that is deployment), NOT k8s autoscaling (that is scaling), NOT app-level injection or secrets-in-code…
container-manager-swarm
Docker Swarm cluster orchestration via the container-manager-mcp MCP server — initialize/leave a swarm, list nodes and services, and create or remove replicated services across the cluster. Use when the agent must operate a multi-host Swarm from a manager node, inventory cluster services/nodes, or deploy a service. Do…
docker-compose
Multi-container Docker applications with docker-compose — define services, networks, volumes, and orchestrate local development environments.
docker-compose-local-setup
Creates or updates local multi-service orchestration using docker compose. Covers compose.yaml design, service health checks, dependson readiness, env files, named volumes, migrations/seeds jobs, verification commands, and cleanup workflows for local development.
docker
Operational skill for Claude to automate Docker via CLI, Dockerfiles, Compose, BuildKit, multi-stage builds, and container networking hygiene.
docker-compose
Multi-service docker-compose orchestration — service dependency ordering, profiles, override files, environment-specific configs, rolling restarts, and compose-based dev/prod parity patterns.