www/docs/guide/usage/deep-link.md
Deep links let another app or script open Wox with a prepared query. This is useful for terminal aliases, browser shortcuts, automation tools, and app-specific launch buttons.
wox://query?q=<url-encoded-query>
The q value is the exact query text Wox should place into the launcher. URL-encode spaces and symbols.
Open Plugin Manager with an install query:
wox://query?q=wpm%20install
Open file search:
wox://query?q=f%20invoice
Run a calculation:
wox://query?q=100%20%2B%2020
Start an AI chat:
wox://query?q=chat%20summarize%20this
macOS:
open "wox://query?q=f%20invoice"
Windows PowerShell:
Start-Process "wox://query?q=f%20invoice"
Linux:
xdg-open "wox://query?q=f%20invoice"
%20.+ as %2B when it is part of a calculation.