Installation:
composer require sandermuller/boost-skills
Pair with a Sync Engine:
sandermuller/boost-core or laravel/boost to sync skills to your AI agent (e.g., Claude, Cursor, Copilot).composer require laravel/boost
php artisan boost:install
First Use Case:
code-review.md skill.bug-fixing.md for guided debugging.spec-driven-implementation.md for test-first workflows.jira-workflows.md, deployment.md).Sync Skills to AI Agent:
config/boost.php to include sandermuller/boost-skills as a skill source:
'skills' => [
'sandermuller/boost-skills',
// Other skill packages...
],
php artisan boost:sync
Trigger Skills via CLI:
boost:run command with a skill name:
php artisan boost:run code-review --file=path/to/pr.diff
php artisan boost:run jira-workflows --ticket=PROJ-123
Embed Skills in CI/CD:
.github/workflows/ci.yml to auto-generate PR reviews:
- name: Run AI Code Review
run: php artisan boost:run code-review --file=diff.patch
laravel-* tagged skills (e.g., laravel-migrations.md) for framework-specific tasks.php artisan migrate) with AI assistance:
// app/Console/Commands/MigrateWithAI.php
public function handle() {
$this->call('boost:run', ['skill' => 'laravel-migrations']);
$this->call('migrate');
}
storage/boost/skills).skills/ directory in your Claude workspace settings.No Runtime Code:
laravel/boost) is properly configured to parse and distribute them.boost-core or laravel/boost is installed and the boost:sync command works.Tag Mismatches:
laravel-*) won’t load if the sync engine doesn’t filter by tags.--tags=laravel).Skill Overlap:
bug-fixing.md) may conflict with project-specific AI prompts.storage/boost/skills/.AI Agent Limitations:
bug-fixing/debugging.md, bug-fixing/testing.md).Sync Issues:
php artisan boost:sync --verbose
storage/logs/boost.log for errors.Skill Not Loading:
vendor/sandermuller/boost-skills/skills/ and isn’t filtered out by tags.Custom Skill Paths:
config/boost.php:
'skill_paths' => [
base_path('custom-skills'),
base_path('vendor/sandermuller/boost-skills/skills'),
],
Dynamic Skill Loading:
// app/Providers/BoostServiceProvider.php
public function boot() {
$this->app->when(AiAgent::class)
->needs('$skills')
->give(fn () => collect(config('boost.skills'))
->map(fn ($skill) => file_get_contents("vendor/{$skill}/skills/*.md"))
->filter()
->values()
);
}
Add Custom Skills:
.md files in storage/boost/skills/ or a custom path (see above).storage/boost/skills/project-specific/release-checklist.md.Modify Existing Skills:
storage/boost/skills/ and editing locally.Create Skill Templates:
cp -r vendor/sandermuller/boost-skills/skills custom-skills/
composer require yourname/your-skills
Integrate with Git Hooks:
pre-commit or pre-push:
# .git/hooks/pre-commit
#!/bin/sh
php artisan boost:run code-review --file=git diff --cached
How can I help you explore Laravel packages today?