PHPackages                             usamamuneerchaudhary/filament-command-palette - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. usamamuneerchaudhary/filament-command-palette

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

usamamuneerchaudhary/filament-command-palette
=============================================

A Spotlight/CMD+K style command palette for quick navigation and actions across Filament panels.

1.2(3mo ago)85781MITPHPPHP ^8.2

Since Feb 18Pushed 3mo agoCompare

[ Source](https://github.com/usamamuneerchaudhary/filament-command-palette)[ Packagist](https://packagist.org/packages/usamamuneerchaudhary/filament-command-palette)[ GitHub Sponsors](https://github.com/usamamuneerchaudhary)[ RSS](/packages/usamamuneerchaudhary-filament-command-palette/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (6)Versions (3)Used By (0)

Filament Command Palette
========================

[](#filament-command-palette)

[![Latest Version on Packagist](https://camo.githubusercontent.com/8cfbc8a9c36b465300ed4538c573e5a24eafcfd17443687d5feba91af53f3e9a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7573616d616d756e6565726368617564686172792f66696c616d656e742d636f6d6d616e642d70616c657474653f7374796c653d666c61742d7371756172652667)](https://packagist.org/packages/usamamuneerchaudhary/filament-command-palette)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/f7a471a7aa2e011a7e5763255f9c7474a19327cfd3c5666b288714eacebf3986/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7573616d616d756e6565726368617564686172792f66696c616d656e742d636f6d6d616e642d70616c657474652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/usamamuneerchaudhary/filament-command-palette/?branch=main)[![CodeFactor](https://camo.githubusercontent.com/c703471448c9b2a917afad35180ca88b6a77e01e6aa4bcba6dbddadd129d6644/68747470733a2f2f7777772e636f6465666163746f722e696f2f7265706f7369746f72792f6769746875622f7573616d616d756e6565726368617564686172792f66696c616d656e742d636f6d6d616e642d70616c657474652f6261646765)](https://www.codefactor.io/repository/github/usamamuneerchaudhary/filament-command-palette)[![Build Status](https://camo.githubusercontent.com/842991ef8c6d68b9ee98f399b95e938b8401db00bd7a3676ee8813d85beecd0e/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7573616d616d756e6565726368617564686172792f66696c616d656e742d636f6d6d616e642d70616c657474652f6261646765732f6275696c642e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/usamamuneerchaudhary/filament-command-palette/build-status/main)[![Code Intelligence Status](https://camo.githubusercontent.com/49d62fd81680b757cfab2b3c7110bf950b9545605ccf6d7831a58af4f0538b02/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7573616d616d756e6565726368617564686172792f66696c616d656e742d636f6d6d616e642d70616c657474652f6261646765732f636f64652d696e74656c6c6967656e63652e7376673f623d6d61696e)](https://scrutinizer-ci.com/code-intelligence)[![Total Downloads](https://camo.githubusercontent.com/a5409bfd883c2e63598a14aa1a398f4a9547c31b0ca33ec4dff0b235c1083dbf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7573616d616d756e6565726368617564686172792f66696c616d656e742d636f6d6d616e642d70616c657474653f7374796c653d666c61742d737175617265)](https://packagist.org/packages/usamamuneerchaudhary/filament-command-palette)[![Licence](https://camo.githubusercontent.com/01fae9c11f99997cd5072c0c4b3867a1f322c725f81854044a0483c281db514b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7573616d616d756e6565726368617564686172792f66696c616d656e742d636f6d6d616e642d70616c657474653f7374796c653d666c61742d737175617265)](https://github.com/usamamuneerchaudhary/filament-command-palette/blob/HEAD/LICENSE.md)

[![Filament Command Palette](public/gifs/filament-command-palatte.gif)](public/gifs/filament-command-palatte.gif)

A Spotlight/CMD+K style command palette for quick navigation and actions across Filament panels.

Features
--------

[](#features)

- **Keyboard shortcut**: Press `Cmd+K` (Mac) or `Ctrl+K` (Windows/Linux) to open
- **Quick navigation**: Jump to any page, resource, or navigation item
- **Search**: Filter commands by typing
- **Keyboard navigation**: Use arrow keys and Enter to select
- **Optional topbar button**: Click to open from the topbar

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

[](#installation)

```
composer require usamamuneerchaudhary/filament-command-palette
```

Setup
-----

[](#setup)

Register the plugin in your Filament panel provider:

```
use Usamamuneerchaudhary\CommandPalette\FilamentCommandPalettePlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            FilamentCommandPalettePlugin::make(),
            // ...
        ]);
}
```

Configuration
-------------

[](#configuration)

Publish the config file (optional):

```
php artisan vendor:publish --tag=command-palette-config
```

Options in `config/command-palette.php`:

- `key_bindings`: Keyboard shortcuts (default: `['mod+k']`)
- `show_topbar_button`: Show optional trigger in topbar (default: `true`)
- `max_results`: Max results per category (default: `10`)
- `include_publish_views_command`: Show "Publish views" in the command palette (default: `true`)
- `custom_commands`: Array of closures returning `CommandItem[]` for extensibility

Publishing Views
----------------

[](#publishing-views)

You can publish the package views to customize the command palette layout, styling, and behavior. Published views go to `resources/views/vendor/command-palette/` and can be edited freely.

**From the command palette:** Open the palette (Cmd+K), search for "Publish views", and select it to open a page with a one-click publish button.

**From the terminal:**

```
php artisan command-palette:publish-views
```

Or using Laravel's vendor publish directly:

```
php artisan vendor:publish --tag=command-palette-views
```

Use `--force` to overwrite existing published views.

Custom Commands
---------------

[](#custom-commands)

Add custom commands via config:

```
'custom_commands' => [
    fn () => [
        \Usamamuneerchaudhary\CommandPalette\Support\CommandItem::make(
            'My Action',
            '/my-url',
            'Custom',
        ),
    ],
],
```

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

[](#requirements)

- PHP 8.2+
- Filament v5
- Laravel 11 or 12

Screenshots
-----------

[](#screenshots)

 [![Screenshot](public/screenshots/command-palette.png)](public/screenshots/command-palette.png)

License
-------

[](#license)

MIT

###  Health Score

43

—

FairBetter than 91% of packages

Maintenance82

Actively maintained with recent releases

Popularity26

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~0 days

Total

2

Last Release

90d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/adb088072d2e9f335a0c37e9e5481d8d3c582ccc4b4ca721850b1e32b3a480e8?d=identicon)[usamamuneerchaudhary](/maintainers/usamamuneerchaudhary)

---

Top Contributors

[![usamamuneerchaudhary](https://avatars.githubusercontent.com/u/24513380?v=4)](https://github.com/usamamuneerchaudhary "usamamuneerchaudhary (25 commits)")

---

Tags

phplaravelfilamentfilamentphpusamamuneerchaudharycommand-palette

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/usamamuneerchaudhary-filament-command-palette/health.svg)

```
[![Health](https://phpackages.com/badges/usamamuneerchaudhary-filament-command-palette/health.svg)](https://phpackages.com/packages/usamamuneerchaudhary-filament-command-palette)
```

###  Alternatives

[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[bezhansalleh/filament-google-analytics

Google Analytics integration for FilamentPHP

205144.8k5](/packages/bezhansalleh-filament-google-analytics)[tapp/filament-google-autocomplete-field

Filament plugin that provides a Google Autocomplete field

3098.1k](/packages/tapp-filament-google-autocomplete-field)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

58289.3k3](/packages/creagia-filament-code-field)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)

PHPackages © 2026

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