aidevops 3.1.77 → 3.1.78

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 CHANGED
@@ -1 +1 @@
1
- 3.1.77
1
+ 3.1.78
package/aidevops.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # AI DevOps Framework CLI
4
4
  # Usage: aidevops <command> [options]
5
5
  #
6
- # Version: 3.1.77
6
+ # Version: 3.1.78
7
7
 
8
8
  set -euo pipefail
9
9
 
@@ -3607,6 +3607,7 @@ cmd_help() {
3607
3607
  echo " update-tools Check for outdated tools (--update to auto-update)"
3608
3608
  echo " repos [cmd] Manage registered projects (list/add/remove/clean)"
3609
3609
  echo " model-accounts-pool OAuth account pool (list/check/add/rotate/reset-cooldowns)"
3610
+ echo " opencode-sandbox Test OpenCode versions in isolation (install/run/check/clean)"
3610
3611
  echo " security <cmd> Security posture (check/audit/setup/status/summary)"
3611
3612
  echo " ip-check <cmd> IP reputation checks (check/batch/report/providers)"
3612
3613
  echo " secret <cmd> Manage secrets (set/list/run/init/import/status)"
@@ -3927,6 +3928,19 @@ main() {
3927
3928
  exit 1
3928
3929
  fi
3929
3930
  ;;
3931
+ opencode-sandbox | oc-sandbox)
3932
+ shift
3933
+ local sandbox_helper="$AGENTS_DIR/scripts/opencode-sandbox-helper.sh"
3934
+ if [[ ! -f "$sandbox_helper" ]]; then
3935
+ sandbox_helper="$INSTALL_DIR/.agents/scripts/opencode-sandbox-helper.sh"
3936
+ fi
3937
+ if [[ -f "$sandbox_helper" ]]; then
3938
+ bash "$sandbox_helper" "$@"
3939
+ else
3940
+ print_error "opencode-sandbox-helper.sh not found. Run: aidevops update"
3941
+ exit 1
3942
+ fi
3943
+ ;;
3930
3944
  secret | secrets)
3931
3945
  shift
3932
3946
  local secret_helper="$AGENTS_DIR/scripts/secret-helper.sh"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.1.77",
3
+ "version": "3.1.78",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "bin": {
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.1.77
13
+ # Version: 3.1.78
14
14
  #
15
15
  # Quick Install:
16
16
  # npm install -g aidevops && aidevops update (recommended)