replit-tools 1.1.24 → 1.1.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -290,7 +290,7 @@ claude_prompt() {
|
|
|
290
290
|
# Colored command key (shown first)
|
|
291
291
|
echo ""
|
|
292
292
|
echo " ┌─────────────────────────────┐"
|
|
293
|
-
echo -e " │ \033[
|
|
293
|
+
echo -e " │ At \033[1;94m~/workspace\033[1;97m\$\033[0m prompt: │"
|
|
294
294
|
echo -e " │ \033[96mclaude-menu\033[0m = show menu │"
|
|
295
295
|
echo -e " │ \033[96mcm\033[0m = menu shortcut │"
|
|
296
296
|
echo -e " │ \033[96ml\033[0m = login to claude │"
|
|
@@ -435,5 +435,8 @@ claude_menu() {
|
|
|
435
435
|
alias claude-menu='claude_menu'
|
|
436
436
|
alias cm='claude_menu'
|
|
437
437
|
|
|
438
|
-
#
|
|
438
|
+
# Auto-show menu when sourced (unless disabled)
|
|
439
|
+
[ "${CLAUDE_NO_PROMPT}" != "true" ] && claude_prompt
|
|
440
|
+
|
|
441
|
+
# NOTE: aliases defined above AFTER this script is sourced
|
|
439
442
|
# This ensures all aliases are defined even if user Ctrl+C's out of the prompt
|