
Skill Launcher
- 2 installs
- 14 repo stars
- Updated January 27, 2026
- ceeon/skilllauncher
Starts, restarts, or stops the local SkillLauncher launcher process on macOS.
About
Manages the SkillLauncher process lifecycle (start, restart, stop) using pgrep, pkill, and nohup against a Swift-built binary. A developer uses it to launch or relaunch the Option+Space quick launcher.
- Start/restart/stop the SkillLauncher process via pgrep/pkill/nohup
- Requires swift build and Accessibility permission on first run
Skill Launcher by the numbers
- 2 all-time installs (skills.sh)
- Ranked #445 of 550 CLI & Terminal skills by installs in the Skillselion catalog
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/ceeon/skilllauncher --skill skill-launcherAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2 |
|---|---|
| repo stars | ★ 14 |
| Last updated | January 27, 2026 |
| Repository | ceeon/skilllauncher ↗ |
What it does
Starts, restarts, or stops the local SkillLauncher launcher process on macOS.
Files
SkillLauncher 启动器
启动或重启 SkillLauncher 进程。
路径说明
SkillLauncher 编译后的可执行文件位于项目目录下:
SkillLauncher/.build/release/SkillLauncher执行前需要先确认当前目录下有 SkillLauncher 项目。
操作
1. 检查是否已运行
pgrep -x SkillLauncher2. 启动(如果没运行)
nohup ./SkillLauncher/.build/release/SkillLauncher > /dev/null 2>&1 &3. 重启(先杀后启)
pkill -x SkillLauncher
sleep 0.5
nohup ./SkillLauncher/.build/release/SkillLauncher > /dev/null 2>&1 &4. 关闭
pkill -x SkillLauncher用法
- "启动 launcher" → 启动进程
- "重启 launcher" → 重启进程
- "关闭 launcher" → 停止进程
注意
- 首次使用需要先编译:
cd SkillLauncher && swift build -c release - 首次运行需要授予「辅助功能」权限
- 使用 Option+Space 唤起窗口
Related skills
CLI & Terminalworkflow