feat: add --here flag to run dashboard in current terminal#2
Closed
Oregand wants to merge 1 commit intoDUBSOpenHub:mainfrom
Closed
feat: add --here flag to run dashboard in current terminal#2Oregand wants to merge 1 commit intoDUBSOpenHub:mainfrom
Oregand wants to merge 1 commit intoDUBSOpenHub:mainfrom
Conversation
By default, `start.sh` opens the dashboard in a new terminal window. The new `--here` flag lets users run it in the current terminal instead, which is useful for remote SSH sessions, tmux panes, or when a new window is not desired. Changes: - start.sh: parse --here flag, skip new-window spawn when set - README.md: document --here flag and add agentpulse-here alias - quickstart.sh: mention --here in post-install output - AGENTS.md: update start.sh description Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
DUBSOpenHub
added a commit
that referenced
this pull request
Apr 20, 2026
…tion + --here (#3) * Combine launcher improvements from PR #1 and PR #2 Cherry-picks the best of both PRs without flipping the beginner-friendly default (new window = wow factor on first run). From #1 (@djensenius): - Homebrew formula (Formula/agent-pulse.rb) + release workflow that auto-updates the tarball URL + SHA256 on new releases - Fish shell alias support in quickstart.sh (alongside bash/zsh) - Multi-terminal-emulator auto-detection in start.sh: Ghostty, iTerm, Kitty, WezTerm, Alacritty, Warp, Terminal.app, tmux, gnome-terminal, xterm, with sensible fallbacks From #2 (@Oregand): - --here flag to run the dashboard in the current terminal (SSH sessions, tmux panes, in-place workflows) Docs updated (README, AGENTS.md, quickstart.sh) to describe both flows and the new agentpulse-here alias. Keeps default behaviour (opens a new window) so the first-run experience stays delightful for non-developers. Co-authored-by: djensenius <782512+djensenius@users.noreply.github.com> Co-authored-by: Oregand <4388753+Oregand@users.noreply.github.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Docs: update copilot-instructions and site for new launcher + Homebrew Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Gregg Cochran <greggcochran@github.com> Co-authored-by: djensenius <782512+djensenius@users.noreply.github.com> Co-authored-by: Oregand <4388753+Oregand@users.noreply.github.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Owner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
By default,
start.shopens the dashboard in a new terminal window. This PR adds a--hereflag so users can optionally run it in the current terminal instead.Motivation
Useful for:
Changes
--hereflag; when set, runs directly viaexecinstead of spawning a new window. Other args are passed through toagent_pulse.py.--hereflag, adds anagentpulse-herealias suggestion, and separates launcher vs dashboard options.--herein post-install output.start.shdescription.Usage