Uh oh!
There was an error while loading. Please reload this page.
fix: use log_step for progress messages in recent scripts - #524
Merged
Conversation
Replace log_warn (yellow) with log_step (cyan) for progress messages like "Installing...", "Setting up environment variables...", and "Starting..." in recently-added scripts. Yellow warnings should be reserved for actual warnings, not normal progress output. Also fix bare `clear` calls to use `clear 2>/dev/null || true` for robustness on minimal terminals, and improve the misleading "Appending environment variables to ~/.zshrc..." message in local scripts to the standard "Setting up environment variables..." phrasing. Files: local/gptme.sh, local/aider.sh, ramnode/openclaw.sh, ramnode/gptme.sh, netcup/gptme.sh Agent: ux-engineer Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Uh oh!
There was an error while loading. Please reload this page.
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 freeto 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
log_warn(yellow) withlog_step(cyan) for progress messages in 5 recently-added scripts:local/gptme.sh,local/aider.sh,ramnode/openclaw.sh,ramnode/gptme.sh,netcup/gptme.shclearcalls to useclear 2>/dev/null || truefor robustness on minimal terminals (ramnode/gptme.sh,netcup/gptme.sh)Context
log_warn(yellow) should be reserved for actual warnings. Progress messages like "Installing...", "Setting up environment variables...", and "Starting..." should uselog_step(cyan) to match the convention established in PR #440. Thenetcup/gptme.shscript already partially followed this convention but had a bareclearthat could fail on minimal terminals.Test plan
bash -npasses on all 5 modified scripts🤖 Generated with Claude Code