macOS 菜单栏与 Windows 系统托盘端口监控工具。AI 编码 agent 跑完任务经常留下一堆没关的服务端口,得回命令行手动清理。DevPilot 把这些端口直接挂在桌面系统栏 —— 哪个进程、什么协议、跑在哪个项目目录一目了然,点一下就能关。
- 系统栏速览 — 点击 macOS 菜单栏或 Windows 系统托盘图标弹出端口卡片列表
- 范围筛选 — 切换「项目服务」仅看开发相关端口,或「全部端口」查看所有 TCP/UDP 监听
- 协议筛选 — TCP / UDP 分段切换
- 进程溯源 —
go run main.go编译出的main二进制自动关联到父进程go - 项目路径 — 显示服务的工作目录,hover 查看完整路径,右键可拷贝路径或在 Finder / Windows 资源管理器中打开
- 一键终止 — 右键端口 → 关闭服务,自动去重 PID 后在 macOS 发送
SIGTERM、在 Windows 终止进程树 - 搜索过滤 — 支持端口号、进程名、父进程、PID、用户、地址、项目路径
- 自动刷新 — 每 3 秒自动扫描(可在设置中关闭),带 2.5 秒最小间隔防抖
- 手动刷新 — 工具栏按钮或
Cmd + R/Ctrl + R快捷键
brew install --cask pkc918/tap/devpilot前往 Releases 下载最新 DevPilot.dmg,拖入 Applications 即可。首次打开需右键 → 打开。
git clone git@github.com:pkc918/DevPilot.git
cd DevPilot
xcodebuild -project macos/DevPilot.xcodeproj -scheme DevPilot -configuration Release或用 Xcode 打开 macos/DevPilot.xcodeproj,选择 Debug scheme 运行。
要求 macOS 15+,Xcode 16+。
Windows 10/11 安装 Rust MSVC、Microsoft C++ Build Tools、WebView2 与 Node.js 22 后:
cd windows
npm ci
npm test
npm run buildTauri Windows 端的详细架构、权限与开发说明见 windows/README.md。
macos/
├── DevPilot.xcodeproj/
├── DevPilotInfo.plist
└── DevPilot/
├── DevPilotApp.swift # 入口:NSStatusBar 菜单栏 + 主窗口 + 设置
├── ContentView.swift # 主界面:侧边栏 + 端口表格 + 筛选栏
├── SettingsView.swift # 设置面板(自动刷新开关 + 更新检查)
├── UpdateController.swift # Sparkle 2 自动更新控制器
├── AppVersionInfo.swift # 版本号工具
├── Models/
│ └── PortUsage.swift # 端口数据模型 + isProjectService 分类逻辑
├── Services/
│ └── PortScanner.swift # lsof 扫描 + libproc 进程信息 + kill
└── Stores/
└── PortMonitorStore.swift # 状态管理 + 双缓冲 + 范围感知刷新
Windows 版本位于 windows/,采用 Tauri 2 + Rust + Vite + TypeScript;发布标签会由 Windows CI 生成 NSIS .exe 和 WiX .msi 安装包。
端口被归入「项目服务」需同时满足:
- TCP 协议且 LISTEN 状态
- 监听本地地址(
localhost/0.0.0.0/*/::/::1/127.*) - 属于当前用户
- 二进制不在以下路径前缀中:
/Applications//~/Applications//usr/sbin///usr/libexec///sbin//System/Library///Library/Apple/
UDP 端口同样会被扫描,显示在「全部端口」范围中。
- SwiftUI + AppKit(
NSStatusBar/NSPopover菜单栏) lsof端口扫描 + CWD 解析libproc(proc_pidpath/proc_pidinfo)进程信息NSWorkspaceFinder 集成 +NSPasteboard路径拷贝- Sparkle 2 自动更新
- GitHub Actions 自动构建 + appcast 生成
- Tauri 2 + Rust + Vite + TypeScript(Windows)
- Windows IP Helper API +
sysinfo进程信息 - GitHub Actions 构建 Windows NSIS / MSI 安装包

