accessibility
Design, implement, and audit inclusive digital products using WCAG 2.2 Level AA. Use when building or auditing UI that must meet WCAG 2.2 Level AA, or when…
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.
$ npx -y skills add affaan-m/ECC --skill laravel-plugin-discovery --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/laravel-plugin-discoveryContext preview
The summary Claude sees to decide when to auto-load this skill.
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.
name: laravel-plugin-discovery description: 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. metadata: origin: ECC
Find, evaluate, and choose healthy Laravel packages using the LaraPlugins.io MCP server.
LaraPlugins MCP server must be configured. Add to your `~/.claude.json` mcpServers:
"laraplugins": {
"type": "http",
"url": "https://laraplugins.io/mcp/plugins"
}No API key required — the server is free for the Laravel community.
The LaraPlugins MCP provides two primary tools:
Search packages by keyword, health score, vendor, and version compatibility.
**Parameters:**
Fetch detailed metrics, readme content, and version history for a specific package.
**Parameters:**
---
When the user wants to discover packages for a feature:
1. Use `SearchPluginTool` with relevant keywords 2. Apply filters for health score, Laravel version, or PHP version 3. Review the results with package names, descriptions, and health indicators
When the user wants to assess a specific package:
1. Use `GetPluginDetailsTool` with the package name 2. Review health score, last updated date, Laravel version support 3. Check vendor reputation and risk indicators
When the user needs Laravel or PHP version compatibility:
1. Search with `laravel_compatibility` filter set to their version 2. Or get details on a specific package to see its supported versions
---
SearchPluginTool({
text_search: "authentication",
health_score: "Healthy"
})Returns packages matching "authentication" with healthy status:
SearchPluginTool({
text_search: "admin panel",
laravel_compatibility: "12"
})Returns packages compatible with Laravel 12.
GetPluginDetailsTool({
package: "spatie/laravel-permission",
include_versions: true
})Returns:
SearchPluginTool({
vendor_filter: "spatie",
health_score: "Healthy"
})Returns all healthy packages from vendor "spatie".
---
| Health Band | Meaning | |-------------|---------| | `Healthy` | Active maintenance, recent updates | | `Medium` | Occasional updates, may need attention | | `Unhealthy` | Abandoned or infrequently maintained | | `Unrated` | Not yet assessed |
**Recommendation**: Prefer `Healthy` packages for production applications.
| Version | Notes | |---------|-------| | `13` | Latest Laravel | | `12` | Current stable | | `11` | Still widely used | | `10` | Legacy but common | | `5`-`9` | Deprecated |
**Recommendation**: Match the target project's Laravel version.
// Find healthy, Laravel 12 compatible packages for permissions
SearchPluginTool({
text_search: "permission",
health_score: "Healthy",
laravel_compatibility: "12"
})---
Each result includes:
The detailed response includes:
---
| Scenario | Recommended Approach | |----------|---------------------| | "What package for auth?" | Search "auth" with healthy filter | | "Is spatie/package still maintained?" | Get details, check health score | | "Need Laravel 12 packages" | Search with laravel_compatibility: "12" | | "Find admin panel packages" | Search "admin panel", review results | | "Check vendor reputation" | Search by vendor, check details |
---
1. **Always filter by health** — Use `health_score: "Healthy"` for production projects 2. **Match Laravel version** — Always check `laravel_compatibility` matches the target project 3. **Check vendor reputation** — Prefer packages from known vendors (spatie, laravel, etc.) 4. **Review before recommending** — Use GetPluginDetailsTool f
Your agent can write code, but ECC gives it a coordinated engineering system and toolbox: it plans before it builds, verifies changes with tests, reviews its own work from a fresh context, remembers what matters, and turns repeated wins into reusable skills
Repo: affaan-m/ECC
Design, implement, and audit inclusive digital products using WCAG 2.2 Level AA. Use when building or auditing UI that must meet WCAG 2.2 Level AA, or when…
Full-stack diagnostic for agent and LLM applications. Audits the 12-layer agent stack for wrapper regression, memory pollution, tool discipline failures,…
Head-to-head comparison of coding agents (Claude Code, Aider, Codex, etc.) on custom tasks with pass rate, cost, time, and consistency metrics. Use when…
Design and optimize AI agent action spaces, tool definitions, and observation formatting for higher completion rates. Use when defining or revising an agent's…
Structured self-debugging workflow for AI agent failures using capture, diagnosis, contained recovery, and introspection reports. Use when an agent run fails…
Add x402 payment execution to AI agents with per-task budgets, spending controls, and non-custodial wallets. Supports Base through agentwallet-sdk and X Layer…