com um clique
devops
Generates DevOps configurations and scripts for deploying and managing
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Generates DevOps configurations and scripts for deploying and managing
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
| name | devops |
| description | Generates DevOps configurations and scripts for deploying and managing |
# Copy environment file
cp .env.example .env
# Start all services
docker compose up -d
# Install PHP dependencies
docker compose exec app composer install
# Install Node dependencies
docker compose exec app yarn install
# Generate application key
docker compose exec app php artisan key:generate
# Run migrations
docker compose exec app php artisan migrate
# Build frontend assets
docker compose exec app yarn dev
Ensure PHP 8.4+ is installed, then:
# Install dependencies
composer install
yarn install
# Setup environment
cp .env.example .env
php artisan key:generate
# Configure database and run migrations
php artisan migrate
# Start development servers
composer run dev # Starts Laravel Octane, queue worker, logs, and Vite
All commands should run from a Docker container. The project includes several useful Composer scripts:
composer run dev - Start all development services (Octane, queue, logs,
Vite)composer run ide-helper - Generate IDE helper filescomposer run phpstan - Run static analysiscomposer run pint - Check code stylecomposer run pint:fix - Fix code style issuescomposer run rector - Check for code modernization opportunitiescomposer run rector:fix - Apply code modernizationThe project uses GitHub Actions with:
Use when investigating slow queries, analyzing execution plans, or optimizing database performance. Invoke for index design, query rewrites, configuration tuning, partitioning strategies, lock contention resolution. Українською: Оптимізуй базу, повільний запит, план виконання, індекси, N+1, кешування запитів, профілювання, блокування, партиціювання, перепиши запит, аналіз продуктивності.
Use when working with lorisleiva/laravel-actions package - AsController, AsJob, AsObject, AsListener patterns, handle() signatures, and deciding which trait combination to use for a given Action class.
Use when debugging unexpected behavior in Laravel Octane with FrankenPHP - stale data between requests, memory leaks, singleton contamination, static property state, or anything that "works once then breaks".
Generates a Laravel architecture based on best practices for modern Laravel
Master software architect specializing in modern architecture patterns, clean architecture, microservices, event-driven systems, and DDD. Reviews system designs and code changes for architectural integrity, scalability, and maintainability. Use PROACTIVELY for architectural decisions. Українською: Архітектурний огляд, рев'ю архітектури, патерни проектування, чиста архітектура, мікросервіси, SOLID, DDD, зв'язність, пов'язаність, масштабованість.
Use when designing new system architecture, reviewing existing designs, or making architectural decisions. Invoke for system design, architecture review, design patterns, ADRs, scalability planning. Українською: Проєктуй архітектуру, системний дизайн, мікросервіси, моноліт, модулі, зв'язність, пов'язаність, ADR, масштабування, компроміси, архітектурне рішення, вибір патерну.