Add the Command Palette module (#37908)
Windows Command Palette ("CmdPal") is the next iteration of PowerToys Run. With extensibility at its core, the Command Palette is your one-stop launcher to start _anything_.
By default, CmdPal is bound to <kbd>Win+Alt+Space</kbd>.


----
This brings the current preview version of CmdPal into the upstream PowerToys repo. There are still lots of bugs to work out, but it's reached the state we're ready to start sharing it with the world. From here, we can further collaborate with the community on the features that are important, and ensuring that we've got a most robust API to enable developers to build whatever extensions they want.
Most of the built-in PT Run modules have already been ported to CmdPal's extension API. Those include:
* Installed apps
* Shell commands
* File search (powered by the indexer)
* Windows Registry search
* Web search
* Windows Terminal Profiles
* Windows Services
* Windows settings
There are a couple new extensions built-in
* You can now search for packages on `winget` and install them right from the palette. This also powers searching for extensions for the palette
* The calculator has an entirely new implementation. This is currently less feature complete than the original PT Run one - we're looking forward to updating it to be more complete for future ingestion in Windows
* "Bookmarks" allow you to save shortcuts to files, folders, and webpages as top-level commands in the palette.
We've got a bunch of other samples too, in this repo and elsewhere
### PowerToys specific notes
CmdPal will eventually graduate out of PowerToys to live as its own application, which is why it's implemented just a little differently than most other modules. Enabling CmdPal will install its `msix` package.
The CI was minorly changed to support CmdPal version numbers independent of PowerToys itself. It doesn't make sense for us to start CmdPal at v0.90, and in the future, we want to be able to rev CmdPal independently of PT itself.
Closes #3200, closes #3600, closes #7770, closes #34273, closes #36471, closes #20976, closes #14495
-----
TODOs et al
**Blocking:**
- [ ] Images and descriptions in Settings and OOBE need to be properly defined, as mentioned before
- [ ] Niels is on it
- [x] Doesn't start properly from PowerToys unless the fix PR is merged.
- https://github.com/zadjii-msft/PowerToys/pull/556 merged
- [x] I seem to lose focus a lot when I press on some limits, like between the search bar and the results.
- This is https://github.com/zadjii-msft/PowerToys/issues/427
- [x] Turned off an extension like Calculator and it was still working.
- Need to get rid of that toggle, it doesn't do anything currently
- [x] `ListViewModel.<FetchItems>` crash
- Pretty confident that was fixed in https://github.com/zadjii-msft/PowerToys/pull/553
**Not blocking / improvements:**
- Show the shortcut through settings, as mentioned before, or create a button that would open CmdPalette settings.
- When PowerToys starts, CmdPalette is always shown if enabled. That's weird when just starting PowerToys/ logging in to the computer with PowerToys auto-start activated. I think this should at least be a setting.
- Needing to double press a result for it to do the default action seems quirky. If one is already selected, I think just pressing should be enough for it to do the action.
- This is currently a setting, though we're thinking of changing the setting even more: https://github.com/zadjii-msft/PowerToys/issues/392
- There's no URI extension. Was surprised when typing a URL that it only proposed a web search.
- [x] There's no System commands extension. Was expecting to be able to quickly restart the computer by typing restart but it wasn't there.
- This is in PR https://github.com/zadjii-msft/PowerToys/pull/452
---------
Co-authored-by: joadoumie <98557455+joadoumie@users.noreply.github.com>
Co-authored-by: Jordi Adoumie <jordiadoumie@microsoft.com>
Co-authored-by: Mike Griese <zadjii@gmail.com>
Co-authored-by: Niels Laute <niels.laute@live.nl>
Co-authored-by: Michael Hawker <24302614+michael-hawker@users.noreply.github.com>
Co-authored-by: Stefan Markovic <57057282+stefansjfw@users.noreply.github.com>
Co-authored-by: Seraphima <zykovas91@gmail.com>
Co-authored-by: Jaime Bernardo <jaime@janeasystems.com>
Co-authored-by: Kristen Schau <47155823+krschau@users.noreply.github.com>
Co-authored-by: Eric Johnson <ericjohnson327@gmail.com>
Co-authored-by: Ethan Fang <ethanfang@microsoft.com>
Co-authored-by: Yu Leng (from Dev Box) <yuleng@microsoft.com>
Co-authored-by: Clint Rutkas <clint@rutkas.com>
2025-03-19 03:39:57 -05:00
|
|
|
namespace Microsoft.CommandPalette.Extensions
|
|
|
|
|
{
|
|
|
|
|
[contractversion(1)]
|
|
|
|
|
apicontract ExtensionsContract {}
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IExtension {
|
|
|
|
|
IInspectable GetProvider(ProviderType providerType);
|
|
|
|
|
void Dispose();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
enum ProviderType {
|
|
|
|
|
Commands = 0,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IIconData {
|
|
|
|
|
String Icon { get; };
|
|
|
|
|
Windows.Storage.Streams.IRandomAccessStreamReference Data { get; };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IIconInfo {
|
|
|
|
|
IIconData Light { get; };
|
|
|
|
|
IIconData Dark { get; };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
struct KeyChord
|
|
|
|
|
{
|
|
|
|
|
Windows.System.VirtualKeyModifiers Modifiers;
|
|
|
|
|
Int32 Vkey;
|
|
|
|
|
Int32 ScanCode;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface INotifyPropChanged {
|
|
|
|
|
event Windows.Foundation.TypedEventHandler<Object, IPropChangedEventArgs> PropChanged;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IPropChangedEventArgs {
|
|
|
|
|
String PropertyName { get; };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface INotifyItemsChanged {
|
|
|
|
|
event Windows.Foundation.TypedEventHandler<Object, IItemsChangedEventArgs> ItemsChanged;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IItemsChangedEventArgs {
|
|
|
|
|
Int32 TotalItems { get; };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface ICommand requires INotifyPropChanged{
|
|
|
|
|
String Name{ get; };
|
|
|
|
|
String Id{ get; };
|
|
|
|
|
IIconInfo Icon{ get; };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum CommandResultKind {
|
|
|
|
|
Dismiss, // Reset the palette to the main page and dismiss
|
|
|
|
|
GoHome, // Go back to the main page, but keep it open
|
|
|
|
|
GoBack, // Go back one level
|
|
|
|
|
Hide, // Keep this page open, but hide the palette.
|
|
|
|
|
KeepOpen, // Do nothing.
|
|
|
|
|
GoToPage, // Go to another page. GoToPageArgs will tell you where.
|
|
|
|
|
ShowToast, // Display a transient message to the user
|
|
|
|
|
Confirm, // Display a confirmation dialog
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum NavigationMode {
|
|
|
|
|
Push, // Push the target page onto the navigation stack
|
|
|
|
|
GoBack, // Go back one page before navigating to the target page
|
|
|
|
|
GoHome, // Go back to the home page before navigating to the target page
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[uuid("f9d6423b-bd5e-44bb-a204-2f5c77a72396")]
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface ICommandResultArgs{};
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface ICommandResult {
|
|
|
|
|
CommandResultKind Kind { get; };
|
|
|
|
|
ICommandResultArgs Args { get; };
|
|
|
|
|
}
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IGoToPageArgs requires ICommandResultArgs{
|
|
|
|
|
String PageId { get; };
|
|
|
|
|
NavigationMode NavigationMode { get; };
|
|
|
|
|
}
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IToastArgs requires ICommandResultArgs{
|
|
|
|
|
String Message { get; };
|
|
|
|
|
ICommandResult Result { get; };
|
|
|
|
|
}
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IConfirmationArgs requires ICommandResultArgs{
|
|
|
|
|
String Title { get; };
|
|
|
|
|
String Description { get; };
|
|
|
|
|
ICommand PrimaryCommand { get; };
|
|
|
|
|
Boolean IsPrimaryCommandCritical { get; };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This is a "leaf" of the UI. This is something that can be "done" by the user.
|
|
|
|
|
// * A ListPage
|
|
|
|
|
// * the MoreCommands flyout of for a ListItem or a MarkdownPage
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IInvokableCommand requires ICommand {
|
|
|
|
|
ICommandResult Invoke(Object sender);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[uuid("ef5db50c-d26b-4aee-9343-9f98739ab411")]
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IFilterItem {}
|
|
|
|
|
|
|
|
|
|
[uuid("0a923c7f-5b7b-431d-9898-3c8c841d02ed")]
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface ISeparatorFilterItem requires IFilterItem {}
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
CmdPal: Filters for DynamicListPage? Yes, please. (#40783)
Closes: #40382
## To-do list
- [x] Add support for "single-select" filters to DynamicListPage
- [x] Filters can contain icons
- [x] Filter list can contain separators
- [x] Update Windows Services built-in extension to support filtering by
all, started, stopped, and pending services
- [x] Update SampleExtension dynamic list sample to filter.
## Example of filters in use
```C#
internal sealed partial class ServicesListPage : DynamicListPage
{
public ServicesListPage()
{
Icon = Icons.ServicesIcon;
Name = "Windows Services";
var filters = new ServiceFilters();
filters.PropChanged += Filters_PropChanged;
Filters = filters;
}
private void Filters_PropChanged(object sender, IPropChangedEventArgs args) => RaiseItemsChanged();
public override void UpdateSearchText(string oldSearch, string newSearch) => RaiseItemsChanged();
public override IListItem[] GetItems()
{
// ServiceHelper.Search knows how to filter based on the CurrentFilterIds provided
var items = ServiceHelper.Search(SearchText, Filters.CurrentFilterIds).ToArray();
return items;
}
}
public partial class ServiceFilters : Filters
{
public ServiceFilters()
{
// This would be a default selection. Not providing this will cause the filter
// control to display the "Filter" placeholder text.
CurrentFilterIds = ["all"];
}
public override IFilterItem[] GetFilters()
{
return [
new Filter() { Id = "all", Name = "All Services" },
new Separator(),
new Filter() { Id = "running", Name = "Running", Icon = Icons.GreenCircleIcon },
new Filter() { Id = "stopped", Name = "Stopped", Icon = Icons.RedCircleIcon },
new Filter() { Id = "paused", Name = "Paused", Icon = Icons.PauseIcon },
];
}
}
```
## Current example of behavior
https://github.com/user-attachments/assets/2e325763-ad3a-4445-bbe2-a840df08d0b3
---------
Co-authored-by: Mike Griese <migrie@microsoft.com>
2025-08-21 05:40:09 -05:00
|
|
|
interface IFilter requires INotifyPropChanged, IFilterItem {
|
Add the Command Palette module (#37908)
Windows Command Palette ("CmdPal") is the next iteration of PowerToys Run. With extensibility at its core, the Command Palette is your one-stop launcher to start _anything_.
By default, CmdPal is bound to <kbd>Win+Alt+Space</kbd>.


----
This brings the current preview version of CmdPal into the upstream PowerToys repo. There are still lots of bugs to work out, but it's reached the state we're ready to start sharing it with the world. From here, we can further collaborate with the community on the features that are important, and ensuring that we've got a most robust API to enable developers to build whatever extensions they want.
Most of the built-in PT Run modules have already been ported to CmdPal's extension API. Those include:
* Installed apps
* Shell commands
* File search (powered by the indexer)
* Windows Registry search
* Web search
* Windows Terminal Profiles
* Windows Services
* Windows settings
There are a couple new extensions built-in
* You can now search for packages on `winget` and install them right from the palette. This also powers searching for extensions for the palette
* The calculator has an entirely new implementation. This is currently less feature complete than the original PT Run one - we're looking forward to updating it to be more complete for future ingestion in Windows
* "Bookmarks" allow you to save shortcuts to files, folders, and webpages as top-level commands in the palette.
We've got a bunch of other samples too, in this repo and elsewhere
### PowerToys specific notes
CmdPal will eventually graduate out of PowerToys to live as its own application, which is why it's implemented just a little differently than most other modules. Enabling CmdPal will install its `msix` package.
The CI was minorly changed to support CmdPal version numbers independent of PowerToys itself. It doesn't make sense for us to start CmdPal at v0.90, and in the future, we want to be able to rev CmdPal independently of PT itself.
Closes #3200, closes #3600, closes #7770, closes #34273, closes #36471, closes #20976, closes #14495
-----
TODOs et al
**Blocking:**
- [ ] Images and descriptions in Settings and OOBE need to be properly defined, as mentioned before
- [ ] Niels is on it
- [x] Doesn't start properly from PowerToys unless the fix PR is merged.
- https://github.com/zadjii-msft/PowerToys/pull/556 merged
- [x] I seem to lose focus a lot when I press on some limits, like between the search bar and the results.
- This is https://github.com/zadjii-msft/PowerToys/issues/427
- [x] Turned off an extension like Calculator and it was still working.
- Need to get rid of that toggle, it doesn't do anything currently
- [x] `ListViewModel.<FetchItems>` crash
- Pretty confident that was fixed in https://github.com/zadjii-msft/PowerToys/pull/553
**Not blocking / improvements:**
- Show the shortcut through settings, as mentioned before, or create a button that would open CmdPalette settings.
- When PowerToys starts, CmdPalette is always shown if enabled. That's weird when just starting PowerToys/ logging in to the computer with PowerToys auto-start activated. I think this should at least be a setting.
- Needing to double press a result for it to do the default action seems quirky. If one is already selected, I think just pressing should be enough for it to do the action.
- This is currently a setting, though we're thinking of changing the setting even more: https://github.com/zadjii-msft/PowerToys/issues/392
- There's no URI extension. Was surprised when typing a URL that it only proposed a web search.
- [x] There's no System commands extension. Was expecting to be able to quickly restart the computer by typing restart but it wasn't there.
- This is in PR https://github.com/zadjii-msft/PowerToys/pull/452
---------
Co-authored-by: joadoumie <98557455+joadoumie@users.noreply.github.com>
Co-authored-by: Jordi Adoumie <jordiadoumie@microsoft.com>
Co-authored-by: Mike Griese <zadjii@gmail.com>
Co-authored-by: Niels Laute <niels.laute@live.nl>
Co-authored-by: Michael Hawker <24302614+michael-hawker@users.noreply.github.com>
Co-authored-by: Stefan Markovic <57057282+stefansjfw@users.noreply.github.com>
Co-authored-by: Seraphima <zykovas91@gmail.com>
Co-authored-by: Jaime Bernardo <jaime@janeasystems.com>
Co-authored-by: Kristen Schau <47155823+krschau@users.noreply.github.com>
Co-authored-by: Eric Johnson <ericjohnson327@gmail.com>
Co-authored-by: Ethan Fang <ethanfang@microsoft.com>
Co-authored-by: Yu Leng (from Dev Box) <yuleng@microsoft.com>
Co-authored-by: Clint Rutkas <clint@rutkas.com>
2025-03-19 03:39:57 -05:00
|
|
|
String Id { get; };
|
|
|
|
|
String Name { get; };
|
|
|
|
|
IIconInfo Icon { get; };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IFilters {
|
|
|
|
|
String CurrentFilterId { get; set; };
|
CmdPal: Filters for DynamicListPage? Yes, please. (#40783)
Closes: #40382
## To-do list
- [x] Add support for "single-select" filters to DynamicListPage
- [x] Filters can contain icons
- [x] Filter list can contain separators
- [x] Update Windows Services built-in extension to support filtering by
all, started, stopped, and pending services
- [x] Update SampleExtension dynamic list sample to filter.
## Example of filters in use
```C#
internal sealed partial class ServicesListPage : DynamicListPage
{
public ServicesListPage()
{
Icon = Icons.ServicesIcon;
Name = "Windows Services";
var filters = new ServiceFilters();
filters.PropChanged += Filters_PropChanged;
Filters = filters;
}
private void Filters_PropChanged(object sender, IPropChangedEventArgs args) => RaiseItemsChanged();
public override void UpdateSearchText(string oldSearch, string newSearch) => RaiseItemsChanged();
public override IListItem[] GetItems()
{
// ServiceHelper.Search knows how to filter based on the CurrentFilterIds provided
var items = ServiceHelper.Search(SearchText, Filters.CurrentFilterIds).ToArray();
return items;
}
}
public partial class ServiceFilters : Filters
{
public ServiceFilters()
{
// This would be a default selection. Not providing this will cause the filter
// control to display the "Filter" placeholder text.
CurrentFilterIds = ["all"];
}
public override IFilterItem[] GetFilters()
{
return [
new Filter() { Id = "all", Name = "All Services" },
new Separator(),
new Filter() { Id = "running", Name = "Running", Icon = Icons.GreenCircleIcon },
new Filter() { Id = "stopped", Name = "Stopped", Icon = Icons.RedCircleIcon },
new Filter() { Id = "paused", Name = "Paused", Icon = Icons.PauseIcon },
];
}
}
```
## Current example of behavior
https://github.com/user-attachments/assets/2e325763-ad3a-4445-bbe2-a840df08d0b3
---------
Co-authored-by: Mike Griese <migrie@microsoft.com>
2025-08-21 05:40:09 -05:00
|
|
|
IFilterItem[] GetFilters();
|
Add the Command Palette module (#37908)
Windows Command Palette ("CmdPal") is the next iteration of PowerToys Run. With extensibility at its core, the Command Palette is your one-stop launcher to start _anything_.
By default, CmdPal is bound to <kbd>Win+Alt+Space</kbd>.


----
This brings the current preview version of CmdPal into the upstream PowerToys repo. There are still lots of bugs to work out, but it's reached the state we're ready to start sharing it with the world. From here, we can further collaborate with the community on the features that are important, and ensuring that we've got a most robust API to enable developers to build whatever extensions they want.
Most of the built-in PT Run modules have already been ported to CmdPal's extension API. Those include:
* Installed apps
* Shell commands
* File search (powered by the indexer)
* Windows Registry search
* Web search
* Windows Terminal Profiles
* Windows Services
* Windows settings
There are a couple new extensions built-in
* You can now search for packages on `winget` and install them right from the palette. This also powers searching for extensions for the palette
* The calculator has an entirely new implementation. This is currently less feature complete than the original PT Run one - we're looking forward to updating it to be more complete for future ingestion in Windows
* "Bookmarks" allow you to save shortcuts to files, folders, and webpages as top-level commands in the palette.
We've got a bunch of other samples too, in this repo and elsewhere
### PowerToys specific notes
CmdPal will eventually graduate out of PowerToys to live as its own application, which is why it's implemented just a little differently than most other modules. Enabling CmdPal will install its `msix` package.
The CI was minorly changed to support CmdPal version numbers independent of PowerToys itself. It doesn't make sense for us to start CmdPal at v0.90, and in the future, we want to be able to rev CmdPal independently of PT itself.
Closes #3200, closes #3600, closes #7770, closes #34273, closes #36471, closes #20976, closes #14495
-----
TODOs et al
**Blocking:**
- [ ] Images and descriptions in Settings and OOBE need to be properly defined, as mentioned before
- [ ] Niels is on it
- [x] Doesn't start properly from PowerToys unless the fix PR is merged.
- https://github.com/zadjii-msft/PowerToys/pull/556 merged
- [x] I seem to lose focus a lot when I press on some limits, like between the search bar and the results.
- This is https://github.com/zadjii-msft/PowerToys/issues/427
- [x] Turned off an extension like Calculator and it was still working.
- Need to get rid of that toggle, it doesn't do anything currently
- [x] `ListViewModel.<FetchItems>` crash
- Pretty confident that was fixed in https://github.com/zadjii-msft/PowerToys/pull/553
**Not blocking / improvements:**
- Show the shortcut through settings, as mentioned before, or create a button that would open CmdPalette settings.
- When PowerToys starts, CmdPalette is always shown if enabled. That's weird when just starting PowerToys/ logging in to the computer with PowerToys auto-start activated. I think this should at least be a setting.
- Needing to double press a result for it to do the default action seems quirky. If one is already selected, I think just pressing should be enough for it to do the action.
- This is currently a setting, though we're thinking of changing the setting even more: https://github.com/zadjii-msft/PowerToys/issues/392
- There's no URI extension. Was surprised when typing a URL that it only proposed a web search.
- [x] There's no System commands extension. Was expecting to be able to quickly restart the computer by typing restart but it wasn't there.
- This is in PR https://github.com/zadjii-msft/PowerToys/pull/452
---------
Co-authored-by: joadoumie <98557455+joadoumie@users.noreply.github.com>
Co-authored-by: Jordi Adoumie <jordiadoumie@microsoft.com>
Co-authored-by: Mike Griese <zadjii@gmail.com>
Co-authored-by: Niels Laute <niels.laute@live.nl>
Co-authored-by: Michael Hawker <24302614+michael-hawker@users.noreply.github.com>
Co-authored-by: Stefan Markovic <57057282+stefansjfw@users.noreply.github.com>
Co-authored-by: Seraphima <zykovas91@gmail.com>
Co-authored-by: Jaime Bernardo <jaime@janeasystems.com>
Co-authored-by: Kristen Schau <47155823+krschau@users.noreply.github.com>
Co-authored-by: Eric Johnson <ericjohnson327@gmail.com>
Co-authored-by: Ethan Fang <ethanfang@microsoft.com>
Co-authored-by: Yu Leng (from Dev Box) <yuleng@microsoft.com>
Co-authored-by: Clint Rutkas <clint@rutkas.com>
2025-03-19 03:39:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct Color
|
|
|
|
|
{
|
|
|
|
|
UInt8 R;
|
|
|
|
|
UInt8 G;
|
|
|
|
|
UInt8 B;
|
|
|
|
|
UInt8 A;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct OptionalColor
|
|
|
|
|
{
|
|
|
|
|
Boolean HasValue;
|
|
|
|
|
Microsoft.CommandPalette.Extensions.Color Color;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface ITag {
|
|
|
|
|
IIconInfo Icon { get; };
|
|
|
|
|
String Text { get; };
|
|
|
|
|
OptionalColor Foreground { get; };
|
|
|
|
|
OptionalColor Background { get; };
|
|
|
|
|
String ToolTip { get; };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[uuid("6a6dd345-37a3-4a1e-914d-4f658a4d583d")]
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IDetailsData {}
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IDetailsElement {
|
|
|
|
|
String Key { get; };
|
|
|
|
|
IDetailsData Data { get; };
|
|
|
|
|
}
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IDetails {
|
|
|
|
|
IIconInfo HeroImage { get; };
|
|
|
|
|
String Title { get; };
|
|
|
|
|
String Body { get; };
|
|
|
|
|
IDetailsElement[] Metadata { get; };
|
|
|
|
|
}
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IDetailsTags requires IDetailsData {
|
|
|
|
|
ITag[] Tags { get; };
|
|
|
|
|
}
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IDetailsLink requires IDetailsData {
|
|
|
|
|
Windows.Foundation.Uri Link { get; };
|
|
|
|
|
String Text { get; };
|
|
|
|
|
}
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
2025-06-05 08:56:13 -05:00
|
|
|
interface IDetailsCommands requires IDetailsData {
|
|
|
|
|
ICommand[] Commands { get; };
|
Add the Command Palette module (#37908)
Windows Command Palette ("CmdPal") is the next iteration of PowerToys Run. With extensibility at its core, the Command Palette is your one-stop launcher to start _anything_.
By default, CmdPal is bound to <kbd>Win+Alt+Space</kbd>.


----
This brings the current preview version of CmdPal into the upstream PowerToys repo. There are still lots of bugs to work out, but it's reached the state we're ready to start sharing it with the world. From here, we can further collaborate with the community on the features that are important, and ensuring that we've got a most robust API to enable developers to build whatever extensions they want.
Most of the built-in PT Run modules have already been ported to CmdPal's extension API. Those include:
* Installed apps
* Shell commands
* File search (powered by the indexer)
* Windows Registry search
* Web search
* Windows Terminal Profiles
* Windows Services
* Windows settings
There are a couple new extensions built-in
* You can now search for packages on `winget` and install them right from the palette. This also powers searching for extensions for the palette
* The calculator has an entirely new implementation. This is currently less feature complete than the original PT Run one - we're looking forward to updating it to be more complete for future ingestion in Windows
* "Bookmarks" allow you to save shortcuts to files, folders, and webpages as top-level commands in the palette.
We've got a bunch of other samples too, in this repo and elsewhere
### PowerToys specific notes
CmdPal will eventually graduate out of PowerToys to live as its own application, which is why it's implemented just a little differently than most other modules. Enabling CmdPal will install its `msix` package.
The CI was minorly changed to support CmdPal version numbers independent of PowerToys itself. It doesn't make sense for us to start CmdPal at v0.90, and in the future, we want to be able to rev CmdPal independently of PT itself.
Closes #3200, closes #3600, closes #7770, closes #34273, closes #36471, closes #20976, closes #14495
-----
TODOs et al
**Blocking:**
- [ ] Images and descriptions in Settings and OOBE need to be properly defined, as mentioned before
- [ ] Niels is on it
- [x] Doesn't start properly from PowerToys unless the fix PR is merged.
- https://github.com/zadjii-msft/PowerToys/pull/556 merged
- [x] I seem to lose focus a lot when I press on some limits, like between the search bar and the results.
- This is https://github.com/zadjii-msft/PowerToys/issues/427
- [x] Turned off an extension like Calculator and it was still working.
- Need to get rid of that toggle, it doesn't do anything currently
- [x] `ListViewModel.<FetchItems>` crash
- Pretty confident that was fixed in https://github.com/zadjii-msft/PowerToys/pull/553
**Not blocking / improvements:**
- Show the shortcut through settings, as mentioned before, or create a button that would open CmdPalette settings.
- When PowerToys starts, CmdPalette is always shown if enabled. That's weird when just starting PowerToys/ logging in to the computer with PowerToys auto-start activated. I think this should at least be a setting.
- Needing to double press a result for it to do the default action seems quirky. If one is already selected, I think just pressing should be enough for it to do the action.
- This is currently a setting, though we're thinking of changing the setting even more: https://github.com/zadjii-msft/PowerToys/issues/392
- There's no URI extension. Was surprised when typing a URL that it only proposed a web search.
- [x] There's no System commands extension. Was expecting to be able to quickly restart the computer by typing restart but it wasn't there.
- This is in PR https://github.com/zadjii-msft/PowerToys/pull/452
---------
Co-authored-by: joadoumie <98557455+joadoumie@users.noreply.github.com>
Co-authored-by: Jordi Adoumie <jordiadoumie@microsoft.com>
Co-authored-by: Mike Griese <zadjii@gmail.com>
Co-authored-by: Niels Laute <niels.laute@live.nl>
Co-authored-by: Michael Hawker <24302614+michael-hawker@users.noreply.github.com>
Co-authored-by: Stefan Markovic <57057282+stefansjfw@users.noreply.github.com>
Co-authored-by: Seraphima <zykovas91@gmail.com>
Co-authored-by: Jaime Bernardo <jaime@janeasystems.com>
Co-authored-by: Kristen Schau <47155823+krschau@users.noreply.github.com>
Co-authored-by: Eric Johnson <ericjohnson327@gmail.com>
Co-authored-by: Ethan Fang <ethanfang@microsoft.com>
Co-authored-by: Yu Leng (from Dev Box) <yuleng@microsoft.com>
Co-authored-by: Clint Rutkas <clint@rutkas.com>
2025-03-19 03:39:57 -05:00
|
|
|
}
|
|
|
|
|
[uuid("58070392-02bb-4e89-9beb-47ceb8c3d741")]
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IDetailsSeparator requires IDetailsData {}
|
|
|
|
|
|
|
|
|
|
enum MessageState
|
|
|
|
|
{
|
|
|
|
|
Info = 0,
|
|
|
|
|
Success,
|
|
|
|
|
Warning,
|
|
|
|
|
Error,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum StatusContext
|
|
|
|
|
{
|
|
|
|
|
Page,
|
|
|
|
|
Extension
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IProgressState requires INotifyPropChanged
|
|
|
|
|
{
|
|
|
|
|
Boolean IsIndeterminate { get; };
|
|
|
|
|
UInt32 ProgressPercent { get; };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IStatusMessage requires INotifyPropChanged
|
|
|
|
|
{
|
|
|
|
|
MessageState State { get; };
|
|
|
|
|
IProgressState Progress { get; };
|
|
|
|
|
String Message { get; };
|
|
|
|
|
// TODO! Icon maybe? Work with design on this
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface ILogMessage
|
|
|
|
|
{
|
|
|
|
|
MessageState State { get; };
|
|
|
|
|
String Message { get; };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IExtensionHost
|
|
|
|
|
{
|
|
|
|
|
Windows.Foundation.IAsyncAction ShowStatus(IStatusMessage message, StatusContext context);
|
|
|
|
|
Windows.Foundation.IAsyncAction HideStatus(IStatusMessage message);
|
|
|
|
|
|
|
|
|
|
Windows.Foundation.IAsyncAction LogMessage(ILogMessage message);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IPage requires ICommand {
|
|
|
|
|
String Title { get; };
|
|
|
|
|
Boolean IsLoading { get; };
|
|
|
|
|
|
|
|
|
|
OptionalColor AccentColor { get; };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[uuid("c78b9851-e76b-43ee-8f76-da5ba14e69a4")]
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IContextItem {}
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface ICommandItem requires INotifyPropChanged {
|
|
|
|
|
ICommand Command{ get; };
|
|
|
|
|
IContextItem[] MoreCommands{ get; };
|
|
|
|
|
IIconInfo Icon{ get; };
|
|
|
|
|
String Title{ get; };
|
|
|
|
|
String Subtitle{ get; };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface ICommandContextItem requires ICommandItem, IContextItem {
|
|
|
|
|
Boolean IsCritical { get; }; // READ: "make this red"
|
|
|
|
|
KeyChord RequestedShortcut { get; };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[uuid("924a87fc-32fe-4471-9156-84b3b30275a6")]
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface ISeparatorContextItem requires IContextItem {}
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IListItem requires ICommandItem {
|
|
|
|
|
ITag[] Tags{ get; };
|
|
|
|
|
IDetails Details{ get; };
|
|
|
|
|
String Section { get; };
|
|
|
|
|
String TextToSuggest { get; };
|
|
|
|
|
}
|
2025-09-08 05:25:07 -05:00
|
|
|
|
|
|
|
|
[uuid("50C6F080-1CBE-4CE4-B92F-DA2F116ED524")]
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IGridProperties requires INotifyPropChanged { }
|
|
|
|
|
|
|
|
|
|
[uuid("05914D59-6ECB-4992-9CF2-5982B5120A26")]
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface ISmallGridLayout requires IGridProperties { }
|
Add the Command Palette module (#37908)
Windows Command Palette ("CmdPal") is the next iteration of PowerToys Run. With extensibility at its core, the Command Palette is your one-stop launcher to start _anything_.
By default, CmdPal is bound to <kbd>Win+Alt+Space</kbd>.


----
This brings the current preview version of CmdPal into the upstream PowerToys repo. There are still lots of bugs to work out, but it's reached the state we're ready to start sharing it with the world. From here, we can further collaborate with the community on the features that are important, and ensuring that we've got a most robust API to enable developers to build whatever extensions they want.
Most of the built-in PT Run modules have already been ported to CmdPal's extension API. Those include:
* Installed apps
* Shell commands
* File search (powered by the indexer)
* Windows Registry search
* Web search
* Windows Terminal Profiles
* Windows Services
* Windows settings
There are a couple new extensions built-in
* You can now search for packages on `winget` and install them right from the palette. This also powers searching for extensions for the palette
* The calculator has an entirely new implementation. This is currently less feature complete than the original PT Run one - we're looking forward to updating it to be more complete for future ingestion in Windows
* "Bookmarks" allow you to save shortcuts to files, folders, and webpages as top-level commands in the palette.
We've got a bunch of other samples too, in this repo and elsewhere
### PowerToys specific notes
CmdPal will eventually graduate out of PowerToys to live as its own application, which is why it's implemented just a little differently than most other modules. Enabling CmdPal will install its `msix` package.
The CI was minorly changed to support CmdPal version numbers independent of PowerToys itself. It doesn't make sense for us to start CmdPal at v0.90, and in the future, we want to be able to rev CmdPal independently of PT itself.
Closes #3200, closes #3600, closes #7770, closes #34273, closes #36471, closes #20976, closes #14495
-----
TODOs et al
**Blocking:**
- [ ] Images and descriptions in Settings and OOBE need to be properly defined, as mentioned before
- [ ] Niels is on it
- [x] Doesn't start properly from PowerToys unless the fix PR is merged.
- https://github.com/zadjii-msft/PowerToys/pull/556 merged
- [x] I seem to lose focus a lot when I press on some limits, like between the search bar and the results.
- This is https://github.com/zadjii-msft/PowerToys/issues/427
- [x] Turned off an extension like Calculator and it was still working.
- Need to get rid of that toggle, it doesn't do anything currently
- [x] `ListViewModel.<FetchItems>` crash
- Pretty confident that was fixed in https://github.com/zadjii-msft/PowerToys/pull/553
**Not blocking / improvements:**
- Show the shortcut through settings, as mentioned before, or create a button that would open CmdPalette settings.
- When PowerToys starts, CmdPalette is always shown if enabled. That's weird when just starting PowerToys/ logging in to the computer with PowerToys auto-start activated. I think this should at least be a setting.
- Needing to double press a result for it to do the default action seems quirky. If one is already selected, I think just pressing should be enough for it to do the action.
- This is currently a setting, though we're thinking of changing the setting even more: https://github.com/zadjii-msft/PowerToys/issues/392
- There's no URI extension. Was surprised when typing a URL that it only proposed a web search.
- [x] There's no System commands extension. Was expecting to be able to quickly restart the computer by typing restart but it wasn't there.
- This is in PR https://github.com/zadjii-msft/PowerToys/pull/452
---------
Co-authored-by: joadoumie <98557455+joadoumie@users.noreply.github.com>
Co-authored-by: Jordi Adoumie <jordiadoumie@microsoft.com>
Co-authored-by: Mike Griese <zadjii@gmail.com>
Co-authored-by: Niels Laute <niels.laute@live.nl>
Co-authored-by: Michael Hawker <24302614+michael-hawker@users.noreply.github.com>
Co-authored-by: Stefan Markovic <57057282+stefansjfw@users.noreply.github.com>
Co-authored-by: Seraphima <zykovas91@gmail.com>
Co-authored-by: Jaime Bernardo <jaime@janeasystems.com>
Co-authored-by: Kristen Schau <47155823+krschau@users.noreply.github.com>
Co-authored-by: Eric Johnson <ericjohnson327@gmail.com>
Co-authored-by: Ethan Fang <ethanfang@microsoft.com>
Co-authored-by: Yu Leng (from Dev Box) <yuleng@microsoft.com>
Co-authored-by: Clint Rutkas <clint@rutkas.com>
2025-03-19 03:39:57 -05:00
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
2025-09-08 05:25:07 -05:00
|
|
|
interface IMediumGridLayout requires IGridProperties
|
|
|
|
|
{
|
|
|
|
|
Boolean ShowTitle { get; };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IGalleryGridLayout requires IGridProperties
|
|
|
|
|
{
|
|
|
|
|
Boolean ShowTitle { get; };
|
|
|
|
|
Boolean ShowSubtitle { get; };
|
Add the Command Palette module (#37908)
Windows Command Palette ("CmdPal") is the next iteration of PowerToys Run. With extensibility at its core, the Command Palette is your one-stop launcher to start _anything_.
By default, CmdPal is bound to <kbd>Win+Alt+Space</kbd>.


----
This brings the current preview version of CmdPal into the upstream PowerToys repo. There are still lots of bugs to work out, but it's reached the state we're ready to start sharing it with the world. From here, we can further collaborate with the community on the features that are important, and ensuring that we've got a most robust API to enable developers to build whatever extensions they want.
Most of the built-in PT Run modules have already been ported to CmdPal's extension API. Those include:
* Installed apps
* Shell commands
* File search (powered by the indexer)
* Windows Registry search
* Web search
* Windows Terminal Profiles
* Windows Services
* Windows settings
There are a couple new extensions built-in
* You can now search for packages on `winget` and install them right from the palette. This also powers searching for extensions for the palette
* The calculator has an entirely new implementation. This is currently less feature complete than the original PT Run one - we're looking forward to updating it to be more complete for future ingestion in Windows
* "Bookmarks" allow you to save shortcuts to files, folders, and webpages as top-level commands in the palette.
We've got a bunch of other samples too, in this repo and elsewhere
### PowerToys specific notes
CmdPal will eventually graduate out of PowerToys to live as its own application, which is why it's implemented just a little differently than most other modules. Enabling CmdPal will install its `msix` package.
The CI was minorly changed to support CmdPal version numbers independent of PowerToys itself. It doesn't make sense for us to start CmdPal at v0.90, and in the future, we want to be able to rev CmdPal independently of PT itself.
Closes #3200, closes #3600, closes #7770, closes #34273, closes #36471, closes #20976, closes #14495
-----
TODOs et al
**Blocking:**
- [ ] Images and descriptions in Settings and OOBE need to be properly defined, as mentioned before
- [ ] Niels is on it
- [x] Doesn't start properly from PowerToys unless the fix PR is merged.
- https://github.com/zadjii-msft/PowerToys/pull/556 merged
- [x] I seem to lose focus a lot when I press on some limits, like between the search bar and the results.
- This is https://github.com/zadjii-msft/PowerToys/issues/427
- [x] Turned off an extension like Calculator and it was still working.
- Need to get rid of that toggle, it doesn't do anything currently
- [x] `ListViewModel.<FetchItems>` crash
- Pretty confident that was fixed in https://github.com/zadjii-msft/PowerToys/pull/553
**Not blocking / improvements:**
- Show the shortcut through settings, as mentioned before, or create a button that would open CmdPalette settings.
- When PowerToys starts, CmdPalette is always shown if enabled. That's weird when just starting PowerToys/ logging in to the computer with PowerToys auto-start activated. I think this should at least be a setting.
- Needing to double press a result for it to do the default action seems quirky. If one is already selected, I think just pressing should be enough for it to do the action.
- This is currently a setting, though we're thinking of changing the setting even more: https://github.com/zadjii-msft/PowerToys/issues/392
- There's no URI extension. Was surprised when typing a URL that it only proposed a web search.
- [x] There's no System commands extension. Was expecting to be able to quickly restart the computer by typing restart but it wasn't there.
- This is in PR https://github.com/zadjii-msft/PowerToys/pull/452
---------
Co-authored-by: joadoumie <98557455+joadoumie@users.noreply.github.com>
Co-authored-by: Jordi Adoumie <jordiadoumie@microsoft.com>
Co-authored-by: Mike Griese <zadjii@gmail.com>
Co-authored-by: Niels Laute <niels.laute@live.nl>
Co-authored-by: Michael Hawker <24302614+michael-hawker@users.noreply.github.com>
Co-authored-by: Stefan Markovic <57057282+stefansjfw@users.noreply.github.com>
Co-authored-by: Seraphima <zykovas91@gmail.com>
Co-authored-by: Jaime Bernardo <jaime@janeasystems.com>
Co-authored-by: Kristen Schau <47155823+krschau@users.noreply.github.com>
Co-authored-by: Eric Johnson <ericjohnson327@gmail.com>
Co-authored-by: Ethan Fang <ethanfang@microsoft.com>
Co-authored-by: Yu Leng (from Dev Box) <yuleng@microsoft.com>
Co-authored-by: Clint Rutkas <clint@rutkas.com>
2025-03-19 03:39:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IListPage requires IPage, INotifyItemsChanged {
|
|
|
|
|
// DevPal will be responsible for filtering the list of items, unless the
|
|
|
|
|
// class implements IDynamicListPage
|
|
|
|
|
String SearchText { get; };
|
|
|
|
|
String PlaceholderText { get; };
|
|
|
|
|
Boolean ShowDetails{ get; };
|
|
|
|
|
IFilters Filters { get; };
|
|
|
|
|
IGridProperties GridProperties { get; };
|
|
|
|
|
Boolean HasMoreItems { get; };
|
|
|
|
|
ICommandItem EmptyContent { get; };
|
|
|
|
|
|
|
|
|
|
IListItem[] GetItems();
|
|
|
|
|
void LoadMore();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IDynamicListPage requires IListPage {
|
|
|
|
|
String SearchText { set; };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[uuid("b64def0f-8911-4afa-8f8f-042bd778d088")]
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IContent requires INotifyPropChanged {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IFormContent requires IContent {
|
|
|
|
|
String TemplateJson { get; };
|
|
|
|
|
String DataJson { get; };
|
|
|
|
|
String StateJson { get; };
|
|
|
|
|
ICommandResult SubmitForm(String inputs, String data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IMarkdownContent requires IContent {
|
|
|
|
|
String Body { get; };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface ITreeContent requires IContent, INotifyItemsChanged {
|
|
|
|
|
IContent RootContent { get; };
|
|
|
|
|
IContent[] GetChildren();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IContentPage requires IPage, INotifyItemsChanged {
|
|
|
|
|
IContent[] GetContent();
|
|
|
|
|
IDetails Details { get; };
|
|
|
|
|
IContextItem[] Commands { get; };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface ICommandSettings {
|
|
|
|
|
IContentPage SettingsPage { get; };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IFallbackHandler {
|
|
|
|
|
void UpdateQuery(String query);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IFallbackCommandItem requires ICommandItem {
|
|
|
|
|
IFallbackHandler FallbackHandler{ get; };
|
|
|
|
|
String DisplayTitle { get; };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface ICommandProvider requires Windows.Foundation.IClosable, INotifyItemsChanged
|
|
|
|
|
{
|
|
|
|
|
String Id { get; };
|
|
|
|
|
String DisplayName { get; };
|
|
|
|
|
IIconInfo Icon { get; };
|
|
|
|
|
ICommandSettings Settings { get; };
|
|
|
|
|
Boolean Frozen { get; };
|
|
|
|
|
|
|
|
|
|
ICommandItem[] TopLevelCommands();
|
|
|
|
|
IFallbackCommandItem[] FallbackCommands();
|
|
|
|
|
|
|
|
|
|
ICommand GetCommand(String id);
|
|
|
|
|
|
|
|
|
|
void InitializeWithHost(IExtensionHost host);
|
|
|
|
|
};
|
|
|
|
|
|
2025-08-21 16:53:00 -05:00
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface IExtendedAttributesProvider
|
|
|
|
|
{
|
|
|
|
|
Windows.Foundation.Collections.IMap<String, Object> GetProperties();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[contract(Microsoft.CommandPalette.Extensions.ExtensionsContract, 1)]
|
|
|
|
|
interface ICommandProvider2 requires ICommandProvider
|
|
|
|
|
{
|
|
|
|
|
Object[] GetApiExtensionStubs();
|
|
|
|
|
};
|
|
|
|
|
|
Add the Command Palette module (#37908)
Windows Command Palette ("CmdPal") is the next iteration of PowerToys Run. With extensibility at its core, the Command Palette is your one-stop launcher to start _anything_.
By default, CmdPal is bound to <kbd>Win+Alt+Space</kbd>.


----
This brings the current preview version of CmdPal into the upstream PowerToys repo. There are still lots of bugs to work out, but it's reached the state we're ready to start sharing it with the world. From here, we can further collaborate with the community on the features that are important, and ensuring that we've got a most robust API to enable developers to build whatever extensions they want.
Most of the built-in PT Run modules have already been ported to CmdPal's extension API. Those include:
* Installed apps
* Shell commands
* File search (powered by the indexer)
* Windows Registry search
* Web search
* Windows Terminal Profiles
* Windows Services
* Windows settings
There are a couple new extensions built-in
* You can now search for packages on `winget` and install them right from the palette. This also powers searching for extensions for the palette
* The calculator has an entirely new implementation. This is currently less feature complete than the original PT Run one - we're looking forward to updating it to be more complete for future ingestion in Windows
* "Bookmarks" allow you to save shortcuts to files, folders, and webpages as top-level commands in the palette.
We've got a bunch of other samples too, in this repo and elsewhere
### PowerToys specific notes
CmdPal will eventually graduate out of PowerToys to live as its own application, which is why it's implemented just a little differently than most other modules. Enabling CmdPal will install its `msix` package.
The CI was minorly changed to support CmdPal version numbers independent of PowerToys itself. It doesn't make sense for us to start CmdPal at v0.90, and in the future, we want to be able to rev CmdPal independently of PT itself.
Closes #3200, closes #3600, closes #7770, closes #34273, closes #36471, closes #20976, closes #14495
-----
TODOs et al
**Blocking:**
- [ ] Images and descriptions in Settings and OOBE need to be properly defined, as mentioned before
- [ ] Niels is on it
- [x] Doesn't start properly from PowerToys unless the fix PR is merged.
- https://github.com/zadjii-msft/PowerToys/pull/556 merged
- [x] I seem to lose focus a lot when I press on some limits, like between the search bar and the results.
- This is https://github.com/zadjii-msft/PowerToys/issues/427
- [x] Turned off an extension like Calculator and it was still working.
- Need to get rid of that toggle, it doesn't do anything currently
- [x] `ListViewModel.<FetchItems>` crash
- Pretty confident that was fixed in https://github.com/zadjii-msft/PowerToys/pull/553
**Not blocking / improvements:**
- Show the shortcut through settings, as mentioned before, or create a button that would open CmdPalette settings.
- When PowerToys starts, CmdPalette is always shown if enabled. That's weird when just starting PowerToys/ logging in to the computer with PowerToys auto-start activated. I think this should at least be a setting.
- Needing to double press a result for it to do the default action seems quirky. If one is already selected, I think just pressing should be enough for it to do the action.
- This is currently a setting, though we're thinking of changing the setting even more: https://github.com/zadjii-msft/PowerToys/issues/392
- There's no URI extension. Was surprised when typing a URL that it only proposed a web search.
- [x] There's no System commands extension. Was expecting to be able to quickly restart the computer by typing restart but it wasn't there.
- This is in PR https://github.com/zadjii-msft/PowerToys/pull/452
---------
Co-authored-by: joadoumie <98557455+joadoumie@users.noreply.github.com>
Co-authored-by: Jordi Adoumie <jordiadoumie@microsoft.com>
Co-authored-by: Mike Griese <zadjii@gmail.com>
Co-authored-by: Niels Laute <niels.laute@live.nl>
Co-authored-by: Michael Hawker <24302614+michael-hawker@users.noreply.github.com>
Co-authored-by: Stefan Markovic <57057282+stefansjfw@users.noreply.github.com>
Co-authored-by: Seraphima <zykovas91@gmail.com>
Co-authored-by: Jaime Bernardo <jaime@janeasystems.com>
Co-authored-by: Kristen Schau <47155823+krschau@users.noreply.github.com>
Co-authored-by: Eric Johnson <ericjohnson327@gmail.com>
Co-authored-by: Ethan Fang <ethanfang@microsoft.com>
Co-authored-by: Yu Leng (from Dev Box) <yuleng@microsoft.com>
Co-authored-by: Clint Rutkas <clint@rutkas.com>
2025-03-19 03:39:57 -05:00
|
|
|
|
|
|
|
|
}
|