Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,14 @@ All notable changes to this project will be documented in this file.
(`hal remember "buy milk"`) is now split on whitespace rather than kept
together by the shell — quote it at the HAL level if grouping is needed.

### Removed

* Dead `run_git_screen` in `terminal/launchers/mqlaunch.sh` — it had no live
caller in the launcher graph (the live copy lives in
`tools/scripts/mqlaunch_desktop.sh`). Surfaced while de-layering the git
concern (Step 11a); removed as a standalone cleanup rather than folded into a
refactor.

## [1.0.0] - 2026-06-10

### Added
Expand Down
22 changes: 0 additions & 22 deletions terminal/launchers/mqlaunch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -323,28 +323,6 @@ safe_run_ai() {
fi
}

# Runs git screen.
run_git_screen() {
local title="$1"
local cmd="$2"

print_header
row "$title"
empty_row
row "Repo:"
row " $BASE_DIR"
empty_row

(
cd "$BASE_DIR" 2>/dev/null || { mq_debug "run_git_screen: cannot cd to $BASE_DIR"; exit 1; }
eval "$cmd"
)

echo
print_footer
pause_enter
}

# Network concern — status, diagnostics, and connectivity actions — lives in a
# dedicated library (Step 11a monolith de-layering, audit P4). Sourced into this
# scope so it keeps using the ambient UI helpers and $BASE_DIR; no behavior
Expand Down
Loading