Install
$ agentstack add skill-ddtcorex-dev-skills-hub-govard-laravel ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Govard Laravel Commands
Laravel-specific shortcuts and commands for Govard environments.
Related Skills
REQUIRED BACKGROUND: Load govard-toolbox first — this skill only covers Laravel-specific shortcuts layered on top of Govard's base environment commands (govard up, govard sh, govard db, remote sync, Xdebug setup).
Artisan Commands
# Cache management
govard sh -c "govard tool artisan config:cache"
govard sh -c "govard tool artisan config:clear"
govard sh -c "govard tool artisan cache:clear"
# Route cache
govard sh -c "govard tool artisan route:cache"
govard sh -c "govard tool artisan route:clear"
# View cache
govard sh -c "govard tool artisan view:cache"
govard sh -c "govard tool artisan view:clear"
Database
# Migrations
govard sh -c "govard tool artisan migrate"
govard sh -c "govard tool artisan migrate:fresh"
govard sh -c "govard tool artisan migrate:refresh"
govard sh -c "govard tool artisan migrate:rollback"
govard sh -c "govard tool artisan migrate:status"
# Seeders
govard sh -c "govard tool artisan db:seed"
govard sh -c "govard tool artisan db:seed --class=UserSeeder"
# Factory
govard sh -c "govard tool artisan make:factory PostFactory"
govard sh -c "govard tool artisan tinker"
# Direct SQL
govard db connect
Queue Operations
# Start queue worker
govard sh -c "govard tool artisan queue:work"
# Queue withSupervisor
govard svc up
# Retry failed jobs
govard sh -c "govard tool artisan queue:retry all"
govard sh -c "govard tool artisan queue:failed"
# Clear queue
govard sh -c "govard tool artisan queue:flush"
Scheduler
# Run scheduler (keep in cron)
govard sh -c "govard tool artisan schedule:run"
# List scheduled
govard sh -c "govard tool artisan schedule:list"
Development
# Create commands
govard sh -c "govard tool artisan make:command MyCommand"
govard sh -c "govard tool artisan make:controller MyController"
govard sh -c "govard tool artisan make:model Post"
govard sh -c "govard tool artisan make:migration create_posts_table"
# Tinker (interactive REPL)
govard sh -c "govard tool artisan tinker"
# Show routes
govard sh -c "govard tool artisan route:list"
govard sh -c "govard tool artisan route:list --path=api"
Testing
# Run tests
govard sh -c "govard tool artisan test"
# With PHPUnit
govard sh -c "govard tool php artisan test"
govard sh -c "vendor/bin/phpunit"
# Specific test
govard sh -c "vendor/bin/phpunit --filter=UserTest"
Frontend Assets
# Node modules
govard tool npm install
govard tool npm run dev
govard tool npm run prod
govard tool npm run watch
# Laravel Mix (if using)
govard sh -c "npm run dev"
govard sh -c "npm run production"
# Clear Vite cache
govard sh -c "rm -rf node_modules/.vite"
Logging
# View logs
govard sh -c "tail -f storage/logs/laravel.log"
# Clear logs
govard sh -c "govard tool artisan log:clear"
# Laravel Debugbar (if installed)
govard sh -c "curl -s http://local.test/_debugbar/open"
Common Workflows
After Pulling Code
govard tool composer install
govard sh -c "govard tool artisan migrate"
govard sh -c "govard tool artisan cache:clear"
govard sh -c "npm install && npm run dev"
Creating Features
govard sh -c "govard tool artisan make:model Post -mcr" # Model + Migration + Controller
govard sh -c "govard tool artisan migrate"
govard sh -c "govard tool artisan route:list"
Deployment Prep
govard sh -c "govard tool artisan config:cache"
govard sh -c "govard tool artisan route:cache"
govard sh -c "govard tool artisan view:cache"
govard sh -c "npm run prod"
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ddtcorex
- Source: ddtcorex/dev-skills-hub
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.