PHPackages                             indracollective/laravel-artisan-find - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [CLI &amp; Console](/categories/cli)
4. /
5. indracollective/laravel-artisan-find

ActiveLibrary[CLI &amp; Console](/categories/cli)

indracollective/laravel-artisan-find
====================================

Quickly discover and build Laravel artisan commands through guided questioning and intelligent exploration

v1.1.0(8mo ago)13[5 PRs](https://github.com/indracollective/laravel-artisan-find/pulls)MITPHPPHP ^8.2

Since Sep 9Pushed 1mo agoCompare

[ Source](https://github.com/indracollective/laravel-artisan-find)[ Packagist](https://packagist.org/packages/indracollective/laravel-artisan-find)[ Docs](https://github.com/indracollective/laravel-maieutic)[ GitHub Sponsors](https://github.com/indracollective)[ RSS](/packages/indracollective-laravel-artisan-find/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (13)Versions (14)Used By (0)

Laravel Find
============

[](#laravel-find)

[![Latest Version on Packagist](https://camo.githubusercontent.com/6bae4b97aec707be061ce9feea5860a8413a6e39957249d838a8081d4617b77a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f696e647261636f6c6c6563746976652f6c61726176656c2d6172746973616e2d66696e642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/indracollective/laravel-artisan-find)[![GitHub Tests Action Status](https://camo.githubusercontent.com/01ba838834762ec1d8deab59307934fb3ef647c1368539f4a4a0001bc3a8e9d5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f696e647261636f6c6c6563746976652f6c61726176656c2d6172746973616e2d66696e642f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/indracollective/laravel-artisan-find/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/b842944db9927f7f1cb12dce2fdd6fdc907bbb7b9e212dc0c8fdf2c5ce92aa10/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f696e647261636f6c6c6563746976652f6c61726176656c2d6172746973616e2d66696e642f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/indracollective/laravel-artisan-find/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/40ff13304f47286e8235136fcb290272e0d2468abb2c041017d88bf2db42c38f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f696e647261636f6c6c6563746976652f6c61726176656c2d6172746973616e2d66696e642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/indracollective/laravel-artisan-find)

**Quickly discover and build Laravel artisan commands through guided questioning and intelligent exploration.**

Laravel Find transforms the way you work with artisan commands by providing an interactive, guided interface that helps you discover, understand, and build commands with confidence. Inspired by the Socratic tradition of learning through inquiry, this package uses thoughtful questioning to lead you to the exact command you need.

[![Demo](https://github.com/indracollective/laravel-artisan-find/raw/8b914752b56652fa2a08103d36346a84c1af2589/docs/demo.gif)](https://github.com/indracollective/laravel-artisan-find/raw/8b914752b56652fa2a08103d36346a84c1af2589/docs/demo.gif)

Philosophy
----------

[](#philosophy)

Traditional command-line interfaces require you to know exactly what you're looking for. Laravel Find flips this approach by:

- **Discovering through exploration** - Browse commands by type, vendor, or search interactively
- **Learning through guidance** - See command descriptions, arguments, and options before committing
- **Building with confidence** - Preview your complete command before execution
- **Accelerating learning** - Speeds up discovery and usage of artisan commands while building your own knowledge of them

Features
--------

[](#features)

- 🔍 **Smart Command Discovery** - Interactive search with real-time filtering
- 📝 **Interactive Command Building** - Guided prompts for arguments and options
- 📋 **Clipboard Integration** - Copy completed commands directly to your clipboard
- 🎯 **Search Prefilling** - Start with a specific search term: `php artisan find make:model`
- 👀 **Preview Before Copy** - See exactly what will be copied before committing
- 🏷️ **Vendor Detection** - Automatically categorizes commands by their source (Laravel, Livewire, Filament, etc.)
- ⚡ **Zero Configuration** - Works out of the box with any Laravel application

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require --dev indracollective/laravel-artisan-find
```

The package will automatically register itself via Laravel's package discovery.

Usage
-----

[](#usage)

### Basic Usage

[](#basic-usage)

Simply run the find command to start the interactive interface:

```
php artisan find
```

Or prefill with a search term to jump straight to relevant commands:

```
php artisan find controller
```

### How It Works

[](#how-it-works)

1. **Interactive Discovery**: Search through all available commands with real-time filtering
2. **Guided Selection**: Choose your command from intelligently filtered suggestions
3. **Build Your Command**: Follow guided prompts for required arguments and optional parameters
4. **Preview &amp; Copy**: Review your complete command, then copy it to clipboard for immediate use

Usage Examples
--------------

[](#usage-examples)

### Quick Discovery

[](#quick-discovery)

Start typing and watch the list filter in real-time:

```
php artisan find
# Type "migr" to see: migrate, migrate:fresh, migrate:rollback, etc.
```

### Targeted Search

[](#targeted-search)

Jump directly to commands you know you need:

```
php artisan find controller    # Shows all controller-related commands
php artisan find queue         # Shows all queue-related commands
php artisan find test          # Shows testing commands
```

### Vendor-Specific Commands

[](#vendor-specific-commands)

Discover commands from your installed packages:

```
php artisan find filament      # Shows Filament commands
php artisan find livewire      # Shows Livewire commands
php artisan find pest          # Shows Pest testing commands
```

Requirements
------------

[](#requirements)

- PHP 8.2 or higher
- Laravel 11.0 or 12.0
- Terminal that supports Laravel Prompts

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Shea Dawson](https://github.com/indracollective)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance78

Regular maintenance activity

Popularity5

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 80% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1 days

Total

4

Last Release

243d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6ca23b453a4fc5ac237ad4fcc512f68fab5c7b124f403cad1a5848b3fffb6aa2?d=identicon)[sheadawson](/maintainers/sheadawson)

---

Top Contributors

[![sheadawson](https://avatars.githubusercontent.com/u/1166136?v=4)](https://github.com/sheadawson "sheadawson (8 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (1 commits)")

---

Tags

cliterminallaravelartisandiscoveryinteractivecommandsprompts

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/indracollective-laravel-artisan-find/health.svg)

```
[![Health](https://phpackages.com/badges/indracollective-laravel-artisan-find/health.svg)](https://phpackages.com/packages/indracollective-laravel-artisan-find)
```

###  Alternatives

[nunomaduro/laravel-console-dusk

Laravel Console Dusk allows the usage of Laravel Dusk in Laravel/Laravel Zero artisan commands.

16255.4k7](/packages/nunomaduro-laravel-console-dusk)[guratr/nova-command-runner

Laravel Nova tool for running Artisan commands.

43232.8k1](/packages/guratr-nova-command-runner)[socialengine/sniffer-rules

A Lumen 5 and Laravel 5 SquizLabs Code Sniffer 2.0 artisan command. Detect violations of a defined coding standard. It helps your code remains clean and consistent.

1248.2k1](/packages/socialengine-sniffer-rules)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
