anybox: Skill for Codex

.agents/skills/deploy-anybox-tencent-docker-windows/SKILL.md

deploy-anybox-tencent-docker-windows is a skill for Codex from fanfan-de/anybox. It costs 85 tokens per session (2,153 once invoked), scanned A, original, MIT.

A fixed deployment procedure for sending the anyboxProvider project to a specific Tencent Cloud server and running it with Docker Compose, a tool for managing application containers.

In plain words
What is it for?
It is for deploying or updating anyboxProvider at the specified server location, including unpacking the project and starting its Docker services.
Why use it?
It provides repeatable commands for packaging, uploading, backing up, configuring, and deploying this one project without including local build files or secrets by mistake.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

This is fanfan-de/anybox's own configuration. It tells Codex how to work on anybox 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 anybox configures →

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/ubuntu/anyboxProvider.

Reuse

Borrowing it

Nothing to install: this file belongs to fanfan-de/anybox. 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/fanfan-de/anybox/master/.agents/skills/deploy-anybox-tencent-docker-windows/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/fanfan-de/anybox

Made for: 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 deploy-anybox-tencent-docker-windows

README.md
[![agentmods](https://agentmods.dev/badge/skills/fanfan-de/anybox/deploy-anybox-tencent-docker-windows/github.svg)](https://agentmods.dev/skills/fanfan-de/anybox/deploy-anybox-tencent-docker-windows)
Your own site
<a href="https://agentmods.dev/skills/fanfan-de/anybox/deploy-anybox-tencent-docker-windows"><img src="https://agentmods.dev/badge/skills/fanfan-de/anybox/deploy-anybox-tencent-docker-windows/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 deploy-anybox-tencent-docker-windows

Your own site · 80×15
<a href="https://agentmods.dev/skills/fanfan-de/anybox/deploy-anybox-tencent-docker-windows"><img src="https://agentmods.dev/badge/skills/fanfan-de/anybox/deploy-anybox-tencent-docker-windows.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,153 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.00085 $0.02153
Opus 5 $0.00043 $0.01077
Sonnet 5 $0.00017 $0.00431
Haiku 4.5 $0.00009 $0.00215

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

Security

Grade A, and why

deploy-anybox-tencent-docker-windows 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 12d 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 -fsS http://127.0.0.1/livez
.agents/skills/deploy-anybox-tencent-docker-windows/SKILL.md · 287 lines

How it starts

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

腾讯云 Docker 部署 anyboxProvider

概览

这个 skill 固定用于当前项目的腾讯云部署流程:

  • 本地项目目录:C:\Projects\anyboxProvider
  • 服务器 SSH 别名:anybox-server
  • 服务器实际地址:[email protected]
  • 服务器部署根目录:/home/ubuntu/
  • 服务器项目目录:/home/ubuntu/anyboxProvider
  • 部署方式:docker-compose.tencent.ymlscripts/tencent-deploy.sh

采用简单优先策略:本地维护并上传 .env.tencent。不要上传 .envnode_modulesdist.git

部署前检查

先确认服务器上的 Docker 可用:

ssh anybox-server 'docker --version && docker compose version && docker ps'

如果本地 shell 没有配置好 SSH,就让用户在 VS Code 远程终端里手动执行上面的检查命令,不要临时改用其他服务器或其他部署目标。

打包并上传

在本机 PowerShell 7 中执行:

cd C:\Projects

tar -czf anyboxProvider.tar.gz `
  --exclude=anyboxProvider/node_modules `
  --exclude=anyboxProvider/dist `
  --exclude=anyboxProvider/.env `
  --exclude=anyboxProvider/.git `
  anyboxProvider

scp .\anyboxProvider.tar.gz anybox-server:/home/ubuntu/

如果本地已有旧的压缩包,只能删除 C:\Projects\anyboxProvider.tar.gz,不要删除源项目文件。

在服务器解压

在腾讯云服务器上执行:

cd /home/ubuntu

if [ -d anyboxProvider ]; then
  mv anyboxProvider "anyboxProvider.backup.$(date +%Y%m%d-%H%M%S)"
fi

tar -xzf anyboxProvider.tar.gz
cd anyboxProvider

如果用户临时决定不上传 .env.tencent,更新部署时需要从旧备份复制回来:

cp ../anyboxProvider.backup.*/.env.tencent .env.tencent 2>/dev/null || true

如果存在多个备份目录,显式选择最新的备份目录,不要依赖通配符。

配置生产环境变量

简单优先时,先在本地 C:\Projects\anyboxProvider\.env.tencent 填好生产配置,然后随压缩包一起上传。若本地还没有该文件,先在本地复制模板:

cd C:\Projects\anyboxProvider
Copy-Item .env.tencent.example .env.tencent
notepad .env.tencent

如果要在服务器上直接编辑,也可以执行:

cp .env.tencent.example .env.tencent
nano .env.tencent

至少替换这些值:

APP_DOMAIN=你的域名
APP_BASE_URL=https://你的域名

POSTGRES_PASSWORD=<随机 hex>
DATABASE_URL=postgres://anybox:<同一个 PostgreSQL 密码>@postgres:5432/anybox_provider

REDIS_PASSWORD=<随机 hex>
REDIS_URL=redis://:<同一个 Redis 密码>@redis:6379

SESSION_SECRET=<随机 hex>
ENCRYPTION_KEY=<随机 hex,必须稳定保存和备份>
METRICS_TOKEN=<随机 hex>
ADMIN_TOKEN=<随机 hex>

ADMIN_BOOTSTRAP_EMAIL=<管理员邮箱>
ADMIN_BOOTSTRAP_PASSWORD=<初始管理员密码>

DEFAULT_PROVIDER_API_KEY=<上游模型供应商 API Key>

Read the full file on GitHub · 287 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 287 lines · 85 tokens per session scan A 55dab6c34efc

Subscribe to this mod's changes

deploy-anybox-tencent-docker-windows is a skill published in the GitHub repository fanfan-de/anybox (57 stars, last pushed 29d ago), licensed MIT. It adds 85 tokens to every session and 2,153 once invoked, about $0.0004 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.

Related

Other skills, from other repositories

azd-deployment

Deploy containerized frontend + backend applications to Azure Container Apps with remote builds, managed identity, and idempotent infrastructure.

sickn33/agentic-awesome-skills · 29 tokens

openshell-cli

Guide agents through using the OpenShell CLI (openshell) for sandbox management, gateway registration, provider configuration and refresh, policy iteration, settings, service exposure, BYOC workflows, and attached-provider inference. Covers basic through advanced multi-step workflows. Trigger keywords - openshell…

NVIDIA/OpenShell · 128 tokens

langbot-deploy

Deploy and configure a LangBot instance — Docker / Docker Compose, Kubernetes, the config.yaml model, the Box sandbox runtime, the plugin runtime, and the global API key. Use when installing, deploying, upgrading, or configuring LangBot in production or self-hosted environments. Triggers on "deploy langbot", "langbot…

langbot-app/LangBot · 104 tokens

compute-env-setup

Set up a compute environment on a remote provider so Claude Science jobs can run there. Covers direct SSH/conda hosts, Slurm clusters, container-via-bridge runners, and managed-API providers (Modal, GCP, RunPod). Use when standing up a new provider, porting an env to a different backend, adding a tool that needs its…

UnicomAI/wanwu · 134 tokens

azure-cloud-migrate

Assess and migrate cross-cloud workloads to Azure with reports and code conversion. Supports Lambda→Functions, Beanstalk/Heroku/App Engine→App Service, Fargate/Kubernetes/Cloud Run/Spring Boot→Container Apps. WHEN: migrate Lambda to Functions, AWS to Azure, migrate Beanstalk, migrate Heroku, migrate App Engine, Cloud…

microsoft/skills · 106 tokens

atmos-helmfile

Helmfile orchestration: sync/apply/destroy/diff, Kubernetes deployments, varfile generation, EKS integration, source management.

cloudposse/atmos · 33 tokens