-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·184 lines (174 loc) · 5.85 KB
/
Copy pathinstall.sh
File metadata and controls
executable file
·184 lines (174 loc) · 5.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#!/bin/bash
# Universal LLM Deep Research Environment Installer for Linux/macOS
# This script provides installation options for different LLM CLI environments
echo "================================================================"
echo " Deep Research AI Agent Team Installation Package."
echo "================================================================"
echo ""
echo "This installer will configure your deep research environment for"
echo "one of the following LLM CLI environments:"
echo ""
echo "1. Junie - JetBrains LLM CLI (files in .junie/ folder)"
echo "2. Codex - OpenAI Codex CLI (AGENTS.md based)"
echo "3. Claude - Anthropic Claude CLI (CLAUDE.md based)"
echo "4. Gemini - Google Gemini CLI (GEMINI.md based)"
echo ""
echo "================================================================"
echo ""
show_menu() {
echo "Please select your LLM environment:"
echo ""
echo "[1] Junie Environment Setup"
echo "[2] Codex Environment Setup"
echo "[3] Claude Environment Setup"
echo "[4] Gemini Environment Setup"
echo "[5] Show Package Details"
echo "[6] Exit"
echo ""
read -p "Enter your choice (1-6): " choice
}
show_details() {
echo ""
echo "================================================================"
echo " Package Details"
echo "================================================================"
echo ""
echo "JUNIE PACKAGE:"
echo "- Files Location: .junie/ folder"
echo "- Main Guidelines: guidelines.md"
echo "- Includes: project-detection.yaml, team.yaml, quality-standards.json,"
echo " orchestration.yaml, memory-templates.yaml, prompts/ directory"
echo "- Removes: AGENTS.md, CLAUDE.md, GEMINI.md, .claude/ directory"
echo ""
echo "CODEX PACKAGE:"
echo "- Files Location: Root directory"
echo "- Main Guidelines: AGENTS.md"
echo "- Includes: project-detection.yaml, team.yaml, quality-standards.json,"
echo " orchestration.yaml, memory-templates.yaml, prompts/ directory"
echo "- Removes: CLAUDE.md, GEMINI.md, guidelines.md, .claude/ directory"
echo ""
echo "CLAUDE PACKAGE:"
echo "- Files Location: Root directory"
echo "- Main Guidelines: CLAUDE.md"
echo "- Includes: project-detection.yaml, team.yaml, quality-standards.json,"
echo " orchestration.yaml, memory-templates.yaml, prompts/ directory, .claude/ directory"
echo "- Removes: AGENTS.md, GEMINI.md, guidelines.md"
echo ""
echo "GEMINI PACKAGE:"
echo "- Files Location: Root directory"
echo "- Main Guidelines: GEMINI.md"
echo "- Includes: project-detection.yaml, team.yaml, quality-standards.json,"
echo " orchestration.yaml, memory-templates.yaml, prompts/ directory"
echo "- Removes: AGENTS.md, CLAUDE.md, guidelines.md, .claude/ directory"
echo ""
echo "================================================================"
echo ""
echo "Press Enter to continue..."
read
}
install_junie() {
echo ""
echo "Starting Junie environment setup..."
echo ""
if [ -f "install-junie.sh" ]; then
# Make script executable and run it
chmod +x install-junie.sh
./install-junie.sh
# install-junie.sh will delete all installation files including this script
# Script execution will end when this file is deleted
else
echo "ERROR: install-junie.sh not found!"
echo "Please ensure all installation files are present."
echo "Press Enter to continue..."
read
fi
}
install_codex() {
echo ""
echo "Starting Codex environment setup..."
echo ""
if [ -f "install-codex.sh" ]; then
# Make script executable and run it
chmod +x install-codex.sh
./install-codex.sh
# install-codex.sh will delete all installation files including this script
# Script execution will end when this file is deleted
else
echo "ERROR: install-codex.sh not found!"
echo "Please ensure all installation files are present."
echo "Press Enter to continue..."
read
fi
}
install_claude() {
echo ""
echo "Starting Claude environment setup..."
echo ""
if [ -f "install-claude.sh" ]; then
# Make script executable and run it
chmod +x install-claude.sh
./install-claude.sh
# install-claude.sh will delete all installation files including this script
# Script execution will end when this file is deleted
else
echo "ERROR: install-claude.sh not found!"
echo "Please ensure all installation files are present."
echo "Press Enter to continue..."
read
fi
}
install_gemini() {
echo ""
echo "Starting Gemini environment setup..."
echo ""
if [ -f "install-gemini.sh" ]; then
# Make script executable and run it
chmod +x install-gemini.sh
./install-gemini.sh
# install-gemini.sh will delete all installation files including this script
# Script execution will end when this file is deleted
else
echo "ERROR: install-gemini.sh not found!"
echo "Please ensure all installation files are present."
echo "Press Enter to continue..."
read
fi
}
# Main menu loop
while true; do
show_menu
case $choice in
1)
install_junie
break
;;
2)
install_codex
break
;;
3)
install_claude
break
;;
4)
install_gemini
break
;;
5)
show_details
;;
6)
echo ""
echo "Installation cancelled."
echo ""
break
;;
*)
echo "Invalid choice. Please try again."
echo ""
;;
esac
done
echo ""
echo "Thank you for using the Deep Research AI Agent Team Installer!"
echo ""