For people who obsess over their setup
A command bar that keeps up with you.
Sub-millisecond fuzzy search across apps, files and built-in tools — without ever lifting your hands off the keyboard.
Instant fuzzy everything
Apps, files, folders, running processes and bookmarks — ranked the moment you type, with inline autocomplete you accept with Tab.
Calculator & units
Type 1920*1.5 or 20% of 80 and copy the answer with one keystroke.
Currency & crypto
100 usd to eur or btc — rates resolved inline as you type.
Weather at a glance
Conditions and forecast rendered with crisp glyphs right in the result list.
Clipboard history
Everything you copy, kept searchable and private — paste from minutes ago in two keystrokes.
Run shell, stream output
Fire off a command and watch it stream back in a panel without leaving the bar.
Write a plugin in TypeScript. Ship it in minutes.
Plugins run sandboxed in isolated Web Workers — fast, safe, and impossible to crash the launcher. A real SDK, a real CLI, real types.
- Sandboxed Web Workers — one plugin can't freeze the bar
- First-class typings via
@veilind/api - Hot reload & per-plugin toggles in Settings
# scaffold, develop, ship
npm install -g @veilind/cli
veilind create my-plugin
import { definePlugin } from "@veilind/api";
export default definePlugin({
id: "github-search",
keyword: "gh",
async search(q) {
return searchRepos(q);
},
});