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/infohata/mind-vault/deploymentnpx skills add infohata/mind-vault --skill deploymentgit clone --depth 1 https://github.com/infohata/mind-vaultWrote 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/infohata/mind-vault/deployment)<a href="https://agentmods.dev/skills/infohata/mind-vault/deployment"><img src="https://agentmods.dev/badge/skills/infohata/mind-vault/deployment.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 | $0.00041 | $0.08192 |
| Opus 5 | $0.00020 | $0.04096 |
| Sonnet 5 | $0.00008 | $0.01638 |
| Haiku 4.5 | $0.00004 | $0.00819 |
Grade D, and why
deployment scanned grade D with 3 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 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
- [references/SHELL_INSTALLERS.md](references/SHELL_INSTALLERS.md) — authoring + review patterns for `install/install-*.sh` **and remote-sudo / forced-command wrappers**; installer-specific catalog (chown, marker blocks, Reaches for credential fileshighPrivilege escalation
SSH keys, cloud credentials, git-credentials, .npmrc, /etc/shadow: reading these is how a config file becomes a credential leak.
- SSH key perms: `chmod 600 ~/.ssh/id_rsa`. Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -fsI https://${DOMAIN} # external HTTPS reachable How it starts
The opening of the file, as written. The whole thing — 496 lines — stays where its author put it; the contents beside it link to each section on GitHub.
deployment
Production deployment pattern for containerised web applications using Docker Compose. Prioritises safety (automatic backups before destructive steps, rollback-ready state, mandatory screen sessions for remote runs) over raw speed. This is not a zero-downtime pattern — it's a stop/rebuild/start cycle with health verification. Brief outages (5–30 s) are expected on updates.
This skill covers:
- Branch strategy and release management
- Change-aware deploy scripts (migrations, dependencies, static assets)
- Database safety (pre-change backups, rollback procedures)
- Remote SSH deployment with mandatory screen sessions
- Let's Encrypt SSL via certbot + nginx
- Health checks and deployment verification
- Environment management and
.envhandling - Makefile targets for common operations
When to use
TRIGGER when: preparing or executing a production deploy for a Docker Compose application; setting up the initial deploy.sh + backup_db.sh + verify_deployment.sh toolchain; wiring a CI/CD pipeline that invokes the deploy scripts; handling rollback after a failed deploy.
SKIP for: local dev-container startup (docker compose up), single-container toy apps, Kubernetes-based deploys (different contract — use Helm/ArgoCD), PaaS targets (Heroku/Fly/Railway — they own their own deploy verb and these scripts will conflict).
Pattern
Branch strategy
Separate production from development:
- Use a
deployment(orproduction) branch for releases. - Merge stable commits from
mainintodeploymentexplicitly — no auto-fast-forward. - Branch protection on
deployment: require review, disallow force-push. - A clear commit boundary on the release branch = a clean rollback target.
git checkout deployment
git merge <stable-sha>
git push origin deployment
Service architecture
Typical Docker Compose stack:
| Service | Role |
|---|---|
web |
Application container (Django, Rails, Node, …) |
nginx |
Reverse proxy, SSL termination, static file serving |
db |
PostgreSQL / MySQL |
cache |
Redis / Memcached |
worker |
Background jobs (Celery / Sidekiq / BullMQ) |
certbot |
Let's Encrypt renewals |
storage (opt.) |
MinIO / S3-compatible object store |
What ships with it
26 files 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.
- README.md 4.5 KB
- references/ALERT_SILENT_DECAY.md 11 KB
- references/CICD.md 12 KB
- references/CONTAINER_DNS_NSS.md 6.5 KB
- references/CONTAINER_SINGLE_FILE_MOUNT.md 5.8 KB
- references/DARK_DEPLOY_KILL_SWITCH.md 7.9 KB
- references/DJANGO_DEPLOYMENT.md 40 KB
- references/GITHUB_APP_DEPLOY_CREDENTIALS.md 14 KB
- references/HARDENING.md 11 KB
- references/MONITORING.md 26 KB
- references/NGINX_TLS_REDIRECT_AND_CERTS.md 5.5 KB
- references/ROOTLESS_DOCKER_OPENVZ.md 9.1 KB
- references/ROOTLESS_DOCKER.md 19 KB
- references/SCREEN_SESSIONS.md 4.9 KB
- references/SHELL_INSTALLERS.md 20 KB
- references/TRAEFIK_EDGE_HARDENING.md 10 KB
- scripts/backup_db.sh 3.8 KB runs code
- scripts/deploy_first_time.sh 5.0 KB runs code
- scripts/deploy_update.sh 14 KB runs code
- scripts/deploy.sh 5.0 KB runs code
- scripts/harden_server.sh 9.0 KB runs code
- scripts/README.md 13 KB
- scripts/restore_db.sh 3.7 KB runs code
- scripts/setup_server.sh 3.0 KB runs code
- scripts/verify_deployment.sh 6.0 KB runs code
- VERSION 4 B
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.
- today Changed 0f9910390011
- 4d ago First seen · 496 lines · 41 tokens per session scan D 1f5d0d3df3b8
deployment is a skill published in the GitHub repository infohata/mind-vault (2 stars, last pushed 2d ago), licensed Apache-2.0. It adds 41 tokens to every session and 8,192 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it D with 3 findings (asks for root, reaches for credential files, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
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 inference routing. Covers basic through advanced multi-step workflows. Trigger keywords - openshell, sandbox…
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…
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…
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.
atmos-helmfile
Helmfile orchestration: sync/apply/destroy/diff, Kubernetes deployments, varfile generation, EKS integration, source management.
atmos-devcontainer
Devcontainer orchestration: start/stop/attach/shell/exec/rebuild, instance management, config handling, VS Code integration.