lc:boost-inspect

Inspect live Laravel application state via database schema, Eloquent models, and runtime logs.

12|2|Updated Apr 8, 2026
One-click install
npx skills add https://github.com/edulazaro/laraclaude --skill lc-boost-inspect
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: lc:boost-inspect
Source: https://github.com/edulazaro/laraclaude/tree/main/skills/boost-inspect
Command: npx skills add https://github.com/edulazaro/laraclaude --skill lc-boost-inspect

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill solves the inaccuracy of static code analysis by inspecting the live state of a Laravel application, confirming database schema, model relationships, and runtime errors against the actual running environment rather than just source code.

Core Features & Use Cases

  • Runtime Verification: Validates database schema drift, orphaned foreign keys, and Eloquent model relationships against the live database.
  • Error Analysis: Aggregates and analyzes recent application logs and runtime exceptions to identify root causes.
  • Environment Awareness: Automatically detects the execution environment (Docker, WSL, or local) to run diagnostic commands safely and effectively.

Quick Start

Run the boost inspect skill to generate a full runtime report of your current Laravel application state.

Frequently Asked Questions about lc:boost-inspect

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I inspect a live Laravel application to find database schema drift?

Runtime Laravel application inspection validates database schema drift by querying the live database and Eloquent models. It confirms actual running environment state rather than relying on static code analysis.

What is the best way to identify N+1 query problems in Laravel Eloquent?

Identifying N+1 query problems in Laravel Eloquent requires runtime inspection of the live application state. This skill queries the running environment to detect relationship inefficiencies that static analysis cannot catch.

Can I debug Laravel production environments without a local PHP artisan setup?

Debugging Laravel production-like environments requires either the Laravel Boost MCP server or a functional local PHP artisan environment. This ensures safe execution of diagnostic queries against the live application.

How do I check for orphaned foreign keys in my Eloquent models?

Checking for orphaned foreign keys in Eloquent models involves verifying model relationships against the live database. Runtime inspection confirms referential integrity by querying the actual schema rather than source code.

Does Laravel runtime inspection work inside Docker or WSL environments?

Laravel runtime inspection automatically detects execution environments like Docker, WSL, or local setups. Environment awareness ensures diagnostic commands run safely and effectively across different infrastructure configurations.

Why does static code analysis miss Laravel migration integrity issues?

Static code analysis misses Laravel migration integrity issues because it cannot verify the live database state. Runtime inspection solves this inaccuracy by aggregating logs, checking schema drift, and confirming actual runtime behavior.