aidevops 3.34.18 → 3.34.19

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/README.md CHANGED
@@ -25,7 +25,7 @@ token efficiency, and quality control built in.**
25
25
  [![Maintainability](https://qlty.sh/gh/marcusquinn/projects/aidevops/maintainability.svg)](https://qlty.sh/gh/marcusquinn/projects/aidevops)
26
26
  [![Codacy Badge](https://app.codacy.com/project/badge/Grade/2b1adbd66c454dae92234341e801b984)](https://app.codacy.com/gh/marcusquinn/aidevops/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
27
27
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
28
- [![Version](https://img.shields.io/badge/Version-3.34.18-blue.svg)](https://github.com/marcusquinn/aidevops/releases)
28
+ [![Version](https://img.shields.io/badge/Version-3.34.19-blue.svg)](https://github.com/marcusquinn/aidevops/releases)
29
29
  [![npm version](https://img.shields.io/npm/v/aidevops)](https://www.npmjs.com/package/aidevops)
30
30
  [![Homebrew](https://img.shields.io/badge/homebrew-marcusquinn%2Ftap-orange)](https://github.com/marcusquinn/homebrew-tap)
31
31
 
@@ -216,6 +216,10 @@ bundles, prompt caching, and compaction checkpoints reduce unnecessary context
216
216
  without hiding required evidence. Model comparisons and sealed historical replay
217
217
  can inform routing, but cannot silently rewrite production policy.
218
218
 
219
+ OpenCode users can opt GPT-6 Sol/Luna and their Fast variants into a ~240K
220
+ usable-input budget with `aidevops gpt6-context enable`; `status` verifies the
221
+ saved preference against a fresh process, and `disable` restores native metadata.
222
+
219
223
  See [model routing](.agents/tools/context/model-routing.md),
220
224
  [context efficiency](.agents/reference/context-efficiency.md), and
221
225
  [model-effort evaluation](.agents/reference/model-effort-evaluation.md).
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.34.18
1
+ 3.34.19
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.34.18
8
+ # Version: 3.34.19
9
9
 
10
10
  set -euo pipefail
11
11
 
@@ -1146,6 +1146,7 @@ _help_commands() {
1146
1146
  echo " cleanup <cmd> Cleanup helpers (remote branch audit/delete)"
1147
1147
  echo " model-accounts-pool OAuth account pool (list/check/diagnose/add/rotate/reset-cooldowns)"
1148
1148
  echo " gpt56-context <cmd> Manage the 300K GPT-5.6 OpenCode context cap (enable/disable/status)"
1149
+ echo " gpt6-context <cmd> Opt into ~240K GPT-6 Sol/Luna compaction (enable/disable/status)"
1149
1150
  echo " astra-context <cmd> Opt into ~240K Astra compaction (enable/disable/status; default 400K)"
1150
1151
  echo " client-format Client request format alignment (extract/check/canary/monitor)"
1151
1152
  echo " opencode-db <cmd> OpenCode SQLite maintenance/session lookup (check/report/sessions/maintain/window/status/install)"
@@ -1411,6 +1412,7 @@ cmd_help() {
1411
1412
  echo " aidevops update # Update framework + check projects"
1412
1413
  echo " aidevops runtime-bundle list # List retained validated runtime bundle IDs"
1413
1414
  echo " aidevops gpt56-context # Manage the 300K GPT-5.6 OpenCode context cap"
1415
+ echo " aidevops gpt6-context enable # Cap GPT-6 Sol/Luna usable input near 240K"
1414
1416
  echo " aidevops repos # List registered projects"
1415
1417
  echo " aidevops launch-worker 22259 marcusquinn/aidevops --dry-run"
1416
1418
  echo " aidevops repos add # Register current project"
@@ -1930,6 +1932,7 @@ _main_dispatch() {
1930
1932
  ip-check | ip_check) _dispatch_helper "ip-reputation-helper.sh" "ip-reputation-helper.sh" "$@" ;;
1931
1933
  model-accounts-pool | map) _dispatch_helper "oauth-pool-helper.sh" "oauth-pool-helper.sh" "$@" ;;
1932
1934
  gpt56-context | gpt56_context) _dispatch_helper "gpt56-context-helper.sh" "gpt56-context-helper.sh" "$@" ;;
1935
+ gpt6-context | gpt6_context) _dispatch_helper "gpt6-context-helper.sh" "gpt6-context-helper.sh" "$@" ;;
1933
1936
  astra-context | astra_context) _dispatch_helper "astra-context-helper.sh" "astra-context-helper.sh" "$@" ;;
1934
1937
  cleanup) _main_dispatch_cleanup "$@" ;;
1935
1938
  client-format) _cmd_client_format "$@" ;;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.34.18",
3
+ "version": "3.34.19",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "packageManager": "bun@1.3.11",
package/setup.sh CHANGED
@@ -17,7 +17,7 @@ fi
17
17
  # AI Assistant Server Access Framework Setup Script
18
18
  # Helps developers set up the framework for their infrastructure
19
19
  #
20
- # Version: 3.34.18
20
+ # Version: 3.34.19
21
21
  #
22
22
  # Quick Install:
23
23
  # npm install -g aidevops && aidevops update (recommended)