Quicklauncher
A minimal Qt based menu to quickly find and execute Maya commands and user scripts.
Install / Use
/learn @csaez/QuicklauncherREADME
QuickLauncher
A minimal Qt based menu to quickly find and execute Maya commands and user scripts (licensed under MIT license).
Quicklauncher relies on PySide/PySide2/PySide6 and works on Autodesk Maya 2014 or greater. (last tested on Maya 2025)

Installation
- get the latest release
- copy
quicklauncher.pyto your maya script directory. e.g.%UserProfile%\Documents\maya\2026\scriptson windows
Usage
import quicklauncher
quicklauncher.show()
You can also select the folder in which quicklauncher will look for user scripts (repo).
import quicklauncher
quicklauncher.select_repo()
Examples of advanced usage
import quicklauncher as ql
# show menu
ql.show()
# repository dialog
ql.select_repo()
# ... or go deeper using the API
ql.get_repo()
ql.set_repo(repository_path)
ql.get_scripts() # {script_name: script_fullpath, ...}
ql.list_scripts() # [script_name, ...]
ql.run_script(script_name)
ql.get_commands() # {cmd_name: cmd_object, ...}
ql.list_commands() # [cmd_name, ...]
ql.run_cmd(cmd_name)
TIP: You can refresh the list of available scripts without restarting Maya by simply reloading the python module in the script editor (or add a little python script that does this to your repo so it's available from the menu itself).
import quicklauncher reload(quicklauncher)
Contributing
-
Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug.
-
Fork the quicklauncher repository on Github to start making your changes (make sure to isolate your changes in a local branch when possible).
-
Write a test which shows that the bug was fixed or that the feature works as expected.
-
Send a pull request and bug me until it gets merged. :)
Make sure to add yourself to CONTRIBUTORS.md!
Related Skills
node-connect
342.0kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
84.7kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
342.0kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
84.7kCommit, push, and open a PR
