Skip to content

v0.11.0 — Laravel Boost skill

Latest

Choose a tag to compare

@leek leek released this 06 May 08:23
Immutable release. Only release title and notes can be modified.

What's new

Adds a Laravel Boost-compatible AI agent skill at resources/boost/skills/vendor-cleanup-audit/SKILL.md. Apps that install this package and run php artisan boost:install will be offered the skill automatically.

Skill: vendor-cleanup-audit

Walks AI agents through auditing a Laravel app's published vendor files (config/, database/migrations/, lang/vendor/, resources/views/vendor/) for:

  • Drift — local copies out of sync with vendor originals
  • Cruft — UNCHANGED published files that can be deleted
  • Orphans — leftover files from uninstalled packages
  • Missing — vendor files not yet published locally

Skill explicitly instructs agents to treat the vendor-cleanup:* command output as a worklist of paths to verify, not a verdict. Every finding must be independently confirmed with Read, diff -u, composer show, grep -r, and git log before any deletion is proposed.

Install

composer require leek/laravel-vendor-cleanup --dev
php artisan boost:install

Full Changelog: v0.10.0...v0.11.0