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 roedyrustam/vibes-plug --skill mvc-expertgit clone --depth 1 https://github.com/roedyrustam/vibes-plugWrote 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/roedyrustam/vibes-plug/mvc-expert)<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/mvc-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/mvc-expert/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/roedyrustam/vibes-plug/mvc-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/mvc-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- 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.00051 | $0.03109 |
| Opus 5 | $0.00026 | $0.01554 |
| Sonnet 5 | $0.00010 | $0.00622 |
| Haiku 4.5 | $0.00005 | $0.00311 |
Grade A, and why
mvc-expert 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 5d 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 — 238 lines — stays where its author put it; the contents beside it link to each section on GitHub.
PHP MVC Expert & Modernization
English
Orchestration & Integration
Connects and orchestrates with relevant domain skills like brainstorming, zero-to-prod-orchestrator, and project-context-mapper to ensure cohesive execution.
Description
This skill provides the agent with structured protocols, coding patterns, and architectural guidelines to audit, refactor, and modernize legacy/obsolete PHP codebases (plain spaghetti PHP) into a clean, modern, secure, and scalable Model-View-Controller (MVC) structure adhering to PSR standards and modern PHP (v8.2+) capabilities.
Instructions
1. Audit Protocol for Legacy PHP
Before writing new structures, run a detailed audit on the legacy files to map out:
- Routing & Entry Points: Identify raw
.phpfiles acting as endpoints (e.g.,about.php,contact.php,process.php). - Data Access & SQL: Find inline SQL queries, string-concatenated queries (SQL Injection risks), and direct
mysqliormysql_*usages. - Session & Global State: Identify direct session mutations (
$_SESSION), raw cookies, and unchecked global variables ($_GET,$_POST,$_REQUEST). - Spaghetti Mixing: Locate files where database connection, business logic, session validation, and HTML rendering are in a single script.
- Hardcoded Secrets: Identify database credentials, API keys, and configurations defined inside individual files.
2. Modernization Strategy & Composer Setup
Apply a standard project directory structure and initialize dependency management:
- PSR-4 Autoloading: Create a
composer.jsonfile and define namespace mappings:{ "autoload": { "psr-4": { "App\\": "src/" } } } - Standard Directory Structure:
public/: Single entry point containingindex.php(Front Controller), assets (CSS, JS), and uploaded files.src/: Root namespace for MVC structure (src/Models/,src/Controllers/,src/Views/,src/Core/).config/: Database configurations, router configurations, and app configurations..env&.env.example: Store environment configurations.
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.
- 5d ago First seen · 238 lines · 51 tokens per session scan A 7855f2308b8b
mvc-expert is a skill published in the GitHub repository roedyrustam/vibes-plug (50 stars, last pushed yesterday), licensed MIT. It adds 51 tokens to every session and 3,109 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-09-03.
Other skills, from other repositories
php-pro
A set of practices for building PHP applications with modern PHP, Laravel, or Symfony. PHP is a programming language commonly used for server-side web applications.
laravel-plugin-discovery
Discover and evaluate Laravel packages via LaraPlugins.io MCP. Use when the user wants to find plugins, check package health, or assess Laravel/PHP compatibility.
laravel-patterns
Laravel architecture patterns, routing/controllers, Eloquent ORM, service layers, queues, events, caching, and API resources for production apps.
laravel-expert
Laravel & PHP Development Instructions for GitHub Copilot.
php-laravel-codestyle
Custom Instructions: PHP 8+ & Laravel Architecture Expert.
bd-better-route-bridge
Compose better-data DTOs with the better-route library — use BetterRouteBridge::{get, post, put, patch, delete} to register a REST route that hydrates the request into a DTO, validates, calls the handler with (DataObject, mixed $request), and presents returned DataObject values through Presenter with…