aidevops 3.0.9 → 3.0.10
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/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup-modules/tool-install.sh +54 -0
- package/setup.sh +2 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.10
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
|
@@ -1273,6 +1273,60 @@ setup_opencode_cli() {
|
|
|
1273
1273
|
return 0
|
|
1274
1274
|
}
|
|
1275
1275
|
|
|
1276
|
+
setup_google_workspace_cli() {
|
|
1277
|
+
print_info "Setting up Google Workspace CLI (gws)..."
|
|
1278
|
+
|
|
1279
|
+
# Check if gws is already installed
|
|
1280
|
+
if command -v gws >/dev/null 2>&1; then
|
|
1281
|
+
local gws_version
|
|
1282
|
+
gws_version=$(gws --version 2>/dev/null | head -1 || echo "unknown")
|
|
1283
|
+
print_success "Google Workspace CLI already installed: $gws_version"
|
|
1284
|
+
return 0
|
|
1285
|
+
fi
|
|
1286
|
+
|
|
1287
|
+
# Need either bun or npm to install
|
|
1288
|
+
local installer=""
|
|
1289
|
+
local install_pkg="@googleworkspace/cli@latest"
|
|
1290
|
+
|
|
1291
|
+
if command -v bun >/dev/null 2>&1; then
|
|
1292
|
+
installer="bun"
|
|
1293
|
+
elif command -v npm >/dev/null 2>&1; then
|
|
1294
|
+
installer="npm"
|
|
1295
|
+
else
|
|
1296
|
+
print_warning "Neither bun nor npm found - cannot install gws"
|
|
1297
|
+
print_info "Install Node.js first, then re-run setup"
|
|
1298
|
+
return 0
|
|
1299
|
+
fi
|
|
1300
|
+
|
|
1301
|
+
print_info "Google Workspace CLI provides Gmail, Calendar, Drive, and all Workspace APIs"
|
|
1302
|
+
echo " Used by Email, Business, and Accounts agents for Google Workspace integration."
|
|
1303
|
+
echo ""
|
|
1304
|
+
|
|
1305
|
+
local install_gws="Y"
|
|
1306
|
+
if [[ "$NON_INTERACTIVE" != "true" ]]; then
|
|
1307
|
+
read -r -p "Install Google Workspace CLI via $installer? [Y/n]: " install_gws || install_gws="Y"
|
|
1308
|
+
fi
|
|
1309
|
+
if [[ "$install_gws" =~ ^[Yy]?$ ]]; then
|
|
1310
|
+
if run_with_spinner "Installing Google Workspace CLI" npm_global_install "$install_pkg"; then
|
|
1311
|
+
print_success "Google Workspace CLI installed"
|
|
1312
|
+
|
|
1313
|
+
echo ""
|
|
1314
|
+
print_info "Authentication required before use."
|
|
1315
|
+
print_info "Run 'gws auth setup' to authenticate with your Google account."
|
|
1316
|
+
print_info "For headless use: set GOOGLE_WORKSPACE_CLI_CREDENTIALS_FILE"
|
|
1317
|
+
echo ""
|
|
1318
|
+
else
|
|
1319
|
+
print_warning "Google Workspace CLI installation failed"
|
|
1320
|
+
print_info "Try manually: sudo npm install -g $install_pkg"
|
|
1321
|
+
fi
|
|
1322
|
+
else
|
|
1323
|
+
print_info "Skipped Google Workspace CLI installation"
|
|
1324
|
+
print_info "Install later: $installer install -g $install_pkg"
|
|
1325
|
+
fi
|
|
1326
|
+
|
|
1327
|
+
return 0
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1276
1330
|
setup_orbstack_vm() {
|
|
1277
1331
|
# Only available on macOS
|
|
1278
1332
|
if [[ "$(uname)" != "Darwin" ]]; then
|
package/setup.sh
CHANGED
|
@@ -10,7 +10,7 @@ shopt -s inherit_errexit 2>/dev/null || true
|
|
|
10
10
|
# AI Assistant Server Access Framework Setup Script
|
|
11
11
|
# Helps developers set up the framework for their infrastructure
|
|
12
12
|
#
|
|
13
|
-
# Version: 3.0.
|
|
13
|
+
# Version: 3.0.10
|
|
14
14
|
#
|
|
15
15
|
# Quick Install:
|
|
16
16
|
# npm install -g aidevops && aidevops update (recommended)
|
|
@@ -822,6 +822,7 @@ main() {
|
|
|
822
822
|
confirm_step "Setup QuickFile MCP (UK accounting)" && setup_quickfile_mcp
|
|
823
823
|
confirm_step "Setup browser automation tools" && setup_browser_tools
|
|
824
824
|
confirm_step "Setup AI orchestration frameworks info" && setup_ai_orchestration
|
|
825
|
+
confirm_step "Setup Google Workspace CLI (Gmail, Calendar, Drive)" && setup_google_workspace_cli
|
|
825
826
|
confirm_step "Setup OpenCode CLI (AI coding tool)" && setup_opencode_cli
|
|
826
827
|
confirm_step "Setup OpenCode plugins" && setup_opencode_plugins
|
|
827
828
|
# Run AFTER OpenCode CLI install so opencode.json may exist for agent config
|