-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin-manager.sh
More file actions
executable file
·469 lines (404 loc) · 14.9 KB
/
plugin-manager.sh
File metadata and controls
executable file
·469 lines (404 loc) · 14.9 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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
#!/usr/bin/env bash
# AI-Powered IDEs Plugin Manager
# Manage plugins/extensions for Kiro and Windsurf IDEs
set -e
# Colors for terminal output
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
BLUE='\033[0;34m'
CYAN='\033[0;36m'
MAGENTA='\033[0;35m'
WHITE='\033[1;37m'
BOLD='\033[1m'
DIM='\033[2m'
NC='\033[0m'
# Configuration directories
KIRO_CONFIG_DIR="$HOME/.config/kiro"
KIRO_EXTENSIONS_DIR="$HOME/.kiro/extensions"
WINDSURF_CONFIG_DIR="$HOME/.config/Windsurf"
WINDSURF_EXTENSIONS_DIR="$HOME/.windsurf/extensions"
# Plugin registry file
PLUGIN_REGISTRY="$HOME/.ai-ide-plugins.json"
print_banner() {
clear
echo -e "${CYAN}╔════════════════════════════════════════════════════════════════╗${NC}"
echo -e "${CYAN}║${NC} ${BOLD}${WHITE}🔌 NeuroForge Plugin Manager${NC} ${CYAN}║${NC}"
echo -e "${CYAN}╠════════════════════════════════════════════════════════════════╣${NC}"
echo -e "${CYAN}║${NC} ${DIM}Manage plugins and extensions for your AI IDEs${NC} ${CYAN}║${NC}"
echo -e "${CYAN}╚════════════════════════════════════════════════════════════════╝${NC}"
echo
}
print_main_menu() {
echo -e "${BOLD}${WHITE}🎯 Main Menu:${NC}"
echo
echo -e " ${CYAN}┌─────────────────────────────────────────────────────────┐${NC}"
echo -e " ${CYAN}│${NC} ${BOLD}1${NC}) ${GREEN}📦 Browse Available Plugins${NC} ${CYAN}│${NC}"
echo -e " ${CYAN}│${NC} ${BOLD}2${NC}) ${BLUE}⬇️ Install Plugin${NC} ${CYAN}│${NC}"
echo -e " ${CYAN}│${NC} ${BOLD}3${NC}) ${RED}🗑️ Uninstall Plugin${NC} ${CYAN}│${NC}"
echo -e " ${CYAN}│${NC} ${BOLD}4${NC}) ${YELLOW}📋 List Installed Plugins${NC} ${CYAN}│${NC}"
echo -e " ${CYAN}│${NC} ${BOLD}5${NC}) ${MAGENTA}🔄 Update All Plugins${NC} ${CYAN}│${NC}"
echo -e " ${CYAN}│${NC} ${BOLD}6${NC}) ${CYAN}🔍 Search Plugins${NC} ${CYAN}│${NC}"
echo -e " ${CYAN}│${NC} ${BOLD}0${NC}) ${RED}❌ Exit${NC} ${CYAN}│${NC}"
echo -e " ${CYAN}└─────────────────────────────────────────────────────────┘${NC}"
echo
}
# Initialize plugin registry
init_plugin_registry() {
if [ ! -f "$PLUGIN_REGISTRY" ]; then
cat > "$PLUGIN_REGISTRY" << 'EOF'
{
"kiro": {
"installed": [],
"available": [
{
"id": "github.copilot",
"name": "GitHub Copilot",
"description": "AI pair programmer",
"category": "AI",
"publisher": "GitHub"
},
{
"id": "esbenp.prettier-vscode",
"name": "Prettier",
"description": "Code formatter",
"category": "Formatting",
"publisher": "Prettier"
},
{
"id": "dbaeumer.vscode-eslint",
"name": "ESLint",
"description": "JavaScript linter",
"category": "Linting",
"publisher": "Microsoft"
},
{
"id": "ms-python.python",
"name": "Python",
"description": "Python language support",
"category": "Language",
"publisher": "Microsoft"
},
{
"id": "golang.go",
"name": "Go",
"description": "Go language support",
"category": "Language",
"publisher": "Go Team"
},
{
"id": "rust-lang.rust-analyzer",
"name": "Rust Analyzer",
"description": "Rust language support",
"category": "Language",
"publisher": "Rust"
},
{
"id": "bradlc.vscode-tailwindcss",
"name": "Tailwind CSS",
"description": "Tailwind CSS IntelliSense",
"category": "CSS",
"publisher": "Tailwind Labs"
},
{
"id": "eamodio.gitlens",
"name": "GitLens",
"description": "Git supercharged",
"category": "Git",
"publisher": "GitKraken"
}
]
},
"windsurf": {
"installed": [],
"available": [
{
"id": "github.copilot",
"name": "GitHub Copilot",
"description": "AI pair programmer",
"category": "AI",
"publisher": "GitHub"
},
{
"id": "esbenp.prettier-vscode",
"name": "Prettier",
"description": "Code formatter",
"category": "Formatting",
"publisher": "Prettier"
},
{
"id": "dbaeumer.vscode-eslint",
"name": "ESLint",
"description": "JavaScript linter",
"category": "Linting",
"publisher": "Microsoft"
},
{
"id": "ms-python.python",
"name": "Python",
"description": "Python language support",
"category": "Language",
"publisher": "Microsoft"
}
]
}
}
EOF
echo -e "${GREEN}✓ Plugin registry initialized${NC}"
fi
}
# Detect which IDE is installed
detect_installed_ides() {
local ides=()
if [ -d "$KIRO_CONFIG_DIR" ] || command -v kiro &> /dev/null; then
ides+=("kiro")
fi
if [ -d "$WINDSURF_CONFIG_DIR" ] || command -v windsurf &> /dev/null; then
ides+=("windsurf")
fi
echo "${ides[@]}"
}
# Select IDE
select_ide() {
local ides=($(detect_installed_ides))
if [ ${#ides[@]} -eq 0 ]; then
echo -e "${RED}❌ No IDEs detected. Please install Kiro or Windsurf first.${NC}"
exit 1
elif [ ${#ides[@]} -eq 1 ]; then
echo "${ides[0]}"
return 0
fi
echo -e "${YELLOW}🎯 Select IDE:${NC}"
echo
echo -e " ${CYAN}1)${NC} Kiro IDE"
echo -e " ${CYAN}2)${NC} Windsurf IDE"
echo
echo -ne "${BOLD}${WHITE}👉 Enter your choice [1-2]: ${NC}"
read -r choice
case $choice in
1) echo "kiro" ;;
2) echo "windsurf" ;;
*) echo "" ;;
esac
}
# Browse available plugins
browse_plugins() {
local ide="$1"
echo
echo -e "${CYAN}╔════════════════════════════════════════════════════════════════╗${NC}"
echo -e "${CYAN}║${NC} ${BOLD}📦 Available Plugins for ${ide^}${NC} ${CYAN}║${NC}"
echo -e "${CYAN}╚════════════════════════════════════════════════════════════════╝${NC}"
echo
local plugins=$(jq -r ".${ide}.available[] | \"\(.id)|\(.name)|\(.description)|\(.category)\"" "$PLUGIN_REGISTRY")
local index=1
while IFS='|' read -r id name desc category; do
echo -e "${BOLD}${index}.${NC} ${GREEN}${name}${NC}"
echo -e " ${DIM}ID: ${id}${NC}"
echo -e " ${DIM}📝 ${desc}${NC}"
echo -e " ${DIM}🏷️ Category: ${category}${NC}"
echo
((index++))
done <<< "$plugins"
}
# Install plugin
install_plugin() {
local ide="$1"
echo
echo -e "${YELLOW}📥 Installing plugin for ${ide^}...${NC}"
echo
echo -ne "${BOLD}Enter plugin ID: ${NC}"
read -r plugin_id
if [ -z "$plugin_id" ]; then
echo -e "${RED}❌ Plugin ID cannot be empty${NC}"
return 1
fi
# Check if plugin exists in registry
local plugin_exists=$(jq -r ".${ide}.available[] | select(.id==\"${plugin_id}\") | .id" "$PLUGIN_REGISTRY")
if [ -z "$plugin_exists" ]; then
echo -e "${RED}❌ Plugin not found in registry${NC}"
return 1
fi
# Simulate installation (in real scenario, this would use IDE's CLI)
echo -e "${YELLOW}⏳ Installing ${plugin_id}...${NC}"
sleep 2
# Add to installed list
local temp_file=$(mktemp)
jq ".${ide}.installed += [\"${plugin_id}\"]" "$PLUGIN_REGISTRY" > "$temp_file"
mv "$temp_file" "$PLUGIN_REGISTRY"
echo -e "${GREEN}✓ Plugin ${plugin_id} installed successfully!${NC}"
echo
echo -e "${BLUE}ℹ️ Note: You may need to restart ${ide^} for changes to take effect.${NC}"
}
# Uninstall plugin
uninstall_plugin() {
local ide="$1"
echo
echo -e "${YELLOW}🗑️ Uninstalling plugin from ${ide^}...${NC}"
echo
# List installed plugins
local installed=$(jq -r ".${ide}.installed[]" "$PLUGIN_REGISTRY" 2>/dev/null)
if [ -z "$installed" ]; then
echo -e "${YELLOW}No plugins installed for ${ide^}${NC}"
return 0
fi
echo -e "${BOLD}Installed plugins:${NC}"
echo "$installed" | nl
echo
echo -ne "${BOLD}Enter plugin ID to uninstall: ${NC}"
read -r plugin_id
if [ -z "$plugin_id" ]; then
echo -e "${RED}❌ Plugin ID cannot be empty${NC}"
return 1
fi
# Remove from installed list
local temp_file=$(mktemp)
jq ".${ide}.installed -= [\"${plugin_id}\"]" "$PLUGIN_REGISTRY" > "$temp_file"
mv "$temp_file" "$PLUGIN_REGISTRY"
echo -e "${GREEN}✓ Plugin ${plugin_id} uninstalled successfully!${NC}"
}
# List installed plugins
list_installed() {
local ide="$1"
echo
echo -e "${CYAN}╔════════════════════════════════════════════════════════════════╗${NC}"
echo -e "${CYAN}║${NC} ${BOLD}📋 Installed Plugins for ${ide^}${NC} ${CYAN}║${NC}"
echo -e "${CYAN}╚════════════════════════════════════════════════════════════════╝${NC}"
echo
local installed=$(jq -r ".${ide}.installed[]" "$PLUGIN_REGISTRY" 2>/dev/null)
if [ -z "$installed" ]; then
echo -e "${YELLOW}No plugins installed yet${NC}"
return 0
fi
local index=1
while read -r plugin_id; do
local plugin_info=$(jq -r ".${ide}.available[] | select(.id==\"${plugin_id}\") | \"\(.name)|\(.description)\"" "$PLUGIN_REGISTRY")
if [ -n "$plugin_info" ]; then
IFS='|' read -r name desc <<< "$plugin_info"
echo -e "${BOLD}${index}.${NC} ${GREEN}${name}${NC}"
echo -e " ${DIM}ID: ${plugin_id}${NC}"
echo -e " ${DIM}📝 ${desc}${NC}"
echo
else
echo -e "${BOLD}${index}.${NC} ${plugin_id}"
echo
fi
((index++))
done <<< "$installed"
}
# Update all plugins
update_all_plugins() {
local ide="$1"
echo
echo -e "${YELLOW}🔄 Updating all plugins for ${ide^}...${NC}"
echo
local installed=$(jq -r ".${ide}.installed[]" "$PLUGIN_REGISTRY" 2>/dev/null)
if [ -z "$installed" ]; then
echo -e "${YELLOW}No plugins to update${NC}"
return 0
fi
while read -r plugin_id; do
echo -e "${YELLOW}⏳ Updating ${plugin_id}...${NC}"
sleep 1
echo -e "${GREEN}✓ ${plugin_id} updated${NC}"
done <<< "$installed"
echo
echo -e "${GREEN}✓ All plugins updated successfully!${NC}"
}
# Search plugins
search_plugins() {
local ide="$1"
echo
echo -ne "${BOLD}🔍 Enter search term: ${NC}"
read -r search_term
if [ -z "$search_term" ]; then
echo -e "${RED}❌ Search term cannot be empty${NC}"
return 1
fi
echo
echo -e "${CYAN}╔════════════════════════════════════════════════════════════════╗${NC}"
echo -e "${CYAN}║${NC} ${BOLD}🔍 Search Results for \"${search_term}\"${NC} ${CYAN}║${NC}"
echo -e "${CYAN}╚════════════════════════════════════════════════════════════════╝${NC}"
echo
local results=$(jq -r ".${ide}.available[] | select(.name | ascii_downcase | contains(\"${search_term,,}\")) | \"\(.id)|\(.name)|\(.description)\"" "$PLUGIN_REGISTRY")
if [ -z "$results" ]; then
echo -e "${YELLOW}No plugins found matching \"${search_term}\"${NC}"
return 0
fi
local index=1
while IFS='|' read -r id name desc; do
echo -e "${BOLD}${index}.${NC} ${GREEN}${name}${NC}"
echo -e " ${DIM}ID: ${id}${NC}"
echo -e " ${DIM}📝 ${desc}${NC}"
echo
((index++))
done <<< "$results"
}
# Main menu loop
main_menu() {
local ide="$1"
while true; do
print_banner
echo -e "${BLUE}Current IDE: ${BOLD}${ide^}${NC}"
echo
print_main_menu
echo -ne "${BOLD}${WHITE}👉 Enter your choice [0-6]: ${NC}"
read -r choice
case $choice in
1)
browse_plugins "$ide"
echo
read -p "Press Enter to continue..."
;;
2)
install_plugin "$ide"
echo
read -p "Press Enter to continue..."
;;
3)
uninstall_plugin "$ide"
echo
read -p "Press Enter to continue..."
;;
4)
list_installed "$ide"
echo
read -p "Press Enter to continue..."
;;
5)
update_all_plugins "$ide"
echo
read -p "Press Enter to continue..."
;;
6)
search_plugins "$ide"
echo
read -p "Press Enter to continue..."
;;
0)
echo
echo -e "${GREEN}👋 Thank you for using Plugin Manager!${NC}"
echo
exit 0
;;
*)
echo -e "${RED}❌ Invalid choice. Please select 0-6.${NC}"
sleep 2
;;
esac
done
}
# Main execution
main() {
# Initialize plugin registry
init_plugin_registry
# Select IDE
local ide=$(select_ide)
if [ -z "$ide" ]; then
echo -e "${RED}❌ Invalid IDE selection${NC}"
exit 1
fi
# Start main menu
main_menu "$ide"
}
# Run main function
main "$@"