aidevops 3.34.22 → 3.34.24

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.22-blue.svg)](https://github.com/marcusquinn/aidevops/releases)
28
+ [![Version](https://img.shields.io/badge/Version-3.34.24-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
 
@@ -138,6 +138,13 @@ maintenance rules live in [DESIGN.md](DESIGN.md#readme-hero-counts).
138
138
  | **Creative production** | Design systems, UI, browser/mobile verification, images, 3D/CAD, audio, video, animation, documents, and report exports |
139
139
  | **Extensibility** | Custom agents, imported skills, private agent sources, MCPs, API helpers, OpenAPI exploration, and project bundles |
140
140
 
141
+ For YouTube transcripts, `python3 .agents/scripts/youtube-transcript.py VIDEO_ID`
142
+ tries captions, then local speech-to-text, and emits timestamped JSON. Hosted
143
+ TranscriptAPI access is opt-in (`--source api`). See the
144
+ [transcription guide](.agents/tools/voice/transcription.md) for setup, Mac
145
+ dictation alternatives, access boundaries, and optional [local anonymous
146
+ speaker diarization](.agents/tools/voice/nemotron-diarization.md).
147
+
141
148
  The [domain index](.agents/reference/domain-index.md) is the human-readable map
142
149
  from user intent to specialist guidance. The generated
143
150
  [capability registry](.agents/reference/capability-registry.md) separately records
@@ -230,9 +237,12 @@ bundles, prompt caching, and compaction checkpoints reduce unnecessary context
230
237
  without hiding required evidence. Model comparisons and sealed historical replay
231
238
  can inform routing, but cannot silently rewrite production policy.
232
239
 
233
- OpenCode users can opt GPT-6 Sol/Luna and their Fast variants into a ~240K
234
- usable-input budget with `aidevops gpt6-context enable`; `status` verifies the
235
- saved preference against a fresh process, and `disable` restores native metadata.
240
+ OpenCode defaults resolved models with larger windows to a ~240K usable-input
241
+ compaction budget, without expanding smaller native windows or overriding
242
+ explicit per-model context/input limits. GPT-6 Sol/Luna and their Fast variants
243
+ also advertise the budget in their model metadata. Run `aidevops gpt6-context
244
+ status` to check those four models in a fresh process, or `disable` to restore
245
+ their native limits. Restart OpenCode after changes.
236
246
 
237
247
  See [model routing](.agents/tools/context/model-routing.md),
238
248
  [context efficiency](.agents/reference/context-efficiency.md), and
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.34.22
1
+ 3.34.24
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.22
8
+ # Version: 3.34.24
9
9
 
10
10
  set -euo pipefail
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.34.22",
3
+ "version": "3.34.24",
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.22
20
+ # Version: 3.34.24
21
21
  #
22
22
  # Quick Install:
23
23
  # npm install -g aidevops && aidevops update (recommended)