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 +14 -4
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ token efficiency, and quality control built in.**
|
|
|
25
25
|
[](https://qlty.sh/gh/marcusquinn/projects/aidevops)
|
|
26
26
|
[](https://app.codacy.com/gh/marcusquinn/aidevops/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
|
|
27
27
|
[](https://opensource.org/licenses/MIT)
|
|
28
|
-
[](https://github.com/marcusquinn/aidevops/releases)
|
|
29
29
|
[](https://www.npmjs.com/package/aidevops)
|
|
30
30
|
[](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
|
|
234
|
-
|
|
235
|
-
|
|
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.
|
|
1
|
+
3.34.24
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
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.
|
|
20
|
+
# Version: 3.34.24
|
|
21
21
|
#
|
|
22
22
|
# Quick Install:
|
|
23
23
|
# npm install -g aidevops && aidevops update (recommended)
|