replit-tools 1.1.18 → 1.1.19

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/install.sh CHANGED
@@ -284,21 +284,8 @@ claude_prompt() {
284
284
  local running=$(count_claude_instances)
285
285
  local last_session=$(get_terminal_last_session)
286
286
 
287
+ # Colored command key (shown first)
287
288
  echo ""
288
- echo "╭───────────────────────────╮"
289
- echo "│ Claude Session Manager │"
290
- echo "╰───────────────────────────╯"
291
- [ "$running" -gt 0 ] && echo " ($running running)"
292
- echo ""
293
- echo " [c] Continue last session"
294
- [ -n "$last_session" ] && echo " └─ ${last_session:0:8}..."
295
- echo " [r] Resume (pick from list)"
296
- echo " [n] Start new session"
297
- echo " [l] Login to Claude"
298
- echo " [s] Skip - just shell"
299
- echo ""
300
-
301
- # Colored command key
302
289
  echo " At ~/workspace\$ prompt:"
303
290
  echo " ┌───────────────────────────┐"
304
291
  echo -e " │ \033[36mclaude-menu\033[0m = show menu │"
@@ -310,6 +297,19 @@ claude_prompt() {
310
297
  echo -e " │ \033[32mclaude --dangerously-\033[0m │"
311
298
  echo -e " │ \033[32mskip-permissions\033[0m │"
312
299
  echo " └───────────────────────────┘"
300
+
301
+ echo ""
302
+ echo "╭───────────────────────────╮"
303
+ echo "│ Claude Session Manager │"
304
+ echo "╰───────────────────────────╯"
305
+ [ "$running" -gt 0 ] && echo " ($running running)"
306
+ echo ""
307
+ echo " [c] Continue last session"
308
+ [ -n "$last_session" ] && echo " └─ ${last_session:0:8}..."
309
+ echo " [r] Resume (pick from list)"
310
+ echo " [n] Start new session"
311
+ echo " [l] Login to Claude"
312
+ echo " [s] Skip - just shell"
313
313
  echo ""
314
314
 
315
315
  local choice
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replit-tools",
3
- "version": "1.1.18",
3
+ "version": "1.1.19",
4
4
  "description": "DATA Tools - One command to set up Claude Code and Codex CLI on Replit with full persistence",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -287,6 +287,20 @@ claude_prompt() {
287
287
  local running=$(count_claude_instances)
288
288
  local last_session=$(get_terminal_last_session)
289
289
 
290
+ # Colored command key (shown first)
291
+ echo ""
292
+ echo " At ~/workspace\$ prompt:"
293
+ echo " ┌───────────────────────────┐"
294
+ echo -e " │ \033[36mclaude-menu\033[0m = show menu │"
295
+ echo -e " │ \033[36mcm\033[0m = menu shortcut │"
296
+ echo -e " │ \033[36ml\033[0m = login to claude │"
297
+ echo " ├───────────────────────────┤"
298
+ echo -e " │ \033[33mCtrl+C\033[0m to exit, then │"
299
+ echo -e " │ run claude manually: │"
300
+ echo -e " │ \033[32mclaude --dangerously-\033[0m │"
301
+ echo -e " │ \033[32mskip-permissions\033[0m │"
302
+ echo " └───────────────────────────┘"
303
+
290
304
  echo ""
291
305
  echo "╭───────────────────────────╮"
292
306
  echo "│ Claude Session Manager │"
@@ -308,20 +322,6 @@ claude_prompt() {
308
322
  echo " [s] Skip - just shell"
309
323
  echo ""
310
324
 
311
- # Colored command key
312
- echo " At ~/workspace\$ prompt:"
313
- echo " ┌───────────────────────────┐"
314
- echo -e " │ \033[36mclaude-menu\033[0m = show menu │"
315
- echo -e " │ \033[36mcm\033[0m = menu shortcut │"
316
- echo -e " │ \033[36ml\033[0m = login to claude │"
317
- echo " ├───────────────────────────┤"
318
- echo -e " │ \033[33mCtrl+C\033[0m to exit, then │"
319
- echo -e " │ run claude manually: │"
320
- echo -e " │ \033[32mclaude --dangerously-\033[0m │"
321
- echo -e " │ \033[32mskip-permissions\033[0m │"
322
- echo " └───────────────────────────┘"
323
- echo ""
324
-
325
325
  # Read choice with timeout
326
326
  local choice
327
327
  read -t 60 -n 1 -p " Choice [c/r/n/l/s]: " choice