Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add majdghithan/agent-skills --skill laravel-mixpostgit clone --depth 1 https://github.com/majdghithan/agent-skillsWrote 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/majdghithan/agent-skills/laravel-mixpost)<a href="https://agentmods.dev/skills/majdghithan/agent-skills/laravel-mixpost"><img src="https://agentmods.dev/badge/skills/majdghithan/agent-skills/laravel-mixpost/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/majdghithan/agent-skills/laravel-mixpost"><img src="https://agentmods.dev/badge/skills/majdghithan/agent-skills/laravel-mixpost.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00129 | $0.01654 |
| Opus 5 | $0.00064 | $0.00827 |
| Sonnet 5 | $0.00026 | $0.00331 |
| Haiku 4.5 | $0.00013 | $0.00165 |
Grade A, and why
laravel-mixpost 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 11d 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 — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Mixpost (self-hosted social scheduler on Laravel)
Mixpost by Inovector is a self-hostable social-media management/scheduling app that installs into a Laravel application. It publishes to LinkedIn, Facebook Pages, Instagram, TikTok, YouTube, X, and more, on a schedule, from your own server - no third-party SaaS fees.
Editions - pick the right one (this decision saves pain)
- Mixpost Lite - free/open-source, single workspace, core scheduling. Good for one account.
- Mixpost Pro / Team (
inovector/mixpost-pro-team) - paid license; multiple workspaces, more providers, media library, AI features, engagement inbox, a built-in MCP server (v6+). The right choice for a solo operator or small team. - Mixpost Enterprise (
inovector/mixpost-enterprise) - adds a full SaaS layer (customers, subscriptions, payments,mixpost_e_*tables). Do NOT use this for a single-user/internal tool - the SaaS layer adds an email-verification wall, a second asset bundle, and payment-webhook CSRF handling that cause avoidable early bugs. An Enterprise license key also authorizes Pro, so you can install Pro with the same credentials.
Requirements
| Dependency | Requirement |
|---|---|
| PHP | 8.3+ (8.4+ if on Laravel 13 / Symfony 8) |
| Laravel | 11 / 12 / 13 (per Mixpost major) |
| Redis | 6.2+ |
| Queues | laravel/horizon ^5 (Mixpost provides supervisor config) |
| FFmpeg | required (video processing) |
| DB | MySQL or PostgreSQL |
Install (Pro/Team)
# auth.json holds the packages.inovector.com license credentials - GITIGNORE IT (contains the key)
composer require inovector/mixpost-pro-team "^6.0"
php artisan mixpost:install # migrations, config, first workspace
php artisan mixpost:publish-assets # publishes to public/vendor/mixpost
Then follow the install steps for job batching config, CSRF exclusions for provider webhooks, QUEUE_CONNECTION=redis, Horizon supervisors ('defaults' => \Inovector\Mixpost\Horizon::supervisors()), and creating the admin user. Serve the app over HTTPS - LinkedIn/Meta OAuth redirect URLs require it.
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.
- 11d ago First seen · 86 lines · 129 tokens per session scan A f5571eba9e0b
laravel-mixpost is a skill published in the GitHub repository majdghithan/agent-skills (7 stars, last pushed 1mo ago), licensed MIT. It adds 129 tokens to every session and 1,654 once invoked, about $0.0006 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-31.
Other skills, from other repositories
olakunlevpn-filament-skills
Use when writing, reviewing, or refactoring Filament PHP v5 code -- resources, forms, tables, infolists, actions, widgets, panels, relation managers, multi-tenancy, testing, or plugin development. Always apply these standards to all Filament work.
powergrid-theme
Create or update a PowerGrid v7 theme using the Theme abstract class, per-section token methods (layout/header/table/footer/cols/tabs plus filter/editable/toggleable), config themeoverrides, or ArrayTheme.
upgrade-theme-v6-to-v7
Migrates a v6 Theme class to the v7 architecture: a tiny struct() plus per-section token methods (layout/header/table/footer/cols/tabs + filter/editable/toggleable) with parentTheme inheritance.
create-powergrid-plugin
Create a complete PowerGrid plugin from scratch, including PHP class, Column macro, Blade view, Alpine.js component, and registration.
module:assistant
Add an AI assistant chat panel to any Laravel project — with tool calling, streaming, and MCP support.
laravel-spatie-event-sourcing
Use this skill any time a user works with Laravel and event sourcing together — whether setting up spatie/laravel-event-sourcing for the first time, designing a new event-sourced domain (aggregates, events, projectors, reactors), generating code for bounded contexts, or debugging issues with AggregateRoot…