← ClaudeAtlas

govard-toolboxlisted

This skill should be used when the user asks to "start/stop environment", "govard up", "govard down", "run commands in container", "govard sh", "do database operations", "db dump", "db import", "sync with remote", "bootstrap from staging", "debug configuration", or "set up Xdebug". Provides high-level shortcuts and references for the Govard development environment orchestrator. This is the BASE skill — for framework-specific shortcuts, also load govard-magento or govard-laravel.
ddtcorex/dev-skills-hub · ★ 4 · AI & Automation · score 80
Install: claude install-skill ddtcorex/dev-skills-hub
# 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 | ### Common Commands ```bash # 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 ```bash # 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 ```bash # Add remote govard remote add staging ssh://user@staging.server/path # Test connection govard remote test staging # Sync everything govard sync --source staging --full # Plan before sync (preview) govard sync --source staging --