Coolify is a self-hosted platform for managing servers and deploying applications, databases, static sites, and other services on hardware controlled by the user. Developers and teams use it as an alternative to hosted application platforms such as Heroku, Netlify, and Vercel, while the catalogue entries help coding agents operate Coolify.
Borrowing it
Nothing to install: this file belongs to coollabsio/coolify. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/coollabsio/coolify/main/.agents/skills/laravel-actions/SKILL.mdgit clone --depth 1 https://github.com/coollabsio/coolifyWrote 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.
[](https://agentmods.dev/skills/coollabsio/coolify/laravel-actions)<a href="https://agentmods.dev/skills/coollabsio/coolify/laravel-actions"><img src="https://agentmods.dev/badge/skills/coollabsio/coolify/laravel-actions/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.
<a href="https://agentmods.dev/skills/coollabsio/coolify/laravel-actions"><img src="https://agentmods.dev/badge/skills/coollabsio/coolify/laravel-actions.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- Snyk pass
- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00062 | $0.02255 |
| Opus 5 | $0.00031 | $0.01128 |
| Sonnet 5 | $0.00012 | $0.00451 |
| Haiku 4.5 | $0.00006 | $0.00226 |
Grade A, and why
laravel-actions scanned grade A with 0 findings 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 9d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 303 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Laravel Actions or lorisleiva/laravel-actions
Overview
Use this skill to implement or update actions based on lorisleiva/laravel-actions with consistent structure and predictable testing patterns.
Quick Workflow
- Confirm the package is installed with
composer show lorisleiva/laravel-actions. - Create or edit an action class that uses
Lorisleiva\Actions\Concerns\AsAction. - Implement
handle(...)with the core business logic first. - Add adapter methods only when needed for the requested entrypoint:
asController(+ route/invokable controller usage)asJob(+ dispatch)asListener(+ event listener wiring)asCommand(+ command signature/description)
- Add or update tests for the chosen entrypoint.
- When tests need isolation, use action fakes (
MyAction::fake()) and assertions (MyAction::assertDispatched()).
Base Action Pattern
Use this minimal skeleton and expand only what is needed.
<?php
namespace App\Actions;
use Lorisleiva\Actions\Concerns\AsAction;
class PublishArticle
{
use AsAction;
public function handle(int $articleId): bool
{
return true;
}
}
Project Conventions
- Place action classes in
App\Actionsunless an existing domain sub-namespace is already used. - Use descriptive
VerbNounnaming (e.g.PublishArticle,SyncVehicleTaxStatus). - Keep domain/business logic in
handle(...); keep transport and framework concerns in adapter methods (asController,asJob,asListener,asCommand). - Prefer explicit parameter and return types in all action methods.
- Prefer PHPDoc for complex data contracts (e.g. array shapes), not inline comments.
When to Use an Action
- Use an Action when the same use-case needs multiple entrypoints (HTTP, queue, event, CLI) or benefits from first-class orchestration/faking.
- Keep a plain service class when logic is local, single-entrypoint, and unlikely to be reused as an Action.
Entrypoint Patterns
Run as Object
What ships with it
8 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.
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.
- 9d ago First seen · 303 lines · 62 tokens per session scan A 8666c42fed57
laravel-actions is a skill published in the GitHub repository coollabsio/coolify (61,592 stars, last pushed today), licensed Apache-2.0. It adds 62 tokens to every session and 2,255 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
developing-with-laravel
Laravel framework patterns for PHP applications including Eloquent ORM, migrations, routing, queues, and Blade templates. Use when building Laravel applications or working with Laravel projects.
laravel-specialist
Build and configure Laravel 10+ applications, including creating Eloquent models and relationships, implementing Sanctum authentication, configuring Horizon queues, designing RESTful APIs with API resources, and building reactive interfaces with Livewire. Use when creating Laravel models, setting up queue workers…
owl-admin-devtools-generator
A development guide for Owl Admin, a Laravel-based administration system, covering its code generator, API templates, relationships, and visual pages.
llamaindex-development
Expert guidance for LlamaIndex development including RAG applications, vector stores, document processing, query engines, and building production AI applications.
zhihu-search
A search skill for finding content on Zhihu, a Chinese question-and-answer and article platform, through its search API.
craftcms
Craft CMS 5 plugin and module development — extending Craft with PHP. Covers elements, element queries, services, models, records, controllers, migrations, queue jobs, console commands, field types, native fields, events, behaviors, Twig extensions, widgets, filesystems, permissions, project config, GraphQL, testing…