@besales/ops-framework 0.1.25 → 0.1.26
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.26
|
|
4
|
+
|
|
5
|
+
- Raised `standard_plus` context cap to 36k so compact Verify packs around 29-31k estimated tokens stay out of strict mode after safety margin.
|
|
6
|
+
|
|
3
7
|
## 0.1.25
|
|
4
8
|
|
|
5
9
|
- Stabilized Verify LLM `task-manifest.json` input by stripping volatile Check telemetry, timestamps and verbose loop history from verifier packs.
|
|
@@ -112,7 +112,7 @@ describe('llm input pack utilities', () => {
|
|
|
112
112
|
});
|
|
113
113
|
|
|
114
114
|
expect(pack.meta.mode).toBe('standard_plus');
|
|
115
|
-
expect(pack.meta.capTokens).toBe(
|
|
115
|
+
expect(pack.meta.capTokens).toBe(36000);
|
|
116
116
|
expect(pack.input.llmInputPolicy.contextInsufficientFallback).toBe('rerun_strict');
|
|
117
117
|
expect(pack.input.taskArtifacts['plan.md']).toContain('<!-- compacted:plan.md');
|
|
118
118
|
expect(pack.meta.compactedArtifacts).toContain('plan.md');
|