@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.
@@ -12,7 +12,7 @@ export const LLM_CONTEXT_MODES = ['fast', 'standard', 'standard_plus', 'strict']
12
12
  export const LLM_CONTEXT_CAPS = {
13
13
  fast: 8000,
14
14
  standard: 20000,
15
- standard_plus: 34000,
15
+ standard_plus: 36000,
16
16
  strict: 50000,
17
17
  };
18
18
 
@@ -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(34000);
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');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@besales/ops-framework",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "ops-agent": "bin/ops-agent.mjs"