govard-toolbox

govard-toolbox is a skill for Claude Code from ddtcorex/maestro-skills. It costs 132 tokens per session (4,197 once invoked), scanned B, original, MIT.

A set of commands for Govard, a tool that runs development projects in containers—isolated environments that package the application and its services.

In plain words
What is it for?
Use it to start or stop environments, run commands in containers, inspect services, connect to MySQL, import or export database backups, sync remote data, and configure debugging.
Why use it?
It avoids memorising separate commands for starting the project, opening its shell, viewing logs, and handling its database.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Codex; mentions OpenCode.

Part of the maestro-skills plugin — 31 skills shipped together

Good fit Use it to start or stop environments, run commands in containers, inspect services, connect to MySQL, import or export database backups, sync remote data, and configure debugging.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ddtcorex/maestro-skills/govard-toolbox
Install

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.

Any agent
npx skills add ddtcorex/maestro-skills --skill govard-toolbox
Clone the repo
git clone --depth 1 https://github.com/ddtcorex/maestro-skills

Made for: Claude Code.

Or install maestro-skills, the plugin that ships this one along with the rest of its 31 skills.

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 govard-toolbox

README.md
[![agentmods](https://agentmods.dev/badge/skills/ddtcorex/maestro-skills/govard-toolbox/github.svg)](https://agentmods.dev/skills/ddtcorex/maestro-skills/govard-toolbox)
Your own site
<a href="https://agentmods.dev/skills/ddtcorex/maestro-skills/govard-toolbox"><img src="https://agentmods.dev/badge/skills/ddtcorex/maestro-skills/govard-toolbox/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 govard-toolbox

Your own site · 80×15
<a href="https://agentmods.dev/skills/ddtcorex/maestro-skills/govard-toolbox"><img src="https://agentmods.dev/badge/skills/ddtcorex/maestro-skills/govard-toolbox.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 132 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,197 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 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.00132 $0.04197
Opus 5 $0.00066 $0.02099
Sonnet 5 $0.00026 $0.00839
Haiku 4.5 $0.00013 $0.00420

Measured 5d ago against content hash b5cca581dc91, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade B, and why

govard-toolbox scanned grade B 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 5d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

> **Toolchain & image — verify after build:** after `make build` (which embeds `ContextDigest` SHA256 of `docker/audit/Dockerfile+bin+toolchains+tests`), run `govard audit toolchain build` then `govard audit toolchain st
skills/govard-toolbox/SKILL.md · 272 lines

How it starts

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

Govard Toolbox

Govard is a containerized development environment orchestrator. This skill provides high-level shortcuts and references.

Quick Reference

Environment Lifecycle

Shortcut Full Command Purpose
govard up govard env up Start project
govard down govard env down Stop project
govard sh govard shell Interactive shell
govard ps govard env ps List containers
govard verify govard verify --phase 1 --json 5-phase executable checklist (replaces manual tick)

Common Commands

# Start environment
govard up

# Stop environment
govard down

# Stop with volumes (clean slate)
govard down -v

# Shell into PHP container
govard sh

# Run single command
govard sh -c "ls -la"

# View logs
govard logs -f

# Restart services
govard restart

Database Operations

# Connect to MySQL
govard db connect

# Run query -- table names may need a framework-specific prefix (e.g. Magento's
# db.table_prefix in app/etc/env.php, WordPress's $table_prefix) if one is configured
govard db query "SELECT * FROM admin_user LIMIT 1"

# Import dump
govard db import --file backup.sql --drop

# Export database
govard db dump --no-noise -e staging

# Direct sync from remote
govard db import --stream-db -e staging --drop

Remote Sync

# Add remote
govard remote add staging ssh://[email protected]/path

# Test connection
govard remote test staging

# Sync everything
govard sync --source staging --full

# Plan before sync (preview)
govard sync --source staging --full --plan

# Skip noise (cache, logs)
govard sync --source staging --full --no-noise --no-pii

Bootstrap

# From staging (full setup)
govard bootstrap --clone -e staging --no-pii --no-noise --yes

# Preview plan
govard bootstrap --clone -e staging --plan

Tool Execution

# Run framework CLI
govard tool magento cache:flush
govard tool magerun cache:clear
govard tool artisan migrate
govard tool drush cr

# Node tools
govard tool npm install
govard tool composer install

Read the full file on GitHub · 272 lines

Files

What ships with it

4 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.

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. 5d ago Changed · +3 lines b5cca581dc91
  2. 6d ago Changed · +1 lines · +13 tokens per session c7b8fb84c55e
  3. 10d ago First seen · 268 lines · 119 tokens per session scan B 2f8b3392e775

Subscribe to this mod's changes

govard-toolbox is a skill published in the GitHub repository ddtcorex/maestro-skills (4 stars, last pushed yesterday), licensed MIT. It adds 132 tokens to every session and 4,197 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

companion-clis

Companion CLIs for Runpod workflows — HuggingFace, GitHub, Docker, and AWS.

gaelic-ghost/socket · 26 tokens

dockerized-service-release-deployment-workflow

Create a Dockerized-service release contract with clean GitHub Actions builds, main-anchored tags, immutable digest manifests, published-release deployments, production approval, health checks, and exact-digest rollback.

gaelic-ghost/socket · 49 tokens

linux-development-vm-workflow

Prepare and reset persistent Linux development guests on macOS. Use when comparing container machine, Lima or Colima, and full VMs for distros, init systems, services, custom boot, disks, Rosetta, or nested virtualization.

gaelic-ghost/socket · 54 tokens

select-analysis-isolation

Select isolation before inspecting or executing untrusted content. Use for local analysis, a container, Linux or macOS VM, remote sandbox, or spare device with defined network, mounts, credentials, snapshots, evidence export, and teardown.

gaelic-ghost/socket · 51 tokens

magento-deployment-engineer

Designs and implements CI/CD pipelines and automated deployments for Magento 2. Use when setting up deployment pipelines, automating deployments, managing infrastructure, or implementing DevOps practices. Masters containerization, orchestration, and scalable deployment strategies.

maxnorm/magento2-agent-skills · 54 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