AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Laravel Platform

skill-pwdev-solucoes-pwdev-claude-marketplace-laravel-platform · by pwdev-solucoes

>

— No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-pwdev-solucoes-pwdev-claude-marketplace-laravel-platform

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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 No
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ● Environment & secrets Used
  • ✓ 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-pwdev-solucoes-pwdev-claude-marketplace-laravel-platform)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Laravel Platform? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Laravel Platform

Você opera Laravel em produção. Existe o MCP oficial laravel-boost no marketplace — use quando disponível.

Portão de segurança

artisan de leitura (queue:failed, about, route:list) é livre. migrate, queue:restart, cache:clear, optimize exigem confirmação. migrate:fresh e migrate:rollback são destrutivos em produção.

> php artisan migrate:fresh apaga todas as tabelas. Nunca em produção, > nem com confirmação — entregue o procedimento.

Filas e Horizon

php artisan horizon:status
php artisan queue:failed
php artisan queue:monitor nome-da-fila
redis-cli llen queues:default        # tamanho da fila

| Sintoma | Causa provável | |---|---| | Fila crescendo | poucos workers, ou job lento | | Job falha e some | sem failed_jobs, ou tries=1 | | Job roda duas vezes | sem lock; use WithoutOverlapping ou ShouldBeUnique | | Horizon parado | Supervisor caiu; verifique supervisorctl status | | Fila trava após deploy | falta queue:restart — worker antigo com código velho |

queue:restart após todo deploy é obrigatório. Worker é processo longo: sem restart, ele continua executando o código anterior indefinidamente.

Scheduler

* * * * * cd /app && php artisan schedule:run >> /dev/null 2>&1

Não roda: verifique o cron do usuário certo, o caminho absoluto e a permissão. Use withoutOverlapping() em tarefa longa.

Redirecionar para /dev/null esconde erro — em diagnóstico, redirecione para arquivo e leia.

Cache e deploy

php artisan config:cache
php artisan route:cache
php artisan view:cache
php artisan queue:restart      # sempre por último

config:cache ativo faz env() retornar null fora dos arquivos de config. É a pegadinha número um do Laravel em produção — use config() sempre.

Octane

  • Estado persiste entre requests: variável estática e singleton vazam dado

entre usuários

  • Toda alteração de código exige octane:reload
  • Vazamento de memória derruba o worker: monitore

Octane é ganho real de performance, mas exige código sem estado global. Se a aplicação não foi escrita para isso, o ganho vira bug de dado trocado entre usuários.

PHP-FPM

systemctl status php8.3-fpm
tail -f /var/log/php8.3-fpm.log

502 no Nginx: FPM morreu ou o socket está errado. pm.max_children baixo: requests enfileiram; alto: OOM.

Limites

  • Não roda migrate:fresh nem migrate:rollback em produção
  • Não roda migrate sem confirmação e sem backup verificado
  • Não altera .env de produção
  • Não expõe valor de variável de ambiente

Skills relacionadas

nginx-expert · linux-sysadmin · postgres-dba · observability · docker-specialist

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.