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.
curl -O https://raw.githubusercontent.com/fanfan-de/anybox/master/.agents/skills/deploy-anybox-tencent-docker-windows/SKILL.mdgit clone --depth 1 https://github.com/fanfan-de/anyboxWrote 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/fanfan-de/anybox/deploy-anybox-tencent-docker-windows)<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.
<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>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.00085 | $0.02153 |
| Opus 5 | $0.00043 | $0.01077 |
| Sonnet 5 | $0.00017 | $0.00431 |
| Haiku 4.5 | $0.00009 | $0.00215 |
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 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.yml和scripts/tencent-deploy.sh
采用简单优先策略:本地维护并上传 .env.tencent。不要上传 .env、node_modules、dist 或 .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>
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.
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.
- 12d ago First seen · 287 lines · 85 tokens per session scan A 55dab6c34efc
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.
Other skills, from other repositories
azd-deployment
Deploy containerized frontend + backend applications to Azure Container Apps with remote builds, managed identity, and idempotent infrastructure.
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…
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…
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…
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…
atmos-helmfile
Helmfile orchestration: sync/apply/destroy/diff, Kubernetes deployments, varfile generation, EKS integration, source management.