@kokorolx/ai-sandbox-wrapper 3.1.1 → 3.1.2
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 +1 -1
- package/setup.sh +30 -38
package/package.json
CHANGED
package/setup.sh
CHANGED
|
@@ -311,45 +311,37 @@ done
|
|
|
311
311
|
|
|
312
312
|
echo ""
|
|
313
313
|
if [[ ${#CONTAINERIZED_TOOLS[@]} -gt 0 ]]; then
|
|
314
|
-
#
|
|
315
|
-
|
|
316
|
-
|
|
314
|
+
# DISABLED: All additional tool menus commented out — only core tools (opencode, claude, codex) active
|
|
315
|
+
# To re-enable, uncomment the sections below.
|
|
316
|
+
|
|
317
|
+
# # Category 1: AI Enhancement Tools (spec-driven development, UI/UX, browser automation)
|
|
318
|
+
# AI_TOOL_OPTIONS="spec-kit,ux-ui-promax,openspec,playwright,rtk"
|
|
319
|
+
# AI_TOOL_DESCS="Spec-driven development toolkit,UI/UX design intelligence tool,OpenSpec - spec-driven development,Browser automation + Chromium/Firefox/WebKit (~500MB),RTK token optimizer - reduces LLM token usage by 60-90% (~5MB)"
|
|
320
|
+
# multi_select "Select AI Enhancement Tools (installed in containers)" "$AI_TOOL_OPTIONS" "$AI_TOOL_DESCS"
|
|
321
|
+
# AI_ENHANCEMENT_TOOLS=("${SELECTED_ITEMS[@]}")
|
|
322
|
+
# if [[ ${#AI_ENHANCEMENT_TOOLS[@]} -gt 0 ]]; then
|
|
323
|
+
# echo "AI tools selected: ${AI_ENHANCEMENT_TOOLS[*]}"
|
|
324
|
+
# fi
|
|
325
|
+
|
|
326
|
+
# # Category 2: Language Runtimes (Ruby, etc.)
|
|
327
|
+
# LANG_OPTIONS="ruby"
|
|
328
|
+
# LANG_DESCS="Ruby 3.3.0 + Rails 8.0.2 via rbenv (~500MB)"
|
|
329
|
+
# multi_select "Select Additional Language Runtimes (installed in containers)" "$LANG_OPTIONS" "$LANG_DESCS"
|
|
330
|
+
# LANGUAGE_RUNTIMES=("${SELECTED_ITEMS[@]}")
|
|
331
|
+
# if [[ ${#LANGUAGE_RUNTIMES[@]} -gt 0 ]]; then
|
|
332
|
+
# echo "Language runtimes selected: ${LANGUAGE_RUNTIMES[*]}"
|
|
333
|
+
# fi
|
|
334
|
+
|
|
335
|
+
# # Category 3: MCP Tools (Browser automation for AI agents)
|
|
336
|
+
# MCP_OPTIONS="chrome-devtools-mcp,playwright-mcp"
|
|
337
|
+
# MCP_DESCS="Google Chrome DevTools MCP - performance profiling + debugging (~400MB),Microsoft Playwright MCP - multi-browser automation (~300MB)"
|
|
338
|
+
# multi_select "Select MCP Tools for AI Agent Browser Automation" "$MCP_OPTIONS" "$MCP_DESCS"
|
|
339
|
+
# MCP_TOOLS=("${SELECTED_ITEMS[@]}")
|
|
340
|
+
# if [[ ${#MCP_TOOLS[@]} -gt 0 ]]; then
|
|
341
|
+
# echo "MCP tools selected: ${MCP_TOOLS[*]}"
|
|
342
|
+
# fi
|
|
317
343
|
|
|
318
|
-
|
|
319
|
-
AI_ENHANCEMENT_TOOLS=("${SELECTED_ITEMS[@]}")
|
|
320
|
-
|
|
321
|
-
if [[ ${#AI_ENHANCEMENT_TOOLS[@]} -gt 0 ]]; then
|
|
322
|
-
echo "AI tools selected: ${AI_ENHANCEMENT_TOOLS[*]}"
|
|
323
|
-
fi
|
|
324
|
-
|
|
325
|
-
echo ""
|
|
326
|
-
|
|
327
|
-
# Category 2: Language Runtimes (Ruby, etc.)
|
|
328
|
-
LANG_OPTIONS="ruby"
|
|
329
|
-
LANG_DESCS="Ruby 3.3.0 + Rails 8.0.2 via rbenv (~500MB)"
|
|
330
|
-
|
|
331
|
-
multi_select "Select Additional Language Runtimes (installed in containers)" "$LANG_OPTIONS" "$LANG_DESCS"
|
|
332
|
-
LANGUAGE_RUNTIMES=("${SELECTED_ITEMS[@]}")
|
|
333
|
-
|
|
334
|
-
if [[ ${#LANGUAGE_RUNTIMES[@]} -gt 0 ]]; then
|
|
335
|
-
echo "Language runtimes selected: ${LANGUAGE_RUNTIMES[*]}"
|
|
336
|
-
fi
|
|
337
|
-
|
|
338
|
-
echo ""
|
|
339
|
-
|
|
340
|
-
# Category 3: MCP Tools (Browser automation for AI agents)
|
|
341
|
-
MCP_OPTIONS="chrome-devtools-mcp,playwright-mcp"
|
|
342
|
-
MCP_DESCS="Google Chrome DevTools MCP - performance profiling + debugging (~400MB),Microsoft Playwright MCP - multi-browser automation (~300MB)"
|
|
343
|
-
|
|
344
|
-
multi_select "Select MCP Tools for AI Agent Browser Automation" "$MCP_OPTIONS" "$MCP_DESCS"
|
|
345
|
-
MCP_TOOLS=("${SELECTED_ITEMS[@]}")
|
|
346
|
-
|
|
347
|
-
if [[ ${#MCP_TOOLS[@]} -gt 0 ]]; then
|
|
348
|
-
echo "MCP tools selected: ${MCP_TOOLS[*]}"
|
|
349
|
-
fi
|
|
350
|
-
|
|
351
|
-
# Combine all categories for processing
|
|
352
|
-
ADDITIONAL_TOOLS=("${AI_ENHANCEMENT_TOOLS[@]}" "${LANGUAGE_RUNTIMES[@]}" "${MCP_TOOLS[@]}")
|
|
344
|
+
ADDITIONAL_TOOLS=()
|
|
353
345
|
else
|
|
354
346
|
ADDITIONAL_TOOLS=()
|
|
355
347
|
echo "ℹ️ No containerized AI tools selected. Skipping additional tools."
|