feat: make menu bar app the default install, clarify focus HUD - #14
Conversation
|
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in: 38 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (8)
Comment |
There was a problem hiding this comment.
Pull request overview
This PR shifts Microbridge’s default installation and documentation stance to treat the Tauri menu bar app as the primary user interface (with the daemon/CLI as supporting infrastructure), and clarifies the Focus HUD as an automatic, transient confirmation overlay.
Changes:
- Make the menu bar app install by default in
scripts/install.sh(with--no-uifor headless/daemon-only installs) and uninstall it inscripts/uninstall.sh. - Add macOS launchd handling for the UI app (
ai.microbridge.ui) alongside the daemon agent. - Update docs to describe the menu bar app as the primary UI and clarify Focus HUD behavior.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| scripts/uninstall.sh | Uninstalls the UI launchd agent and removes ~/Applications/Microbridge.app on macOS. |
| scripts/install.sh | Defaults to installing the UI, builds the Tauri app, installs it under ~/Applications, and adds a UI launchd agent. |
| README.md | Repositions the menu bar app as the primary UI and CLI as support/debug. |
| INSTALL.md | Updates installation guidance to make UI the default and document --no-ui for headless installs. |
| docs/design/README.md | Clarifies Focus HUD as automatic/transient and updates UI role wording. |
| docs/architecture.md | Updates the architecture table to mark the menu bar app as default/primary. |
| CONTRIBUTING.md | Updates contributor commands/comments to refer to the menu bar app. |
| apps/microbridge-ui/README.md | Rebrands the UI app as the primary UI in its README. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| UI_PLIST="$HOME/Library/LaunchAgents/${UI_LABEL}.plist" | ||
| cat >"$UI_PLIST" <<EOF |
| launchctl bootout "gui/$(id -u)/${UI_LABEL}" 2>/dev/null || true | ||
| launchctl bootstrap "gui/$(id -u)" "$UI_PLIST" | ||
| launchctl enable "gui/$(id -u)/${UI_LABEL}" | ||
| launchctl kickstart -k "gui/$(id -u)/${UI_LABEL}" 2>/dev/null || open "$HOME/Applications/Microbridge.app" |
| echo "" | ||
| echo "Microbridge installed." | ||
| echo " UI: ~/Applications/Microbridge.app (menu bar)" | ||
| echo " status: $BIN_DIR/microbridgectl status" | ||
| echo " logs: ~/.microbridge/daemon.log" | ||
| echo " config: ~/.microbridge/config.toml" |
Summary
./scripts/install.sh); use--no-uifor headlessTest plan
Made with Cursor