aidevops 3.20.16 → 3.20.18

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.20.16
1
+ 3.20.18
package/aidevops.sh CHANGED
@@ -5,7 +5,7 @@
5
5
  # AI DevOps Framework CLI
6
6
  # Usage: aidevops <command> [options]
7
7
  #
8
- # Version: 3.20.16
8
+ # Version: 3.20.18
9
9
 
10
10
  set -euo pipefail
11
11
 
@@ -840,6 +840,7 @@ _help_commands() {
840
840
  echo " model-accounts-pool OAuth account pool (list/check/diagnose/add/rotate/reset-cooldowns)"
841
841
  echo " client-format Client request format alignment (extract/check/canary/monitor)"
842
842
  echo " opencode-db <cmd> OpenCode SQLite maintenance/session lookup (check/report/sessions/maintain/window/status/install)"
843
+ echo " opencode [args] Launch OpenCode with aidevops per-session DB isolation"
843
844
  echo " opencode-sandbox Test OpenCode versions in isolation (install/run/check/clean)"
844
845
  echo " approve <cmd> Cryptographic issue/PR approval (setup/issue/pr/verify/status)"
845
846
  echo " circuit-breaker Supervisor circuit breaker (status/reset/check/trip) (alias: cb)"
@@ -1610,6 +1611,7 @@ main() {
1610
1611
  client-format) _cmd_client_format "$@" ;;
1611
1612
  github-app-auth | github-app | gh-auth) _dispatch_helper "github-app-auth-helper.sh" "github-app-auth-helper.sh" "$@" ;;
1612
1613
  opencode-db | oc-db) _dispatch_helper "opencode-db-maintenance-helper.sh" "opencode-db-maintenance-helper.sh" "$@" ;;
1614
+ opencode | oc) _dispatch_helper "opencode-launcher-helper.sh" "opencode-launcher-helper.sh" "$@" ;;
1613
1615
  opencode-sandbox | oc-sandbox) _dispatch_helper "opencode-sandbox-helper.sh" "opencode-sandbox-helper.sh" "$@" ;;
1614
1616
  review-gate | review_gate) _dispatch_helper "review-gate-config-helper.sh" "review-gate-config-helper.sh" "$@" ;;
1615
1617
  secret | secrets) _dispatch_helper "secret-helper.sh" "secret-helper.sh" "$@" ;;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.20.16",
3
+ "version": "3.20.18",
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
@@ -12,7 +12,7 @@ shopt -s inherit_errexit 2>/dev/null || true
12
12
  # AI Assistant Server Access Framework Setup Script
13
13
  # Helps developers set up the framework for their infrastructure
14
14
  #
15
- # Version: 3.20.16
15
+ # Version: 3.20.18
16
16
  #
17
17
  # Quick Install:
18
18
  # npm install -g aidevops && aidevops update (recommended)