docs/ja-JP/skills/laravel-plugin-discovery/SKILL.md
Laravel プラグイン検出、パッケージ管理、依存関係解決、およびサービスプロバイダ統合。
npx skillsauth add affaan-m/everything-claude-code laravel-plugin-discoveryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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:
text_search (string, optional): Keyword to search (e.g. "permission", "admin", "api")health_score (string, optional): Filter by health band — Healthy, Medium, Unhealthy, or Unratedlaravel_compatibility (string, optional): Filter by Laravel version — "5", "6", "7", "8", "9", "10", "11", "12", "13"php_compatibility (string, optional): Filter by PHP version — "7.4", "8.0", "8.1", "8.2", "8.3", "8.4", "8.5"vendor_filter (string, optional): Filter by vendor name (e.g. "spatie", "laravel")page (number, optional): Page number for paginationFetch detailed metrics, readme content, and version history for a specific package.
Parameters:
package (string, required): Full Composer package name (e.g. "spatie/laravel-permission")include_versions (boolean, optional): Include version history in responseWhen the user wants to discover packages for a feature:
SearchPluginTool with relevant keywordsWhen the user wants to assess a specific package:
GetPluginDetailsTool with the package nameWhen the user needs Laravel or PHP version compatibility:
laravel_compatibility filter set to their versionSearchPluginTool({
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:
spatie/laravel-permission)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 |
health_score: "Healthy" for production projectslaravel_compatibility matches the target projectlaravel-patterns — Laravel architecture and patternslaravel-tdd — Test-driven development for Laravellaravel-security — Laravel security best practicesdocumentation-lookup — General library documentation lookup (Context7)tools
Garbage collection for your Claude Code configuration. Periodically scans ~/.claude (skills, memory, hooks, permissions, MCP servers, caches) for redundant, stale, orphaned, or low-value items, then walks the user through a confirm-each-deletion cleanup. Use when the user says "clean up my config", "config GC", "too many skills", "audit my setup", "my .claude is bloated", or asks for a periodic config review.
data-ai
当用户希望通过并行工作、并发 agents、批量工具调用、隔离 worktree 或多条独立验证通道来大幅加速任务、同时不损失正确性时使用。
documentation
在回答之前先读取仓库的实时状态,引导用户了解 ECC 当前的 agents、skills、命令、hooks、规则、安装配置档案以及项目接入流程。
testing
Fact-forcing gate that blocks Edit/Write/Bash (including MultiEdit) and demands concrete investigation (importers, data schemas, user instruction) before allowing the action. Measurably improves output quality by +2.25 points vs ungated agents.