Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

laravel-boostLaravel boost 搜索

Agent Skill

laravel-boost 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

759

周安装

31

GitHub Stars

1

下载量

243
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:laravel-boost(Laravel boost 搜索)
来源仓库:https://github.com/pixel-process-ug/superkit-agents
仓库路径:skills/laravel-boost
安装命令:
npx skills add https://github.com/pixel-process-ug/superkit-agents --skill laravel-boost
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/pixel-process-ug/superkit-agents --skill laravel-boost

简介

laravel-boost 用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中筛选信息的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用该技能。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Laravel Boost

Overview

Laravel Boost is an official Laravel package that accelerates AI-assisted development by providing composable guidelines, on-demand agent skills, an MCP (Model Context Protocol) server, and a documentation API with semantic search across 17,000+ Laravel-specific knowledge pieces. It bridges AI coding tools and the Laravel ecosystem, ensuring that AI agents generate high-quality, convention-compliant Laravel code.

Apply this skill when setting up, configuring, or extending Laravel Boost in a project, or when integrating AI agents with a Laravel application.

Multi-Phase Process

Phase 1: Assessment

  1. Confirm Laravel version compatibility (10.x, 11.x, 12.x)
  2. Identify the AI IDE or agent in use (Cursor, Claude Code, Codex, Gemini CLI, GitHub Copilot, Junie)
  3. Check if an MCP configuration already exists (.mcp.json)
  4. Review existing guideline and skill customizations in .ai/
STOP — Do NOT install Boost without confirming Laravel version compatibility and target IDE.

Phase 2: Installation and Configuration

  1. Install the package and run the installer
  2. Configure MCP server for the target IDE
  3. Set up automatic updates via Composer hooks
  4. Verify MCP tools are accessible from the AI agent
STOP — Do NOT proceed until MCP server connectivity is verified with at least one tool call.

Phase 3: Customization

  1. Add project-specific guidelines in .ai/guidelines/
  2. Create domain-specific skills in .ai/skills/
  3. Override built-in guidelines or skills where project conventions differ
  4. Register custom agents if extending to unsupported IDEs
STOP — Do NOT override built-in guidelines unless project conventions genuinely differ from Laravel defaults.

Phase 4: Validation

  1. Confirm MCP server responds to tool calls (Application Info, Database Schema, Search Docs)
  2. Verify guidelines load in the AI agent's context window
  3. Test skill activation for domain-relevant tasks
  4. Check that boost:update keeps resources current after dependency changes

IDE Setup Decision Table

IDE / AgentSetup MethodConfiguration File
Claude CodeCLI command.mcp.json (auto-generated)
CodexCLI command.mcp.json
Gemini CLICLI command.mcp.json
CursorCommand Palette GUI.cursor/mcp.json
GitHub CopilotCommand Palette GUI.mcp.json
JunieSettings GUI.mcp.json
Custom / UnsupportedCustom agent classManual MCP config

Installation

# Install as a development dependency
composer require laravel/boost --dev

# Run the installer — generates .mcp.json, guideline files, and boost.json
php artisan boost:install

The installer generates:

  • .mcp.json — MCP server configuration for IDE integration
  • Guideline files (CLAUDE.md, AGENTS.md, etc.) tailored to detected packages
  • boost.json — Boost configuration file

IDE-Specific MCP Setup

IDE / AgentSetup Command or Action
Claude Codeclaude mcp add -s local -t stdio laravel-boost php artisan boost:mcp
Codexcodex mcp add laravel-boost -- php "artisan" "boost:mcp"
Gemini CLIgemini mcp add -s project -t stdio laravel-boost php artisan boost:mcp
CursorCommand Palette -> "Open MCP Settings" -> toggle on laravel-boost
GitHub CopilotCommand Palette -> "MCP: List Servers" -> select laravel-boost -> "Start server"
JunieShift-Shift -> "MCP Settings" -> check laravel-boost -> Apply

Manual MCP Configuration

{
    "mcpServers": {
        "laravel-boost": {
            "command": "php",
            "args": ["artisan", "boost:mcp"]
        }
    }
}

Keeping Resources Updated

# Manual update after dependency changes
php artisan boost:update

# Automatic updates — add to composer.json scripts
{
    "scripts": {
        "post-update-cmd": [
            "@php artisan boost:update --ansi"
        ]
    }
}

MCP Server Tools

Laravel Boost exposes the following tools through its MCP server, giving AI agents direct access to application context:

ToolPurposeTypical Use
Application InfoRead PHP and Laravel versions, database engine, ecosystem packages, Eloquent modelsContext discovery at session start
Database SchemaRead full database schemaMigration planning, model generation
Database QueryExecute queries against the databaseData inspection, debugging
Database ConnectionsInspect available database connectionsMulti-database configuration
Search DocsSemantic search across Laravel documentation APIFinding best practices, API references
Last ErrorRead the most recent application log errorDebugging workflow
Read Log EntriesRead last N log entriesMonitoring, debugging
Browser LogsRead logs and errors from browserFrontend debugging
Get Absolute URLConvert relative path URIs to absolute URLsLink generation

AI Guidelines

Guidelines are composable instruction files loaded upfront into the AI agent's context, providing broad conventions and best practices.

Available Built-in Guidelines

PackageVersions Supported
Laravel FrameworkCore, 10.x, 11.x, 12.x
LivewireCore, 2.x, 3.x, 4.x
Flux UICore, Free, Pro
InertiaReact, Vue, Svelte (1.x-3.x)
Tailwind CSSCore, 3.x, 4.x
PestCore, 3.x, 4.x
PHPUnit, Pint, Sail, Pennant, Volt, Wayfinder, Folio, Herd, MCPCore

Custom Guidelines

Create .blade.php or .md files in .ai/guidelines/:

.ai/guidelines/team-conventions.md
.ai/guidelines/billing/stripe-patterns.blade.php

Override a built-in guideline by matching its path:

.ai/guidelines/inertia-react/2/forms.blade.php

Third-Party Package Guidelines

Package authors can ship guidelines at:

resources/boost/guidelines/core.blade.php

Agent Skills

Skills are on-demand knowledge modules activated only when relevant, reducing context window bloat.

Available Built-in Skills

SkillDomain
livewire-developmentLivewire components and reactivity
inertia-react-developmentInertia.js with React
inertia-vue-developmentInertia.js with Vue
inertia-svelte-developmentInertia.js with Svelte
pest-testingPest test patterns
fluxui-developmentFlux UI components
folio-routingFolio page-based routing
tailwindcss-developmentTailwind CSS utility classes
volt-developmentVolt single-file Livewire components
pennant-developmentPennant feature flags
wayfinder-developmentWayfinder type-safe routing
mcp-developmentMCP server/tool development

Custom Skills

Create .ai/skills/{skill-name}/SKILL.md:

---
name: invoice-management
description: Build and work with invoice features including PDF generation and payment tracking.
---

# Invoice Management

## When to use this skill
Use when working with the invoicing module...

Guidelines vs Skills Decision Table

QuestionGuidelinesSkills
When is it loaded?Always — upfront contextOn-demand — when the task matches
How broad is the scope?Foundational conventionsFocused implementation patterns
Impact on context window?Constant (always present)Minimal (loaded only when needed)
Best for?Coding standards, package versionsStep-by-step implementation guides
Content changes often?Rarely (stable conventions)Frequently (evolving patterns)
Team-wide applicability?High (everyone follows)Varies (domain-specific)

Documentation API

Boost provides semantic search across 17,000+ documentation pieces covering:

PackageVersions
Laravel Framework10.x, 11.x, 12.x
Filament2.x, 3.x, 4.x, 5.x
Flux UI2.x Free, 2.x Pro
Inertia1.x, 2.x
Livewire1.x, 2.x, 3.x, 4.x
Nova4.x, 5.x
Pest3.x, 4.x
Tailwind CSS3.x, 4.x

The Search Docs MCP tool queries this API. Guidelines and skills automatically instruct agents to use it when they need implementation details.

When to Use vs When Not Needed

ScenarioUse Laravel Boost?Why
Laravel project with AI-assisted developmentYesPrimary use case
Team uses Cursor, Claude Code, Copilot, or other AI IDEYesMCP integration improves output
Need consistent Laravel conventions across AI-generated codeYesGuidelines enforce standards
Non-Laravel PHP projectNoBoost is Laravel-specific
No AI coding tools in workflowNoBoost's value is in AI agent integration
Production runtime performance optimizationNoBoost is dev-time only, not a runtime optimizer
Already have comprehensive custom AI promptsOptionalBoost may supplement or replace them

Extending Boost

Custom Agent Registration

For AI tools not supported out of the box:

// In AppServiceProvider::boot()
use Laravel\Boost\Boost;

Boost::registerAgent('custom-ide', CustomAgent::class);

The custom agent class must extend Laravel\Boost\Install\Agents\Agent and implement the relevant interfaces:

  • SupportsGuidelines — for guideline file generation
  • SupportsMcp — for MCP server configuration
  • SupportsSkills — for skill file generation

Anti-Patterns / Common Mistakes

Anti-PatternWhy It FailsWhat To Do Instead
Installing in productionBoost is dev-time only, adds unnecessary overheadUse composer require --dev
Overriding every built-in guidelineDrifts from Laravel core team recommendationsOverride only where project genuinely differs
Ignoring boost:updateGuidelines fall out of sync with installed packagesRun after every composer update
Overly broad custom skillsWastes context window tokens when activatedFocus each skill on a single domain
Skipping MCP verificationMisconfigured MCP silently degrades AI agent qualityTest tool calls after installation
Not committing .mcp.jsonTeam members get inconsistent AI agent experienceCommit to version control
Mixing guidelines and skillsContext window pollution with always-loaded contentConventions in guidelines, patterns in skills
Not running installer after upgradeMissing new guideline files and MCP toolsRun php artisan boost:install after major upgrades

Anti-Rationalization Guards

  • Do NOT skip MCP verification because "the install succeeded" -- test at least one tool call.
  • Do NOT override built-in guidelines without a documented reason for the deviation.
  • Do NOT create broad skills -- if it covers more than one domain, split it.
  • Do NOT install Boost in production -- it is a --dev dependency exclusively.
  • Do NOT forget to run boost:update after dependency changes -- stale guidelines degrade AI output.

Documentation Lookup (Context7)

Use mcp__context7__resolve-library-id then mcp__context7__query-docs for up-to-date docs. Returned docs override memorized knowledge.

  • laravel/framework — for core Laravel APIs, configuration, or Artisan commands
  • livewire — for component lifecycle, wire directives, or Alpine.js integration

Integration Points

SkillHow It Connects
laravel-specialistBoost guidelines and skills enhance AI-generated Laravel code quality
php-specialistBoost respects PHP version and PSR standards in generated guidelines
mcp-builderBoost's MCP server is an example of the MCP pattern; extend it for custom tools
self-learningBoost's Application Info tool feeds project context into the learning phase
senior-backendBoost's Database Schema and Query tools support backend architecture decisions
test-driven-developmentBoost's Pest skill provides testing patterns for AI-generated tests

Skill Type

FLEXIBLE — Adapt the process phases to what the project needs. A new project requires full installation and IDE setup (Phases 1-4). An existing Boost installation may only need customization (Phase 3) or validation after a Laravel upgrade (Phase 4). The non-negotiable minimum: verify MCP server connectivity and confirm guidelines match installed package versions.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.19%
按下载量换算83

Claude

33.14%
按下载量换算81

Cursor

18.12%
按下载量换算44

Gemini CLI

9.16%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills