You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# ββ Logo ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ββ Main ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
60
+
61
+
setup_colours
62
+
63
+
echo""
64
+
print_logo
8
65
echo""
9
-
echo"remobi β your terminal, everywhere"
10
-
echo"https://github.com/connorads/remobi"
66
+
printf" %sremobi%s %sβ your terminal, everywhere%s\n""$BOLD""$RESET""$DIM""$RESET"
echo" 1. Install the remobi setup skill (via npx skills)"
14
-
echo" 2. Ask which coding agent you use"
15
-
echo" 3. Start an interactive agent session that walks you through setup"
69
+
echo"This script will:"
70
+
echo"1. Install the remobi setup skill"
71
+
echo"2. Ask which coding agent you use"
72
+
echo"3. Start an interactive setup session"
16
73
echo""
17
-
read -r -p "Press Enter to continue..."
74
+
read -r -p "Press Enter to continue..."
18
75
19
-
# ββ Install the remobi-setup skill ββββββββββββββββββββββββββββββββββββββββββ
76
+
# ββ Step 1: Install the remobisetup skill ββββββββββββββββββββββββββββββββββββ
20
77
21
-
echo""
22
-
echo"Installing the remobi setup skill..."
78
+
step 1 3 "Installing the remobi setup skill"
23
79
echo""
24
80
npx skills add connorads/remobi
25
81
echo""
82
+
success "Skill installed"
26
83
27
-
# ββ Pick a coding agent βββββββββββββββββββββββββββββββββββββββββββββββββββββ
84
+
# ββ Step 2: Pick a coding agent βββββββββββββββββββββββββββββββββββββββββββββββ
28
85
29
-
echo"Which coding agent do you use?"
30
-
echo" 1) Claude Code"
31
-
echo" 2) Codex"
32
-
printf"Choose [1-2]: "
86
+
step 2 3 "Choosing a coding agent"
87
+
echo""
88
+
echo" Which coding agent do you use?"
89
+
echo""
90
+
printf" %s1)%s Claude Code\n""$BOLD""$RESET"
91
+
printf" %s2)%s Codex\n""$BOLD""$RESET"
92
+
echo""
93
+
printf" Choose %s[1-2]%s: ""$YELLOW""$RESET"
33
94
read -r choice
34
95
35
96
case"$choice"in
36
-
1) agent="claude" ;;
37
-
2) agent="codex" ;;
97
+
1) agent="claude"; agent_name="Claude Code" ;;
98
+
2) agent="codex"; agent_name="Codex" ;;
38
99
*)
39
-
echo"Invalid choice. Exiting."
100
+
echo""
101
+
error "Invalid choice β please enter 1 or 2"
40
102
exit 1
41
103
;;
42
104
esac
43
105
44
-
# ββ Check the agent is installed ββββββββββββββββββββββββββββββββββββββββββββ
0 commit comments